Pith. sign in
lemma

vec4_two

proved
show as:
module
IndisputableMonolith.Gravity.ClausiusEinsteinBridge
domain
Gravity
line
48 · github
papers citing
none yet

plain-language theorem explainer

The Fin-4 index-2 component of the named four-vector (a,b,c,d) equals c. Anyone simplifying projections of finite null probes in the algebraic Clausius–Einstein hinge cites this simp rule. The proof is a one-line rewrite of the piecewise definition, discharging the two false branches by decide and the true branch by rfl.

Claim. For all real numbers $a,b,c,d$, the four-vector with ordered components $(a,b,c,d)$ evaluates at index $2\in\{0,1,2,3\}$ to $c$.

background

The module isolates the finite-dimensional linear algebra behind Jacobson's thermodynamic route to Einstein's equation: equality of two symmetric quadratic forms on every Minkowski-null direction fixes their difference only up to a scalar multiple of the metric. Local Clausius balance on all null cuts therefore has the algebraic shape of the Einstein equation, with the metric term free.

Four-vectors appear as finite null probes. The helper vec4 packages four reals into a map Fin 4 → ℝ by nested if-then-else on the index: index 0 yields the first argument, 1 the second, 2 the third, and otherwise the fourth. Component lemmas such as this one turn those nested conditionals into simp-normal form so later quadratic-form identities stay readable.

proof idea

One-line wrapper. Rewrite by the definition of the four-vector map, then discharge the two false branches i = 0 and i = 1 with decide (since the concrete index is 2) and the remaining true branch i = 2 with rfl. No external lemmas beyond the definition itself.

why it matters

Component extraction is the lowest layer of the finite null-probe calculus used throughout the Clausius–Einstein bridge. Without simp lemmas for each index, every later identity about quadratic contractions on Minkowski-null directions would carry nested if-noise. The module deliberately stops short of horizons, heat–flux identification, continuum focusing, or fixing the free scalar; this lemma only clears the algebraic bookkeeping those later steps would need. No downstream consumers are recorded yet; the lemma sits ready for the null-cut and quadratic-form arguments in the same file.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.