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

Cont MDiff update

OpenSmoothEmbedding.contMDiff_update

Project documentation

This is lemma lem:smooth_updating in the blueprint.

Exact Lean statement

theorem contMDiff_update (f : M' → M → N) (g : M' → X → Y) {k : M' → M} {K : Set X}
    (hK : IsClosed (φ '' K)) (hf : CMDiff ∞ (uncurry f))
    (hg : CMDiff ∞ (uncurry g)) (hk : CMDiff ∞ k)
    (hg' : ∀ y x, x ∉ K → f y (φ x) = ψ (g y x)) :
    CMDiff ∞ fun x ↦ update φ ψ (f x) (g x) (k x)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem contMDiff_update (f : M'  M  N) (g : M'  X  Y) {k : M'  M} {K : Set X}    (hK : IsClosed (φ '' K)) (hf : CMDiff ∞ (uncurry f))    (hg : CMDiff ∞ (uncurry g)) (hk : CMDiff ∞ k)    (hg' :  y x, x  K  f y (φ x) = ψ (g y x)) :    CMDiff ∞ fun x  update φ ψ (f x) (g x) (k x) := by  have hK' :  x, k x  φ '' K  update φ ψ (f x) (g x) (k x) = f x (k x) := fun x hx     nice_update_of_eq_outside_compact_aux φ ψ (f x) (g x) (hg' x) hx  refine contMDiff_of_locally_contMDiffOn fun x  ?_  let U := range φ  let V := (φ '' K)ᶜ  have h₂ : IsOpen (k ⁻¹' V) := hK.isOpen_compl.preimage hk.continuous  have h₃ : V ∪ U = univ := by    rw [ compl_subset_iff_union, compl_compl]    exact image_subset_range φ K  have h₄ (x) : k x  U  update φ ψ (f x) (g x) (k x) = (ψ ∘ g x ∘ φ.invFun) (k x) :=    fun hm  if_pos hm  by_cases hx : k x  U  · exact k ⁻¹' U, φ.isOpen_range.preimage hk.continuous, hx,      (contMDiffOn_congr h₄).mpr <| ψ.contMDiff_to.comp_contMDiffOn <| hg.comp_contMDiffOn        (contMDiffOn_id.prodMk <| φ.contMDiffOn_inv.comp hk.contMDiffOn Subset.rfl)  · refine k ⁻¹' V, h₂, ?_, (contMDiffOn_congr hK').mpr      (hf.comp ((contMDiff_id (n := ∞)).prodMk hk)).contMDiffOn    exact ((Set.ext_iff.mp h₃ (k x)).mpr trivial).resolve_right hx
Project
Sphere eversion
License
Apache-2.0
Commit
ded8fda5e76b
Source
SphereEversion/Global/SmoothEmbedding.lean:421-443

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