Uniqueness of a solution to a real cube-root equation
ProvedWorkbookCorrected.plus_23173corrected-formalizationlean-workbooksource-checked
The real equation
has exactly one solution, .
Formalization Note: The real cube roots are represented by their cubing equations, including negative radicands. The original formalization used natural-number division in fractional exponents. This corrected statement proves both that every solution is1 and that1 satisfies the equation.
Source: InternLM Lean-Workbook, record lean_workbook_plus_23173 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_23173 : ∀ (x : ℝ),
(∃ u v w : ℝ, u^3=x+7 ∧ v^3=2*x-1 ∧ w^3=x ∧ u-v=w) ↔ x=1 := by sorrySource