/- Copyright 2025 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

Erdős Problem 881

Reference: erdosproblems.com/881

open Set namespace Erdos881

We interpret "additive basis of order k" as an asymptotic additive basis of order k, using the predicate Set.IsAsymptoticAddBasisOfOrder from additive combinatorics.

A minimal additive basis of order k is a set A such that

    A is an asymptotic additive basis of order k, and

    for every infinite subset B ⊆ A, the complement A \ B is not an asymptotic additive basis of order k.

def IsMinimalAsymptoticAddBasisOfOrder (k : ) (A : Set ) : Prop := A.IsAsymptoticAddBasisOfOrder k B : Set , B A B.Infinite ¬ (A \ B).IsAsymptoticAddBasisOfOrder k

Let A ⊂ ℕ be an additive basis of order k which is minimal in the sense that if B ⊂ A is any infinite set, then A \ B is not a basis of order k.

Must there exist an infinite B ⊂ A such that A \ B is an additive basis of order k + 1?

@[category research open, AMS 5 11] theorem declaration uses 'sorry'erdos_881 : answer(sorry) (k : ) (A : Set ), IsMinimalAsymptoticAddBasisOfOrder k A (B : Set ), B A B.Infinite (A \ B).IsAsymptoticAddBasisOfOrder (k + 1) := True (k : ) (A : Set ), IsMinimalAsymptoticAddBasisOfOrder k A B A, B.Infinite (A \ B).IsAsymptoticAddBasisOfOrder (k + 1) All goals completed! 🐙 end Erdos881