@@ -161,18 +161,22 @@ theorem contDiffWithinAtProp_id (x : H) : ContDiffWithinAtProp I I n id univ x :
161161 · simp only [mfld_simps]
162162
163163variable (I I') in
164- /-- A function is `n` times continuously differentiable within a set at a point in a manifold if
165- it is continuous and it is `n` times continuously differentiable in this set around this point, when
166- read in the preferred chart at this point.
164+ /-- `ContMDiffWithinAt I I' n f x` indicates that the function `f : M → M'` between manifolds
165+ is `n` times continuously differentiable at `x : M` within the set `s`.
166+
167+ `f` is `n` times continuously differentiable within `s` at `x` if it is continuous and it is `n`
168+ times continuously differentiable in this set around `x`, when read in the preferred chart at `x`.
167169The parameter `n` belongs to `ℕ∞ω` (accessible in the `ContDiff` scope), i.e. it can be a natural
168170number, `∞`, or `ω`, where `C^ω` corresponds to analytic functions. -/
169171def ContMDiffWithinAt (n : ℕ∞ω) (f : M → M') (s : Set M) (x : M) :=
170172 LiftPropWithinAt (ContDiffWithinAtProp I I' n) f s x
171173
172174variable (I I') in
173- /-- A function is `n` times continuously differentiable at a point in a manifold if
174- it is continuous and it is `n` times continuously differentiable around this point, when
175- read in the preferred chart at this point.
175+ /-- `ContMDiffAt I I' n f x` indicates that the function `f : M → M'` between manifolds
176+ is `n` times continuously differentiable at `x : M`.
177+
178+ `f` is `n` times continuously differentiable at `x` if it is continuous and it is `n` times
179+ continuously differentiable around `x`, when read in the preferred chart at `x`.
176180The parameter `n` belongs to `ℕ∞ω` (accessible in the `ContDiff` scope), i.e. it can be a natural
177181number, `∞`, or `ω`, where `C^ω` corresponds to analytic functions. -/
178182def ContMDiffAt (n : ℕ∞ω) (f : M → M') (x : M) :=
@@ -186,18 +190,23 @@ theorem contMDiffAt_iff {n : ℕ∞ω} {f : M → M'} {x : M} :
186190 liftPropAt_iff.trans <| by rw [ContDiffWithinAtProp, preimage_univ, univ_inter]; rfl
187191
188192variable (I I') in
189- /-- A function is `n` times continuously differentiable in a set of a manifold if it is continuous
190- and, for any pair of points, it is `n` times continuously differentiable on this set in the charts
193+ /-- `ContMDiffOn I I' n f s` indicates that the function `f : M → M'` between manifolds
194+ is `n` times continuously differentiable in a set `s : Set M`.
195+
196+ `f` is `n` times continuously differentiable on `s` if it is continuous on `s` and,
197+ for any pair of points, it is `n` times continuously differentiable `s` in the charts
191198around these points.
192199The parameter `n` belongs to `ℕ∞ω` (accessible in the `ContDiff` scope), i.e. it can be a natural
193200number, `∞`, or `ω`, where `C^ω` corresponds to analytic functions. -/
194201def ContMDiffOn (n : ℕ∞ω) (f : M → M') (s : Set M) :=
195202 ∀ x ∈ s, ContMDiffWithinAt I I' n f s x
196203
197204variable (I I') in
198- /-- A function is `n` times continuously differentiable in a manifold if it is continuous
199- and, for any pair of points, it is `n` times continuously differentiable in the charts
200- around these points.
205+ /-- `ContMDiff I I' n f` indicates that the function `f : M → M'` between manifolds
206+ is `n` times continuously differentiable.
207+
208+ `f` is `n` times continuously differentiable if it is continuous and, for any pair of points,
209+ it is `n` times continuously differentiable in the charts around these points.
201210The parameter `n` belongs to `ℕ∞ω` (accessible in the `ContDiff` scope), i.e. it can be a natural
202211number, `∞`, or `ω`, where `C^ω` corresponds to analytic functions. -/
203212def ContMDiff (n : ℕ∞ω) (f : M → M') :=
0 commit comments