def
definition
partialDeriv
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Relativity.Geometry.Manifold on GitHub at line 82.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
79 simp [kronecker, h]
80
81/-- Partial derivative of a scalar function using a directional derivative along the basis vector. -/
82noncomputable def partialDeriv {M : Manifold} (f : Point M → ℝ) (μ : Fin M.dim) (x : Point M) : ℝ :=
83 deriv (fun t => f (fun i => if i = μ then x i + t else x i)) 0
84
85
86end Geometry
87end Relativity
88end IndisputableMonolith