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

pressure

definition
show as:
view math explainer →
module
IndisputableMonolith.ILG.PressureForm
domain
ILG
line
29 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.ILG.PressureForm on GitHub at line 29.

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

  26  4 * Real.pi * P.G * (a ^ 2) * ρ * (W k a) * δ
  27
  28/- Pressure display variable p := ρ · w · δ. -/
  29def pressure (W : Kernel) (k a ρ δ : ℝ) : ℝ := ρ * (W k a) * δ
  30
  31/- Effective source via pressure display: 4π G a^2 p. -/
  32def effectiveSource_pressure (P : Phys) (W : Kernel) (k a ρ δ : ℝ) : ℝ :=
  33  4 * Real.pi * P.G * (a ^ 2) * pressure W k a ρ δ
  34
  35/- Algebraic equivalence (display-only): identical right-hand sides. -/
  36theorem source_equiv (P : Phys) (W : Kernel) (k a ρ δ : ℝ) :
  37  effectiveSource P W k a ρ δ = effectiveSource_pressure P W k a ρ δ := rfl
  38
  39end PressureForm
  40end ILG
  41end IndisputableMonolith