Back to Problems

exists_magic_square_squares

Specification

Does there exist a 3 by 3 matrix such that every entry is a distinct square, and all rows, columns, and diagonals add up to the same value?

Actions

Submit a Proof

Have a proof attempt? Submit it for zero-trust verification.

Submit Proof
Lean 4 Statement
theorem exists_magic_square_squares :
    answer(sorry) ↔ ∃ m : Fin 3 → Fin 3 → ℕ, ∃ t : ℕ,
       m.Injective2 ∧
       (∀ i j, IsSquare (m i j)) ∧
       ∀ i, ∑ j, m i j = t ∧
       ∀ j, ∑ i, m i j = t ∧
       m 0 0 + m 1 1 + m 2 2 = t ∧
       m 0 2 + m 1 1 + m 2 0 = t
ID: Wikipedia__MagicSquareOfSquares__exists_magic_square_squares
Browse 300 unsolved math conjectures formalized in Lean 4
Browse

All Problems

Explore all 300 unsolved conjectures.

View problems →
ASI Prize documentation for formal verification pipeline
Docs

Verification Pipeline

How zero-trust verification works.

Read docs →
Evaluation Results

Recent Submissions

No submissions yet. Be the first to attempt this problem.