-
Notifications
You must be signed in to change notification settings - Fork 210
feat: add Green's Open Problem 82 #1897
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: add Green's Open Problem 82 #1897
Conversation
Signed-off-by: krrish175-byte <krrishbiswas175@gmail.com>
| $A \subset \mathbb{Z}$ with $|A| = n$. | ||
| -/ | ||
| @[category research open, AMS 11 42] | ||
| theorem green_82 (n : ℕ) (hn : 1 ≤ n) : |
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.
n probably shouldnt be in the context as usual
| ⨅ (A : Finset ℤ) (_ : A.card = n), | ||
| ({θ : ℝ | θ ∈ Ico 0 1 ∧ ∑ a ∈ A, cos (2 * π * a * θ) = 0} : Set ℝ).ncard = |
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.
Better write this as an inequality and not take sup?
|
The green problem list mentions known bounds, please include them. |
| @[category research open, AMS 11 42] | ||
| theorem green_82 (n : ℕ) (hn : 1 ≤ n) : | ||
| ⨅ (A : Finset ℤ) (_ : A.card = n), | ||
| ({θ : ℝ | θ ∈ Ico 0 1 ∧ ∑ a ∈ A, cos (2 * π * a * θ) = 0} : Set ℝ).ncard = |
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.
This is not what the problem is asking. Why do you have to limit Ico 0 1?
Signed-off-by: krrish175-byte <krrishbiswas175@gmail.com>
|
Thanks for the review. Sorry, I missed those. I have updated the code as you asked for:
Regarding Ico 0 1: Since the trigonometric polynomial is 1-periodic, counting zeros in the fundamental domain [0, 1) seemed like the most direct way to represent the count on R / Z. Let me know if you would prefer using UnitAddCircle instead. Thanks for the review again! |
Closes #1737
This PR formalizes Green's Open Problem 82, which asks: for a finite set A ⊂ ℤ of size n, what is the minimum number of zeros that ∑_{a∈A} cos(2πaθ) must have on ℝ/ℤ?