All proofs
Project-declaredLean 4.32.0-rc1 · mathlib@e752928d

Sf Homotopy in

sfHomotopy_in'

Plain-language statement

A more precise version of sfHomotopy_in.

Exact Lean statement

theorem sfHomotopy_in' {ι} (h₀ : SurroundingFamily g b γ₀ U) (h₁ : SurroundingFamily g b γ₁ U)
    (τ : ι → ℝ) (x : ι → E) (i : ι) {V : Set E} (hx : x i ∈ V) {t : ℝ} (ht : t ∈ I) {s : ℝ}
    (h_in₀ : ∀ i, x i ∈ V → ∀ t ∈ I, ∀ (s : ℝ), τ i ≠ 1 → (x i, γ₀ (x i) t s) ∈ Ω)
    (h_in₁ : ∀ i, x i ∈ V → ∀ t ∈ I, ∀ (s : ℝ), τ i ≠ 0 → (x i, γ₁ (x i) t s) ∈ Ω) :
    (x i, sfHomotopy h₀ h₁ (τ i) (x i) t s) ∈ Ω

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem sfHomotopy_in' {ι} (h₀ : SurroundingFamily g b γ₀ U) (h₁ : SurroundingFamily g b γ₁ U)    (τ : ι  ) (x : ι  E) (i : ι) {V : Set E} (hx : x i  V) {t : } (ht : t  I) {s : }    (h_in₀ :  i, x i  V   t  I,  (s : ), τ i  1  (x i, γ₀ (x i) t s)  Ω)    (h_in₁ :  i, x i  V   t  I,  (s : ), τ i  0  (x i, γ₁ (x i) t s)  Ω) :    (x i, sfHomotopy h₀ h₁ (τ i) (x i) t s)  Ω := by  by_cases hτ0 : τ i = 0  · simp only [hτ0, sfHomotopy_zero]; exact h_in₀ i hx t ht s (by norm_num [hτ0])  by_cases hτ1 : τ i = 1  · simp only [hτ1, sfHomotopy_one]; exact h_in₁ i hx t ht s (by norm_num [hτ1])  generalize hy : sfHomotopy h₀ h₁ (τ i) (x i) t s = y  have h2y : y  range (sfHomotopy h₀ h₁ (τ i) (x i) t) := by rw [ hy]; exact mem_range_self _  rw [sfHomotopy, Loop.range_ofPath, projI_eq_self.mpr ht] at h2y  replace h2y := range_strans_subset h2y  rcases h2y with (s', rfl | s', rfl)  · exact h_in₀ _ hx _ (unitInterval.mul_mem ρ_mem_I ht) _ hτ1  · exact h_in₁ _ hx _ (unitInterval.mul_mem ρ_mem_I ht) _ hτ0
Project
Sphere eversion
License
Apache-2.0
Commit
ded8fda5e76b
Source
SphereEversion/Loops/Surrounding.lean:823-838

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0-rc1

Continuous of Path

Continuous.ofPath

Plain-language statement

Loop.ofPath is continuous, general version.

topologydifferential geometryhomotopy

Source project: Sphere eversion

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0-rc1

Injective update iff

DualPair.injective_update_iff

Project documentation

Map a dual pair under a linear equivalence. -/ @[simps] def map (p : DualPair E) (L : E ≃L[ℝ] E') : DualPair E' := ⟨p.π ∘L ↑L.symm, L p.v, (congr_arg p.π <| L.symm_apply_apply p.v).trans p.pairing⟩ theorem update_comp_left (p : DualPair E) (ψ' : F →L[ℝ] G) (φ : E →L[ℝ] F) (w : F) : p.update (ψ' ∘L φ) (ψ' w) = ψ' ∘L p.update φ w := by ext1 u simp only [upd...

topologydifferential geometryhomotopy

Source project: Sphere eversion

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0-rc1

Extend loops

extend_loops

Project documentation

A more precise version of sfHomotopy_in. -/ theorem sfHomotopy_in' {ι} (h₀ : SurroundingFamily g b γ₀ U) (h₁ : SurroundingFamily g b γ₁ U) (τ : ι → ℝ) (x : ι → E) (i : ι) {V : Set E} (hx : x i ∈ V) {t : ℝ} (ht : t ∈ I) {s : ℝ} (h_in₀ : ∀ i, x i ∈ V → ∀ t ∈ I, ∀ (s : ℝ), τ i ≠ 1 → (x i, γ₀ (x i) t s) ∈ Ω) (h_in₁ : ∀ i, x i ∈ V → ∀ t ∈ I, ∀ (s : ℝ), τ i ≠...

topologydifferential geometryhomotopy

Source project: Sphere eversion

Person-level attribution pending.

View proof record