Commit 2024-01-09 02:13 7649e802
View on Github →feat: local existence of integral curves of vector field (#8483)
Port of [mathlib#17140](https://github.com/leanprover-community/mathlib/pull/17140) plus much more. Comments therein addressed.
For any continuously differentiable vector field (section of tangent bundle) on a manifold M
and any chosen interior point x₀ : M
, there exists an integral curve γ : ℝ → M
such that γ t₀ = x₀
for any real number t₀
and the tangent vector of γ
at t
coincides with the vector field at γ t
for all t
within an open interval around t₀
.
As a corollary, such an integral curve exists for any starting point x₀
if M
is a manifold without boundary.
We define three Prop
s:
IsIntegralCurveOn γ v s
meansγ t
is tangent tov (γ t)
for allt
withins : Set ℝ
.IsIntegralCurveAt γ v t₀
meansγ
is a local integral curve tov
. That is,γ t
is tangent tov (γ t)
for allt
within some open interval oft₀
.IsIntegralCurve γ v
meansγ
is a global integral curve tov
. That is,γ t
is tangent tov (γ t)
for allt : ℝ
. Lemmas about rescaling and translation of integral curves are proven:
- If
γ
solvesv
att₀
, thenγ (t + dt)
is tangent tov
att₀ - dt
. - If
γ
solvesv
att₀
, thenγ (a * t)
is tangent toa • v
att₀ / a
for any non-zeroa
. - The constant function at
x₀
solves anyv
withv x₀ = 0
. We also shuffle the position of∃ ε > (0 : ℝ)
inPicardLindelof
to one that makes more sense, sincef t₀ = x₀
does not depend onε
yet.