-
Notifications
You must be signed in to change notification settings - Fork 125
Erdos 1043 #1279
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?
Erdos 1043 #1279
Conversation
| theorem erdos_1043 : | ||
| ∃ (f : ℂ[X]), f.Monic ∧ | ||
| ∀ (u : ℂ), ‖u‖ = 1 ∧ | ||
| volume ((ℝ ∙ u).orthogonalProjection '' levelSet f) > 2 := 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.
should be this instead otherwise there is a contradiction with any u without norm 1:
| volume ((ℝ ∙ u).orthogonalProjection '' levelSet f) > 2 := by | |
| ∀ (u : ℂ), ‖u‖ = 1 → | |
| volume ((ℝ ∙ u).orthogonalProjection '' levelSet f) > 2 := by |
| ∀ (f : ℂ[X]), f.Monic ∧ | ||
| ∃ (u : ℂ), ‖u‖ = 1 ∧ |
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.
| ∀ (f : ℂ[X]), f.Monic ∧ | |
| ∃ (u : ℂ), ‖u‖ = 1 ∧ | |
| ∀ (f : ℂ[X]), f.Monic → | |
| ∃ (u : ℂ), ‖u‖ = 1 ∧ |
| measure at most 3.3. | ||
| -/ | ||
| @[category research solved, AMS 28 30] | ||
| theorem erdos_1043.variants.weak : |
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.
For this variant, we should exclude constant polynomials
fixes #1278