def
definition
J_log
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.SimplicialLedger.ContinuumBridge on GitHub at line 67.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
cosh_quadratic_bound -
discreteness_forcing_principle -
J_log -
J_log_eq_J_exp -
J_log_eq_zero_iff -
J_log_nonneg -
J_log_pos -
J_log_quadratic_approx -
J_log_second_deriv_at_zero -
J_log_symmetric -
J_log_zero -
rh_equivalent_to_zero_cost -
defectIterate_zero_eq_J_log -
defectIterate_zero_param -
doubledZeroDefect -
doubledZeroDefect_eq_cosh_sub_one -
zeroDefect -
zeroDefect_eq_cosh_sub_one -
zeroDefect_eq_J_log -
zeroDefect_invariant_under_conjugation -
zeroDefect_invariant_under_functional_reflection -
zeroDefect_invariant_under_reflection -
zeroDefect_pos_iff_off_critical_line -
cosh_gt_one_plus_half_sq -
coupling_identity -
coupling_law_cert -
exactCost
formal source
64This is what makes J-cost equivalent to the Regge action. -/
65
66/-- J-cost in log coordinates: J(eᵋ) = cosh(ε) − 1 -/
67def J_log (ε : ℝ) : ℝ := Jcost (Real.exp ε)
68
69/-- The quadratic approximation of J in log coordinates. -/
70def J_log_quadratic (ε : ℝ) : ℝ := ε ^ 2 / 2
71
72/-- The quartic error bound. For |ε| < 1, the error in the
73 quadratic approximation is bounded by ε⁴/24.
74 This is the standard Taylor remainder for cosh. -/
75def J_log_error_bound (ε : ℝ) : ℝ := |ε| ^ 4 / 24
76
77/-! ## The Coupling Cost
78
79The cost of a mismatch between neighboring simplices. -/
80
81/-- The coupling cost between two simplices with log-potentials ε₁, ε₂.
82 J(ψ₁/ψ₂) = J(e^(ε₁−ε₂)) ≈ (ε₁−ε₂)²/2 at leading order. -/
83def coupling_cost (ε₁ ε₂ : ℝ) : ℝ := Jcost (Real.exp (ε₁ - ε₂))
84
85/-- The quadratic approximation of the coupling cost. -/
86def coupling_quadratic (ε₁ ε₂ : ℝ) : ℝ := (ε₁ - ε₂) ^ 2 / 2
87
88/-! ## Discrete Laplacian Structure
89
90The quadratic J-cost coupling is a discrete Laplacian action.
91On a simplicial complex with N simplices and adjacency weights w_ij:
92
93 S_quadratic = (1/2) Σ_{i~j} w_ij · (ε_i − ε_j)²
94
95This is the standard graph Laplacian energy. -/
96
97/-- A weighted simplicial graph representing the ledger. -/