pith. machine review for the scientific record. sign in
theorem proved term proof high

constant_eval

show as:
view Lean formalization →

Constant scalar fields evaluate to their fixed value at every spacetime point. Researchers modeling uniform potentials in relativistic settings cite this for verifying field definitions. The proof is a one-line reflexivity that follows directly from the definitions of constant and eval.

claimFor any real number $c$ and spacetime point $x : Fin 4 → ℝ$, the evaluation of the constant scalar field with value $c$ at $x$ equals $c$.

background

A scalar field assigns a real value to each spacetime point. The constant scalar field is the structure whose underlying function ψ returns the fixed real c at every input. Evaluation of a scalar field φ at x is the direct application of φ.ψ to x.

proof idea

The proof is a term-mode reflexivity (rfl). It unfolds the definition of constant to the constant function and the definition of eval to function application, matching the right-hand side c identically.

why it matters in Recognition Science

This supplies the basic evaluation property for constant fields inside the relativity scalar module. It ensures uniform fields behave as expected before introducing derivatives or dynamics. No downstream theorems are listed yet.

scope and limits

formal statement (Lean)

  20theorem constant_eval (c : ℝ) (x : Fin 4 → ℝ) :
  21  eval (constant c) x = c := rfl

proof body

Term-mode proof.

  22
  23/-- Zero scalar field. -/

depends on (3)

Lean names referenced from this declaration's body.