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 Props:
IsIntegralCurveOn γ v smeansγ tis tangent tov (γ t)for alltwithins : Set ℝ.IsIntegralCurveAt γ v t₀meansγis a local integral curve tov. That is,γ tis tangent tov (γ t)for alltwithin some open interval oft₀.IsIntegralCurve γ vmeansγis a global integral curve tov. That is,γ tis tangent tov (γ t)for allt : ℝ. Lemmas about rescaling and translation of integral curves are proven:
- If
γsolvesvatt₀, thenγ (t + dt)is tangent tovatt₀ - dt. - If
γsolvesvatt₀, thenγ (a * t)is tangent toa • vatt₀ / afor any non-zeroa. - The constant function at
x₀solves anyvwithv x₀ = 0. We also shuffle the position of∃ ε > (0 : ℝ)inPicardLindelofto one that makes more sense, sincef t₀ = x₀does not depend onεyet.