structure
definition
def or abbrev
Model
show as:
view Lean formalization →
formal statement (Lean)
69structure Model (β : Type) where
70 C : Constants
71 defectMass : β → ℝ
72 orthoMass : β → ℝ
73 energyGap : β → ℝ
74 tests : β → ℝ
75 /- Projection-Defect (A): D ≤ K_net · C_proj · ||proj_{S⊥}||^2 -/
76 projection_defect : ∀ a : β, defectMass a ≤ C.Knet * C.Cproj * orthoMass a
77 /- Energy control: ||proj_{S⊥}||^2 ≤ C_eng · (E-E_0) -/
78 energy_control : ∀ a : β, orthoMass a ≤ C.Ceng * energyGap a
79 /- Dispersion/interface: ||proj_{S⊥}||^2 ≤ C_disp · sup tests -/
80 dispersion : ∀ a : β, orthoMass a ≤ C.Cdisp * tests a
81
82namespace Model
83
84variable {β : Type}
85
86/-- (AB) Coercivity link: `D ≤ (K_net·C_proj·C_eng) · (E−E_0)`.
87
88This is the forward direction combining A + energy control.
89We deliberately avoid dividing by the product, to keep sign issues out
90of the core inequality. -/
used by (40)
-
J_bit_pos -
CPMBridge -
Functionals -
Hypothesis -
model -
State -
cosmic_ratio_large -
small_tensor_modes -
cp_not_symmetry -
observed_suppression -
w_mass_rs_prediction -
eightTickModel -
eightTickModel_pos -
rs_cone_cmin_value -
rsConeModel -
rsConeModel_pos -
subspaceModel -
trivialModel -
defect_eq_ortho_of_subspace_case -
defect_le_constants_mul_energyGap -
defect_le_constants_mul_tests -
defect_le_ortho_of_Knet_one_Cproj_one -
energyGap_ge_cmin_mul_defect -
cube_face_equicardinal -
xenon_more_sensitive -
thermal_scales_with_power -
ga_capture_measured -
no_sterile_needed -
ngc1052df2_dm_poor -
ckmHierarchyFromPhiLadderCert