Definition 6.7 (Derivative in one variable): let E ⊆ ℝ, f : E → ℝ, and
x₀ ∈ E. A real number L is the derivative of f at x₀ iff
(f x - f x₀) / (x - x₀) tends to L as x → x₀ with x ∈ E \ {x₀}.
Equations
- HasDerivativeInOneVariableAt E f x₀ L = Filter.Tendsto (fun (x : ↑E) => (f x - f x₀) / (↑x - ↑x₀)) (nhdsWithin x₀ {x : ↑E | ↑x ≠ ↑x₀}) (nhds L)
Instances For
Helper for Lemma 6.4: on the punctured nhdsWithin filter, points are
eventually different from the basepoint.
Helper for Lemma 6.4: eventual equality between the target error ratio and
the absolute form |quotient - L| on the punctured filter.
Lemma 6.4: let E ⊆ ℝ, f : E → ℝ, x₀ ∈ E a limit point of E, and
L ∈ ℝ. Then (f x - f x₀) / (x - x₀) → L as x → x₀ in E \ {x₀} iff
|f x - (f x₀ + L (x - x₀))| / |x - x₀| → 0 on the same punctured domain.
Definition 6.8 (Differentiability): let E ⊆ ℝ^n, f : E → ℝ^m, and
x₀ ∈ E be a limit point of E. For a linear map L : ℝ^n → ℝ^m, f is
differentiable at x₀ with derivative L when
‖f x - (f x₀ + L (x - x₀))‖ / ‖x - x₀‖ → 0 as x → x₀ with
x ∈ E \ {x₀}, using the Euclidean norm.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Helper for Proposition 6.8: the map f agrees with the coordinate-square formula.
Helper for Proposition 6.8: the coordinate-square ambient map has derivative L at x₀.
Helper for Proposition 6.8: the linearization error ratio tends to 0 on punctured neighborhoods in the ambient space.
Proposition 6.8: if f : ℝ² → ℝ² is given by f(x, y) = (x^2, y^2), then
f is differentiable at x₀ = (1, 2) with derivative L(x, y) = (2x, 4y).
Lemma 6.5 (Uniqueness of derivatives): if x₀ is an interior point of
E ⊆ ℝⁿ and both L₁ and L₂ satisfy the derivative error-ratio limit for
f : E → ℝᵐ at x₀, then the linear transformations coincide: L₁ = L₂.