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