Integral curves of vector fields on a manifold #
Let M
be a manifold and v : (x : M) → TangentSpace I x
be a vector field on M
. An integral
curve of v
is a function γ : ℝ → M
such that the derivative of γ
at t
equals v (γ t)
. The
integral curve may only be defined for all t
within some subset of ℝ
.
Main definitions #
Let v : M → TM
be a vector field on M
, and let γ : ℝ → M
.
IsIntegralCurve γ v
:γ t
is tangent tov (γ t)
for allt : ℝ
. That is,γ
is a global integral curve ofv
.IsIntegralCurveOn γ v s
:γ t
is tangent tov (γ t)
for allt ∈ s
, wheres : Set ℝ
.IsIntegralCurveAt γ v t₀
:γ t
is tangent tov (γ t)
for allt
in some open interval aroundt₀
. That is,γ
is a local integral curve ofv
.
For IsIntegralCurveOn γ v s
and IsIntegralCurveAt γ v t₀
, even though γ
is defined for all
time, its value outside of the set s
or a small interval around t₀
is irrelevant and considered
junk.
Main results #
exists_isIntegralCurveAt_of_contMDiffAt_boundaryless
: Existence of local integral curves for a $C^1$ vector field. This follows from the existence theorem for solutions to ODEs (exists_forall_hasDerivAt_Ioo_eq_of_contDiffAt
).isIntegralCurveOn_Ioo_eqOn_of_contMDiff_boundaryless
: Uniqueness of local integral curves for a $C^1$ vector field. This follows from the uniqueness theorem for solutions to ODEs (ODE_solution_unique_of_mem_set_Ioo
). This requires the manifold to be Hausdorff (T2Space
).
Implementation notes #
For the existence and uniqueness theorems, we assume that the image of the integral curve lies in the interior of the manifold. The case where the integral curve may lie on the boundary of the manifold requires special treatment, and we leave it as a TODO.
We state simpler versions of the theorem for boundaryless manifolds as corollaries.
TODO #
- The case where the integral curve may venture to the boundary of the manifold. See Theorem 9.34, Lee. May require submanifolds.
Reference #
- Lee, J. M. (2012). Introduction to Smooth Manifolds. Springer New York.
Tags #
integral curve, vector field, local existence, uniqueness
If γ : ℝ → M
is $C^1$ on s : Set ℝ
and v
is a vector field on M
,
IsIntegralCurveOn γ v s
means γ t
is tangent to v (γ t)
for all t ∈ s
. The value of γ
outside of s
is irrelevant and considered junk.
Equations
- IsIntegralCurveOn γ v s = ∀ t ∈ s, HasMFDerivAt (modelWithCornersSelf ℝ ℝ) I γ t (ContinuousLinearMap.smulRight 1 (v (γ t)))
Instances For
If v
is a vector field on M
and t₀ : ℝ
, IsIntegralCurveAt γ v t₀
means γ : ℝ → M
is a
local integral curve of v
in a neighbourhood containing t₀
. The value of γ
outside of this
interval is irrelevant and considered junk.
Equations
- IsIntegralCurveAt γ v t₀ = ∀ᶠ (t : ℝ) in nhds t₀, HasMFDerivAt (modelWithCornersSelf ℝ ℝ) I γ t (ContinuousLinearMap.smulRight 1 (v (γ t)))
Instances For
If v : M → TM
is a vector field on M
, IsIntegralCurve γ v
means γ : ℝ → M
is a global
integral curve of v
. That is, γ t
is tangent to v (γ t)
for all t : ℝ
.
Equations
- IsIntegralCurve γ v = ∀ (t : ℝ), HasMFDerivAt (modelWithCornersSelf ℝ ℝ) I γ t (ContinuousLinearMap.smulRight 1 (v (γ t)))
Instances For
γ
is an integral curve for v
at t₀
iff γ
is an integral curve on some interval
containing t₀
.
If γ
is an integral curve at each t ∈ s
, it is an integral curve on s
.
If γ
is an integral curve of a vector field v
, then γ t
is tangent to v (γ t)
when
expressed in the local chart around the initial point γ t₀
.
Translation lemmas #
Scaling lemmas #
If the vector field v
vanishes at x₀
, then the constant curve at x₀
is a global integral curve of v
.
Existence and uniqueness #
Existence of local integral curves for a $C^1$ vector field at interior points of a smooth manifold.
Existence of local integral curves for a $C^1$ vector field on a smooth manifold without boundary.
Local integral curves are unique.
If a $C^1$ vector field v
admits two local integral curves γ γ' : ℝ → M
at t₀
with
γ t₀ = γ' t₀
, then γ
and γ'
agree on some open interval containing t₀
.
Integral curves are unique on open intervals.
If a $C^1$ vector field v
admits two integral curves γ γ' : ℝ → M
on some open interval
Ioo a b
, and γ t₀ = γ' t₀
for some t ∈ Ioo a b
, then γ
and γ'
agree on Ioo a b
.
Global integral curves are unique.
If a continuously differentiable vector field v
admits two global integral curves
γ γ' : ℝ → M
, and γ t₀ = γ' t₀
for some t₀
, then γ
and γ'
are equal.
For a global integral curve γ
, if it crosses itself at a b : ℝ
, then it is periodic with
period a - b
.
A global integral curve is injective xor periodic with positive period.