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

Erdős Problem 774

Reference: erdosproblems.com/774

open Finset

We call $A\subset \mathbb{N}$ dissociated if $\sum_{n\in X}n\neq \sum_{m\in Y}m$ for all finite $X,Y\subset A$ with $X\neq Y$.

def Set.IsDissociated (A : Set ) : Prop := { S : Finset | (S : Set ) A }.InjOn fun S n S, n

We call $A$ proportionately dissociated if every finite $B\subset A$ contains a dissociated set of size $\gg \lvert B\rvert$.

In other words, there is a (global) $c > 0$ such that every finite $B \subset A$ contains a dissociated set of size $\geq c|B|$.

def Set.IsProportionatelyDissociated (A : Set ) : Prop := c > (0 : ), (B : Finset ), (B : Set ) A S B, #S c * #B (S : Set ).IsDissociated namespace Erdos774

Is every proportionately dissociated (infinite) set the union of a finite number of dissociated sets?

@[category research open, AMS 5] theorem declaration uses 'sorry'erdos_774 : answer(sorry) (A : Set ), A.Infinite A.IsProportionatelyDissociated (T : Set (Set )), ( S T, S.IsDissociated) T.Finite A = ⋃₀ T := True (A : Set ), A.Infinite A.IsProportionatelyDissociated T, (∀ S T, S.IsDissociated) T.Finite A = ⋃₀ T All goals completed! 🐙 end Erdos774