Two solutions of a conjugate cube-root equation
ProvedWorkbookCorrected.plus_51554corrected-formalizationlean-workbooksource-checked
For real ,
holds if and only if or .
Formalization Note: Real cube roots are specified by their cubing equations. This corrects the natural-number division used in the original fractional powers and includes both directions of the source solution classification.
Source: InternLM Lean-Workbook, record lean_workbook_plus_51554 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_51554 : ∀ (x : ℝ),
(∃ a b : ℝ, a^3=20+x*Real.sqrt 2 ∧ b^3=20-x*Real.sqrt 2 ∧ a+b=4) ↔
(x=14 ∨ x= -14) := by sorrySource