entropy
The declaration defines entropy of a configuration of N ledger entries as its total defect sum. Cosmologists working on the initial low-entropy state in Recognition Science cite this to identify zero defect with the minimum-entropy configuration. The definition is a one-line wrapper around the total_defect summation.
claimFor a configuration $c$ of $N$ positive real ledger entries, the entropy is defined by $S(c) :=$ sum of the individual J-costs of each entry.
background
In the InitialCondition module a Configuration is a structure of $N$ positive real entries representing ledger ratios. Total defect sums the J-cost of each entry via LawOfExistence.defect. The module formalizes F-005: the only RSExists state is unity (zero defect), so a full ledger of unity entries has total defect zero and is therefore the unique minimum-entropy state, converting the Past Hypothesis into the Past Theorem.
proof idea
One-line wrapper that applies the total_defect definition, which itself sums LawOfExistence.defect over the Fin N entries.
why it matters in Recognition Science
This definition supplies the entropy measure used by initial_state_minimum_entropy, nonunity_positive_entropy, cone_entropy_bound, and jcost_ground_state. It realizes the low-entropy initial condition forced by the cost axioms in the T0-T8 chain, making the Past Hypothesis a theorem rather than an assumption.
scope and limits
- Does not derive a numerical entropy value for any concrete physical system.
- Does not prove the second law or time asymmetry.
- Does not fix the proportionality factor between defect and thermodynamic entropy.
- Does not incorporate quantum or field-theoretic corrections to the defect sum.
formal statement (Lean)
115noncomputable def entropy {N : ℕ} (c : Configuration N) : ℝ :=
proof body
Definition body.
116 total_defect c
117
118/-- **Theorem**: The initial state has minimum entropy. -/
used by (40)
-
cone_bound_export -
cone_entropy_bound -
ConeEntropyFacts -
complementary_explanation -
jcost_ground_state -
before_asymm -
initial_state_minimum_entropy -
nonunity_positive_entropy -
unity_unique_minimizer -
c_RS_neg -
blackHoleHorizonStatesCert -
c_RS_band -
N_horizon_pos -
bhMass_nonneg_in_window -
blackHoleInformationCert -
entropy_bound_by_initial_BH_half -
joint_VN_entropy -
joint_VN_entropy_conserved -
joint_VN_entropy_zero -
naive_entropy_sum -
pageEntropy -
page_time_at_half_evap -
S_BH_anti -
S_BH_at_def -
S_radiation_at -
S_radiation_le_S_thermal -
S_R_at_page_eq_S_BH -
S_thermal_at_def -
mass_lt_implies_page_lt -
horizonCells