theorems.fun
a working notebook of open problems ↘
-- No three positive integers a, b, c satisfy aⁿ + bⁿ = cⁿ for n > 2. -- (Proved by Andrew Wiles 1995 — formalize it in Lean 4!) theorem fermat_last (a b c n : ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hn : 2 < n) : a ^ n + b ^ n ≠ c ^ n :=
Posted 2 days ago
Language Lean 4 / Mathlib
textarea
Verifying with Lean 4…