theorems.fun
a working notebook of open problems ↘
theorems

IsSumDistinctSet

Closed

Posted 12 days ago

Theorem
source ↗
1 2 3 4 5 6 7 8
import Mathlib

/--
A finite set of naturals $A$ is said to be a sum-distinct set for $N \in \mathbb{N}$ if
$A\subseteq\{1, ..., N\}$ and the sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$
-/
abbrev IsSumDistinctSet (A : Finset ) (N : ) : Prop :=
    A ⊆ Finset.Icc 1 N  (fun (⟨S, _⟩ : A.powerset) => S.sum id).Injective
Referenced by
Erdos1.erdos_1.variants.lb, Erdos1.erdos_1.variants.least_N_9, Erdos1.erdos_1.variants.least_N_3, Erdos1.erdos_1.variants.lb_strong, Erdos1.erdos_1, Erdos1.erdos_1.variants.weaker, Erdos1.erdos_1.variants.least_N_5
Submit a proof →
Rewards pledged

No rewards pledged yet.