theorem
proved
tactic proof
defect_zero_iff_one
show as:
view Lean formalization →
formal statement (Lean)
58theorem defect_zero_iff_one {x : ℝ} (hx : 0 < x) : defect x = 0 ↔ x = 1 := by
proof body
Tactic-mode proof.
59 simp only [defect, J]
60 constructor
61 · intro h
62 have hx0 : x ≠ 0 := hx.ne'
63 -- (x + 1/x)/2 - 1 = 0 implies (x + 1/x) = 2
64 have h1 : x + x⁻¹ = 2 := by linarith
65 -- Multiply by x: x² + 1 = 2x, so (x-1)² = 0
66 have h2 : x * (x + x⁻¹) = x * 2 := by rw [h1]
67 have h3 : x^2 + 1 = 2 * x := by field_simp at h2; linarith
68 nlinarith [sq_nonneg (x - 1)]
69 · intro h; simp [h]
70
71/-- **Law of Existence (Forward)**: Existence implies defect is zero. -/
used by (29)
-
determinism_resolution -
continuous_no_isolated_zero_defect -
continuous_space_no_lockIn -
discreteness_forcing_principle -
concrete_inevitability -
summary -
economic_inevitability -
zero_defect_iff_unity -
defect_pos_of_ne_one -
existence_economically_inevitable -
exists_iff_unity -
structured_set_singleton -
unity_unique_existent -
consistent_minimum_cost -
contradiction_positive_cost -
logic_from_cost -
logic_from_cost_summary -
why_logic_is_real -
RecognitionBridge -
rs_exists_unique_one -
ground_state_paradox -
actuality_is_j_minimum -
necessary_is_one -
necessity_is_unique_minimizer -
ideal_iff_good -
is_implies_ought -
ph004_objective_morality_certificate -
ph006_probability_certificate -
prob_is_epistemic