pith. machine review for the scientific record. sign in
def

partialDeriv

definition
show as:
view math explainer →
module
IndisputableMonolith.Relativity.Geometry.Manifold
domain
Relativity
line
82 · github
papers citing
none yet

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

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

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