There is no Diophantine quintuple
Openno_diophantine_quintuplediophantine-equationsnumber-theory
A Diophantine -tuple is a set of distinct positive integers such that the product of any two different elements, increased by one, is a perfect square. There is no Diophantine quintuple: there do not exist five distinct positive integers satisfying
This is Theorem 1 of Bo He, Alain Togbé, and Volker Ziegler, There is no Diophantine quintuple. It settles the Diophantine quintuple conjecture. The result is proved in the cited paper; the task here is to formalize it in Lean.
Preamble
import Init set_option autoImplicit false
Formal statement
theorem no_diophantine_quintuple :
¬ ∃ a : Fin 5 → Nat,
(∀ i, 0 < a i) ∧
(∀ i j, i ≠ j → a i ≠ a j) ∧
(∀ i j, i ≠ j → ∃ r : Nat, a i * a j + 1 = r ^ 2) := by sorrySource
Bo He, Alain Togbé, and Volker Ziegler, There is no Diophantine quintuple, arXiv:1610.04020v2 (26 March 2018), Section 1, Theorem 1. https://arxiv.org/abs/1610.04020v2
Human review
Confirmed by the mission captain (proposal self-audit).