Skip to content

Commit 9fbb9e7

Browse files
authored
fix: missing positivity condition in erdos_44.empty_start (#1153)
statement is trivially true by taking `M = 0`
1 parent 5ed3a28 commit 9fbb9e7

File tree

1 file changed

+1
-1
lines changed
  • FormalConjectures/ErdosProblems

1 file changed

+1
-1
lines changed

FormalConjectures/ErdosProblems/44.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ theorem erdos_44.variant : (∀ᵉ (N ≥ (1 : ℕ)) (A ⊆ Finset.Icc 1 N), IsS
6060
The case where we start with an empty set (constructing large Sidon sets).
6161
-/
6262
@[category research open, AMS 5 11]
63-
theorem erdos_44.empty_start : (∀ᵉ (ε > (0 : ℝ)), ∃ᵉ (M : ℕ) (A ⊆ Finset.Icc 1 M),
63+
theorem erdos_44.empty_start : (∀ᵉ (ε > (0 : ℝ)), ∃ᵉ (M > (0 : ℕ)) (A ⊆ Finset.Icc 1 M),
6464
IsSidon A ∧ (1 - ε) * Real.sqrt M ≤ A.card) ↔ answer(sorry) := by
6565
sorry
6666

0 commit comments

Comments
 (0)