-
Notifications
You must be signed in to change notification settings - Fork 203
feat(ErdosProblems): 683 #1533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(ErdosProblems): 683 #1533
Conversation
|
Could you state https://www.erdosproblems.com/961 simultaneously? |
Do you mean something like /--
Erdos 961 is equivalent to Erdos 683.
-/
@[category research solved, AMS 11]
theorem erdos_683_equiv_erdos_961 :
(∃ c > 0, ∀ n k : ℕ, 0 < k ∧ k < n → P n k > min (n - k + 1) (k ^ (1 + c))) ↔
(∃ C > 0, ∀ᶠ k in atTop, f k < (log (k : ℝ)) ^ C) := by
sorryafter importing Erdos961? |
|
I was thinking you could prove one in terms of the other |
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem erdos_683 : answer(sorry) ↔ | ||
| (∃ c > 0, ∀ n k : ℕ, 0 < k ∧ k < n → P n k > min (n - k + 1) (k ^ (1 + c))) := by |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think c should have type ℝ here (currently it's ℕ). Similarly below
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem erdos_683 : answer(sorry) ↔ | ||
| (∃ c > 0, ∀ n k : ℕ, 0 < k ∧ k < n → P n k > min (n - k + 1) (k ^ (1 + c))) := by |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The informal has le here instead of lt
| (∃ c > 0, ∀ n k : ℕ, 0 < k ∧ k < n → P n k > min (n - k + 1) (k ^ (1 + c))) := by | |
| (∃ c > 0, ∀ n k : ℕ, 0 ≤ k ∧ k ≤ n → P n k > min (n - k + 1) (k ^ (1 + c))) := by |
Closes #876