Stable and unstable sets of a flow #
For a real flow φ, the stable set of x consists of the points whose trajectories converge to
x as time tends to +∞; the unstable set uses time tending to -∞. These are the underlying
sets which the stable-manifold theorem identifies locally as smooth manifolds near a hyperbolic
fixed point.
Both sets are invariant under the entire flow. Moreover, either set can be nonempty only when its limiting point is fixed by the flow. Time reversal exchanges the two constructions.
Main declarations #
Flow.stableSet: points converging to a given point in forward time.Flow.unstableSet: points converging to a given point in backward time.Flow.isInvariant_stableSetandFlow.isInvariant_unstableSet: invariance under time translation.Flow.fixed_of_mem_stableSetandFlow.fixed_of_mem_unstableSet: a limiting point of a trajectory is fixed.Flow.stableSet_reverseandFlow.unstableSet_reverse: time reversal exchanges stable and unstable sets.
The stable set of x under a real flow φ: the points whose trajectories converge to
x as time tends to +∞.
Equations
Instances For
The unstable set of x under a real flow φ: the points whose trajectories converge to
x as time tends to -∞.
Equations
- φ.unstableSet x = {y : α | Filter.Tendsto (fun (t : ℝ) => φ.toFun t y) Filter.atBot (nhds x)}
Instances For
Membership in a stable set means convergence of the trajectory in forward time.
Membership in an unstable set means convergence of the trajectory in backward time.
The stable set of a point is invariant under every time map of the flow.
The unstable set of a point is invariant under every time map of the flow.
If some trajectory converges to x in backward time, then x is fixed by every time map of
the flow.
A point belongs to its unstable set exactly when it is fixed by the flow.
Time reversal is an involution.
Time reversal exchanges stable and unstable sets.
Time reversal exchanges unstable and stable sets.
Under the identity flow, the unstable set of x is the singleton {x}.