[Merged by Bors] - chore: split IntegralCurve#18833
Closed
winstonyin wants to merge 4 commits intomasterfrom
Closed
[Merged by Bors] - chore: split IntegralCurve#18833winstonyin wants to merge 4 commits intomasterfrom
IntegralCurve#18833winstonyin wants to merge 4 commits intomasterfrom
Conversation
PR summary 55ffaa733fImport changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diffNo declarations were harmed in the making of this PR! 🐙 You can run this locally as follows## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>The doc-module for |
Closed
3 tasks
grunweg
requested changes
Nov 11, 2024
Contributor
grunweg
left a comment
There was a problem hiding this comment.
Two small comments, otherwise LGTM. Thanks for doing this!
Contributor
|
Thanks! |
|
🚀 Pull request has been placed on the maintainer queue by grunweg. |
Contributor
|
bors merge |
mathlib-bors bot
pushed a commit
that referenced
this pull request
Nov 12, 2024
Split `Mathlib.Geometry.Manifold.IntegralCurve` into three files: * `Mathlib.Geometry.Manifold.IntegralCurve.Basic`: Definitions and basic lemmas about continuity and derivatives of integral curves * `Mathlib.Geometry.Manifold.IntegralCurve.Transform`: Lemmas about translation and scaling of the domain of integral curves by a constant * `Mathlib.Geometry.Manifold.IntegralCurve.ExistUnique`: Local existence and uniqueness theorems for integral curves No content has been substantively changed from the original file. This is to prepare for #9013, which proves a sufficient condition for global existence of integral curves. That'll go in another new file.
Contributor
|
Pull request successfully merged into master. Build succeeded: |
IntegralCurveIntegralCurve
Jun2M
pushed a commit
that referenced
this pull request
Nov 17, 2024
Split `Mathlib.Geometry.Manifold.IntegralCurve` into three files: * `Mathlib.Geometry.Manifold.IntegralCurve.Basic`: Definitions and basic lemmas about continuity and derivatives of integral curves * `Mathlib.Geometry.Manifold.IntegralCurve.Transform`: Lemmas about translation and scaling of the domain of integral curves by a constant * `Mathlib.Geometry.Manifold.IntegralCurve.ExistUnique`: Local existence and uniqueness theorems for integral curves No content has been substantively changed from the original file. This is to prepare for #9013, which proves a sufficient condition for global existence of integral curves. That'll go in another new file.
TobiasLeichtfried
pushed a commit
that referenced
this pull request
Nov 21, 2024
Split `Mathlib.Geometry.Manifold.IntegralCurve` into three files: * `Mathlib.Geometry.Manifold.IntegralCurve.Basic`: Definitions and basic lemmas about continuity and derivatives of integral curves * `Mathlib.Geometry.Manifold.IntegralCurve.Transform`: Lemmas about translation and scaling of the domain of integral curves by a constant * `Mathlib.Geometry.Manifold.IntegralCurve.ExistUnique`: Local existence and uniqueness theorems for integral curves No content has been substantively changed from the original file. This is to prepare for #9013, which proves a sufficient condition for global existence of integral curves. That'll go in another new file.
mathlib-bors bot
pushed a commit
that referenced
this pull request
Nov 27, 2024
…9013) Lemma 9.15 in Lee's Introduction to Smooth Manifolds: > Let `v` be a smooth vector field on a smooth manifold `M`. If there exists `ε > 0` such that for each point `x : M`, there exists an integral curve of `v` through `x` defined on an open interval `Ioo (-ε) ε`, then every point on `M` has a global integral curve of `v` passing through it. We only require `v` to be $C^1$. To achieve this, we define the extension of an integral curve `γ` by another integral curve `γ'`, if they agree at a point inside their overlapping open interval domains. This utilises the uniqueness theorem of integral curves. We need this lemma to show that vector fields on compact manifolds always have global integral curves. - [x] depends on: #8886 - [x] depends on: #18833 - [x] depends on: #19008 Co-authored-by: Michael Rothgang <rothgang@math.uni-bonn.de> Co-authored-by: Johan Commelin <johan@commelin.net>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Split
Mathlib.Geometry.Manifold.IntegralCurveinto three files:Mathlib.Geometry.Manifold.IntegralCurve.Basic: Definitions and basic lemmas about continuity and derivatives of integral curvesMathlib.Geometry.Manifold.IntegralCurve.Transform: Lemmas about translation and scaling of the domain of integral curves by a constantMathlib.Geometry.Manifold.IntegralCurve.ExistUnique: Local existence and uniqueness theorems for integral curvesNo content has been substantively changed from the original file. This is to prepare for #9013, which proves a sufficient condition for global existence of integral curves. That'll go in another new file.