WeightedLedgerGraph
WeightedLedgerGraph equips a finite set of n vertices with a symmetric nonnegative real weight matrix that models the discrete ledger graph. Researchers deriving the Einstein field equations from J-cost stationarity cite this as the discrete object on which the Laplacian action is defined. The declaration is a direct structure definition that introduces the weight function together with its two axioms.
claimA weighted simplicial graph on $n$ vertices is a function $w : [n] × [n] → ℝ$ such that $w(i,j) ≥ 0$ and $w(i,j) = w(j,i)$ for all indices $i,j$.
background
The module establishes the continuum bridge by showing that J-cost stationarity on the simplicial ledger yields the Einstein field equations in the continuum limit. J-cost is the quadratic cost functional induced by multiplicative recognizers on positive ratios and by recognition events on states. The upstream cost definitions supply the J-cost that is evaluated on the weight matrix of this graph.
proof idea
The declaration is a direct structure definition that introduces the weight matrix together with its nonnegativity and symmetry axioms.
why it matters in Recognition Science
This structure is the foundational object in the JCostToEFE derivation chain and appears in ContinuumBridgeCert. It enables the identification of the discrete Laplacian action with the linearized Regge action, closing the gap between the discrete RS ledger and the continuum Einstein equations with coupling constant κ = 8φ⁵.
scope and limits
- Does not impose any simplicial complex relations beyond the weight matrix.
- Does not specify a metric or embedding into a manifold.
- Does not enforce positivity of the weights beyond nonnegativity.
formal statement (Lean)
98structure WeightedLedgerGraph (n : ℕ) where
99 weight : Fin n → Fin n → ℝ
100 weight_nonneg : ∀ i j, 0 ≤ weight i j
101 weight_symm : ∀ i j, weight i j = weight j i
102
103/-- The discrete Laplacian action (= quadratic J-cost) on the graph. -/
used by (40)
-
ContinuumBridgeCert -
discrete_laplacian -
FieldCurvatureBridge -
flat_is_vacuum -
induced_regge_action -
JCostToEFE -
laplacian_action -
stationarity_iff_laplacian_zero -
bridge_chain_complete -
ContinuumFieldCurvatureCert -
field_curvature_identity_einstein -
flat_regge_sum_zero -
CubicFieldCurvatureCert -
cubicHinges -
cubic_linearization_discharge -
field_curvature_identity_cubic -
laplacian_action_as_prod_sum -
regge_sum_cubicHinges -
CubicSimplicialInvarianceCert -
refinement_calibrated -
refinement_discharge_inherits -
EdgeLengthFromPsiCert -
field_curvature_identity_under_linearization -
laplacian_action_flat -
ReggeDeficitLinearizationHypothesis -
regge_sum_flat_under_linearization -
exact_decomposition -
exact_flat_agrees_with_linearized -
exactJCostAction -
exactJCostAction_flat