Every cubic algebraic number is collapsible
OpenCollapsibleCubics.cubic_collapsibleLet be an algebraic number of degree over , that is, an algebraic number whose minimal polynomial over has degree . The claim is that is collapsible: there exists a split polynomial — one of degree at least that factors as with and every — and a rational number with
This is the first open case of the conjecture that every algebraic number is collapsible. Degrees and are settled. Degree is open for this one-step notion, and is not settled by the known cubic result for eventual collapsibility, which permits a composition of several split polynomials rather than a single one.
A proof would close the one-step cubic case. A disproof — a single cubic irrationality admitting no split with — would separate one-step from eventual collapsibility by an explicit example, showing that composition is genuinely necessary.
Formalization Note "Cubic" is expressed as the minimal polynomial of over having degree ; integrality over is stated explicitly, though it already follows from that degree condition. No bound is placed on , and the value is not required to be nonzero — but cannot occur, since it would force the irreducible cubic minimal polynomial to divide a polynomial that splits over .
import Definitions.Def_CollapsibleCubics_basic
import Definitions.Def_CollapsibleCubics_basic
namespace CollapsibleCubics
theorem cubic_collapsible (α : ℂ) (hint : IsIntegral ℚ α)
(hdeg : (minpoly ℚ α).natDegree = 3) :
Collapsible α := by sorry
end CollapsibleCubicsRead-back
What the Lean code literally says, in plain math · claude-opus-5
Fix a complex number . Assume two hypotheses. First, is integral over — that is, is a root of some monic polynomial with rational coefficients. Second, the minimal polynomial of over , written , has degree exactly :
(Here the degree is the natural-number degree, so the hypothesis asserts that this value is the number ; the degree- condition together with integrality forces to be an algebraic number of degree over , hence the hypotheses are jointly satisfiable and not vacuous.)
Under these hypotheses the claim is that is collapsible, where "collapsible" is a definition supplied by this bundle and must be unfolded. It is stated for an arbitrary field carrying a -algebra structure and an element ; here it is instantiated at with its canonical -algebra structure. The definition says: there exists a polynomial such that
- is split in the sense of this bundle, namely
- (the natural-number degree of is strictly positive), and
- there exist a rational number and a multiset of rational numbers with and
the product being taken over the multiset $R$ with multiplicity (in particular $R$ may be the empty multiset, in which case the product is $1$ and $f = a$ is a nonzero constant — though that case is excluded by the requirement $\deg f > 0$; and $\deg f$ need not equal the size of $R$ as a separate stipulation, it is whatever the displayed factorization forces);
2. there exists a rational number such that evaluating at inside lands in the image of :
So the assertion is: for every complex number that is integral over and whose minimal polynomial over has degree , there is a rational polynomial of strictly positive degree that factors over as a nonzero rational constant times a product of linear factors with all , and a rational number , such that .
Note that nothing constrains the degree of relative to , nothing requires to be monic, nothing requires the roots to be distinct or related to , and nothing requires or to be nonconstant on 's conjugates; the only conditions are the ones listed above.
Confirmed by the mission captain (proposal self-audit).