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...
Exact Lean statement
@[simp]
theorem injective_update_iff (p : DualPair E) {φ : E →L[ℝ] F} (hφ : Injective φ) {w : F} :
Injective (p.update φ w) ↔ w ∉ (p.π.ker).map (φ : E →ₛₗ[.id ℝ] F)Formal artifact
Lean source
@[simp]theorem injective_update_iff (p : DualPair E) {φ : E →L[ℝ] F} (hφ : Injective φ) {w : F} : Injective (p.update φ w) ↔ w ∉ (p.π.ker).map (φ : E →ₛₗ[.id ℝ] F) := by constructor · rintro h ⟨u, hu, rfl⟩ have : p.update φ (φ u) p.v = φ u := p.update_v φ (φ u) nth_rw 2 [← p.update_ker_pi φ (φ u) hu] at this simp [← h this, p.pairing] at hu · intro hw refine (injective_iff_map_eq_zero (p.update φ w)).mpr fun x hx ↦ ?_ rcases p.decomp x with ⟨u, hu, t, rfl⟩ rw [map_add, map_smul, update_v, p.update_ker_pi _ _ hu] at hx obtain rfl : t = 0 := by by_contra ht apply hw refine ⟨-t⁻¹ • u, (p.π.ker).smul_mem _ hu, ?_⟩ rw [map_smul] have : -t⁻¹ • (φ u + t • w) + w = -t⁻¹ • (0 : F) + w := congr_arg (-t⁻¹ • · + w) hx rwa [smul_add, neg_smul, neg_smul, inv_smul_smul₀ ht, smul_zero, zero_add, neg_add_cancel_right, ← neg_smul] at this rw [zero_smul, add_zero] at hx ⊢ exact (injective_iff_map_eq_zero φ).mp hφ u hx- Project
- Sphere eversion
- License
- Apache-2.0
- Commit
- ded8fda5e76b
- Source
- SphereEversion/Local/DualPair.lean:153-174
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
Continuous of Path
Continuous.ofPath
Plain-language statement
Loop.ofPath is continuous, general version.
Source project: Sphere eversion
Person-level attribution pending.
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 ≠...
Source project: Sphere eversion
Person-level attribution pending.
Immersion antipodal sphere
immersion_antipodal_sphere
Plain-language statement
The antipodal map on 𝕊^n ⊆ ℝ^{n+1} is an immersion.
Source project: Sphere eversion
Person-level attribution pending.