We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba16996 commit 6a439baCopy full SHA for 6a439ba
1 file changed
Mathlib/Geometry/Manifold/ContMDiff/Defs.lean
@@ -855,6 +855,16 @@ theorem ContMDiffOn.congr_mono (hf : ContMDiffOn I I' n f s) (h₁ : ∀ y ∈ s
855
(hs : s₁ ⊆ s) : ContMDiffOn I I' n f₁ s₁ :=
856
(hf.mono hs).congr h₁
857
858
+theorem ContMDiff.congr (h : ContMDiff I I' n f) (h₁ : ∀ y, f₁ y = f y) :
859
+ ContMDiff I I' n f₁ := by
860
+ rw [← contMDiffOn_univ] at h ⊢
861
+ exact (contMDiffOn_congr fun y _ ↦ h₁ y).mpr h
862
+
863
+theorem contMDiff_congr (h₁ : ∀ y, f₁ y = f y) :
864
+ ContMDiff I I' n f₁ ↔ ContMDiff I I' n f := by
865
+ simp_rw [← contMDiffOn_univ]
866
+ exact contMDiffOn_congr fun y _ ↦ h₁ y
867
868
/-! ### Locality -/
869
870
0 commit comments