/- Copyright 2026 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Green's Open Problem 51

References:

    [Gr24] Green's Open Problems

    [Gr13] B. J. Green, Restriction and Kakeya phenomena, notes from a 2003 course. Available at http://people.maths.ox.ac.uk/greenbj/papers/rkp.pdf

    [Sa11] Sanders, Tom. "Green's sumset problem at density one half." Acta Arithmetica 146.1 (2011): 91-101.

    [Gr02] Green, Ben. "Arithmetic progressions in sumsets." Geometric & Functional Analysis GAFA 12.3 (2002): 584-597.

    [Ruz91] Ruzsa, Imre Z. "Arithmetic progressions in sumsets." Acta Arithmetica 60.2 (1991): 191-202.

open Filter Realopen scoped Pointwise namespace Green51

The largest dimension of a coset guaranteed to be contained in $2A$ for $A \subseteq \mathbb{F}_2^n$ with density $\alpha$.

noncomputable def guaranteedMaxCosetDim (n : ) (α : ) : := sInf { maxCosetDim (ZMod 2) (𝔽₂ n) (A + A) | (A : Finset (𝔽₂ n)) (_h : A.dens α) }

Suppose that $A \subset \mathbb{F}_2^n$ is a set of density $\alpha$. What is the largest size of coset guaranteed to be contained in $2A$?

We phrase this by asking for the exact function $F(\alpha, n)$ giving the maximum dimension of a guaranteed coset.

@[category research open, AMS 5 11] theorem declaration uses 'sorry'green_51 : answer(sorry) = guaranteedMaxCosetDim := sorry = guaranteedMaxCosetDim All goals completed! 🐙

It is known that $A + A$ must contain a coset of dimension $\gg_\alpha n$ [Gr13].

@[category research solved, AMS 5 11] theorem declaration uses 'sorry'green_51.lower : (α : ), 0 < α α 1 c > 0, ∀ᶠ (n : ) in atTop, c * (n : ) guaranteedMaxCosetDim n α := (α : ), 0 < α α 1 c > 0, ∀ᶠ (n : ) in atTop, c * n (guaranteedMaxCosetDim n α) All goals completed! 🐙

It is known that $A + A$ need not contain a coset of dimension $n - \sqrt{n}$ [Gr13].

@[category research solved, AMS 5 11] theorem declaration uses 'sorry'green_51.upper : α > 0, α 1 ∀ᶠ (n : ) in atTop, (guaranteedMaxCosetDim n α : ) < (n : ) - sqrt n := α > 0, α 1 ∀ᶠ (n : ) in atTop, (guaranteedMaxCosetDim n α) < n - n All goals completed! 🐙

Suppose that $A \subset \mathbb{F}_2^n$ has density $\alpha > 1/2 - C/\sqrt{n}$. Does $A + A$ contain a subspace of co-dimension $O_C(1)$? [Sa11, Question 5.1]

@[category research open, AMS 5 11] theorem declaration uses 'sorry'green_51.one_half : answer(sorry) (k : ), 0 < k (c : ), ∀ᶠ (n : ) in atTop, (α : ), α > (1/2 : ) - k / sqrt (n : ) α 1 n guaranteedMaxCosetDim n α + c := True (k : ), 0 < k c, ∀ᶠ (n : ) in atTop, α > 1 / 2 - k / n, α 1 n guaranteedMaxCosetDim n α + c All goals completed! 🐙

The largest length of an arithmetic progression guaranteed to be contained in $A+A$ for $A \subseteq {1, \dots, N}$ with density $\alpha$.

noncomputable def guaranteedMaxAPLength (N : ) (α : ) : := sInf { sSup {l : | s (A + A : Set ), s.IsAPOfLength (l : ℕ∞)} | (A : Finset ) (_hA : A Finset.Icc 1 N) (_h : α * (N : ) A.card) }

It is known that $A + A$ must contain an arithmetic progression of length $\sim \exp(c (\log N)^{1/2})$ [Gr02].

@[category research solved, AMS 5 11] theorem declaration uses 'sorry'green_51.lower_ap : (α : ), 0 < α α 1 c > 0, ∀ᶠ (N : ) in atTop, exp (c * log (N : ) ^ (1/2 : )) guaranteedMaxAPLength N α := (α : ), 0 < α α 1 c > 0, ∀ᶠ (N : ) in atTop, rexp (c * log N ^ (1 / 2)) (guaranteedMaxAPLength N α) All goals completed! 🐙

It is known that $A + A$ need not contain an arithmetic progression of length $\sim \exp(c (\log N)^{2/3})$ [Ruz91].

@[category research solved, AMS 5 11] theorem declaration uses 'sorry'green_51.upper_ap : (α : ), 0 < α α < 1/2 c > 0, ∀ᶠ (N : ) in atTop, guaranteedMaxAPLength N α exp (c * log (N : ) ^ (2/3 : )) := (α : ), 0 < α α < 1 / 2 c > 0, ∀ᶠ (N : ) in atTop, (guaranteedMaxAPLength N α) rexp (c * log N ^ (2 / 3)) All goals completed! 🐙 end Green51