Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions FormalConjectures/ErdosProblems/741.lean
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,12 @@ theorem erdos_741.variants.lower : answer(sorry) ↔ ∀ A : Set ℕ, 0 < lowerD
Let $A\subseteq \mathbb{N}$ be such that $A+A$ has positive upper density.
Can one always decompose $A=A_1\sqcup A_2$ such that $A_1+A_1$ and $A_2+A_2$
both have positive upper density?

The DeepMind prover agent found a formal proof for this statement
-/
@[category research open, AMS 5]
theorem erdos_741.variants.upper : answer(sorry) ↔ ∀ A : Set ℕ, 0 < upperDensity (A + A) → ∃ A₁ A₂,
@[category research solved, AMS 5, formal_proof using formal_conjectures at
"https://github.com/google-deepmind/formal-conjectures/blob/9d492049e42167b0d2fd58a9e91da3bf160172b5/FormalConjectures/ErdosProblems/741.lean#L228"]
theorem erdos_741.variants.upper : answer(True) ↔ ∀ A : Set ℕ, 0 < upperDensity (A + A) → ∃ A₁ A₂,
A = A₁ ∪ A₂ ∧ Disjoint A₁ A₂ ∧ 0 < upperDensity (A₁ + A₁)
∧ 0 < upperDensity (A₂ + A₂) := by
sorry
Expand Down
Loading