A prime dividing the binary cubic form gives a root mod
ProvedCollapsibleCubics.exists_root_of_prime_dvd_formalgebraic-number-theorynumber-theory
Let with , and let be a prime dividing the binary form . Then the depressed cubic has a root in .
The argument: coprimality forces , so is invertible mod and is a root of over , since .
Preamble
import Mathlib
Formal statement
namespace CollapsibleCubics
theorem exists_root_of_prime_dvd_form {p : ℕ} (hp : p.Prime) (d e a b : ℤ)
(hab : IsCoprime a b) (h : (p : ℤ) ∣ a ^ 3 + d * a * b ^ 2 + e * b ^ 3) :
∃ r : ZMod p, r ^ 3 + (d : ZMod p) * r + (e : ZMod p) = 0 := by sorry
end CollapsibleCubicsSource
Collapsible Cubics mission (Q7 support chain); proved in the project repo, restated here for the platform. Background: https://quesswho.github.io/miles-blog/2026/08/20/collapsible/