An equilibrium is stable when a small disturbance produces a restoring tendency. In an energy picture, stable equilibria sit near local minima; unstable ones sit near maxima or saddle-like directions.
Think like a programmer
Do not call a state “stable” because one simulation run looked calm. Perturb it by a known amount, measure the response, and record the sign of the restoring force or the local curvature of energy.
Model checklist
Inputs
Equilibrium candidate, small perturbation, force or energy function.
State
Perturbed displacement and its response.
Rule
Evaluate local slope or curvature around equilibrium.
Output
Stable, unstable, or inconclusive classification.
Check
A stable one-dimensional equilibrium has restoring force opposite displacement.
Prediction: A small push away from a potential minimum produces a restoring force.
Classify the bottom and top of a hill using the sign of local energy curvature. State the perturbation you would feed to a test harness.
Where this model breaks
Linear stability is local. A stable point can still have a finite region of attraction, nonlinear transitions, or time-varying behavior outside the small-perturbation regime.
Summary
Classify equilibrium through response to perturbations and local energy curvature. Make the perturbation a repeatable test case.
Glossary
Equilibrium: state with no net force.
Stable: small perturbations tend to return toward the state.
Curvature: second-derivative measure of local shape.
Self-check
What force direction signals local stability?
What energy curvature marks a minimum?
Why test a perturbation explicitly?
Sources
J. R. Taylor, Classical Mechanics, stability and small oscillations.
Model contract
Treat the lesson as a small function before treating it as a fact to memorize. Give every value a unit, keep only the state needed for the next step, and make the output easy to inspect.
Quantities you set or measure, with units and useful bounds.
State
Values the program must retain to reproduce the next result.
Rule
The relationship or update that turns inputs and state into a result.
Check
A known limit, unit check, invariant, or measured result that can expose a bad model.
Implement the idea as a model
For Stability Analysis, write down the quantities you can control, the values your program must retain, and the result a reader could inspect. In Equilibrium and Elasticity, the useful program is not the drawing: it is the smallest explicit model that makes a prediction you can test.
Guided experiment
Prediction: changing one declared input while holding the others fixed should change only the outputs that the model connects to that input. Choose one input, predict the direction of change, then check a limiting case such as zero, a symmetric arrangement, or a familiar low-speed or small-change approximation.
Where this model breaks
This lesson is a teaching model, not a complete simulator. Before using it outside the stated question, check which interactions, scales, uncertainties, boundary conditions, and measurement limits it leaves out.
Summary
Treat Stability Analysis as a contract: named inputs and units enter a rule, the rule produces an observable result, and a known limit or invariant checks whether the implementation deserves trust.
Glossary
Input: a measured value or chosen parameter supplied to a model.
State: the smallest set of values needed to continue or reproduce a model.
Validation: comparing an output with a known result, limit, invariant, or measurement.
Self-check
Which values are inputs, and which values must remain state?
What observable result would tell you the model is behaving as expected?
Which assumption would you test first before applying the model to a real system?
Model review: turn Stability Analysis into a test
Classify equilibria from restoring response and local curvature of an energy model.
Name the inputs and units that the equilibrium and elasticity model needs.
Separate the state you must keep from values you can calculate when needed.
Write one rule that maps the current state and inputs to an observable result.
Choose a limiting case, unit check, invariant, or known result before trusting an output.
State one assumption you would change before using this simplified model for a real decision.