Erdős Problem 494 #
References:
- erdosproblems.com/494
- [SeSt58] Selfridge, J. L. and Straus, E., On the determination of numbers by their sums of a fixed order. Pacific Journal of Math. (1958), 847-856.
- [Er61] Erdős, Paul, Some unsolved problems. Magyar Tud. Akad. Mat. Kutató Int. Közl. (1961), 221-254.
- [GFS62] Gordon, B. and Fraenkel, A. S. and Straus, E. G., On the determination of sets by the sets of sums of a certain order. Pacific J. Math. (1962), 187--196.
For a finite set $A \subset \mathbb{C}$ and $k \ge 1$, define $A_k$ as the multiset consisting of all sums of $k$ distinct elements of $A$.
Equations
- Erdos494.sumMultiset A k = Multiset.map (fun (s : Finset ℂ) => s.sum id) (Finset.powersetCard k A).val
Instances For
Equations
- Erdos494.Erdos494Unique k card = ∀ (A B : Finset ℂ), A.card = card → B.card = card → Erdos494.sumMultiset A k = Erdos494.sumMultiset B k → A = B
Instances For
Selfridge and Straus [SeSt58] showed that the conjecture is true when $k = 2$ and $|A| \ne 2^l$ for $l \ge 0$. They also gave counterexamples when $k = 2$ and $|A| = 2^l$.
Selfridge and Straus [SeSt58] also showed that the conjecture is true when
- $k = 3$ and $|A| > 6$ or
- $k = 4$ and $|A| > 12$. More generally, they proved that $A$ is determined by $A_k$ (and $|A|$) if $|A|$ is divisible by a prime greater than $k$.
Kruyt noted that the conjecture fails when $|A| = k$, by rotating $A$ around an appropriate point.
Similarly, Tao noted that the conjecture fails when $|A| = 2k$, by taking $A$ to be a set of the total sum 0 and considering $-A$.
Gordon, Fraenkel, and Straus [GRS62] proved that the claim is true for all $k > 2$ when $|A|$ is sufficiently large.
A version in [Er61] by Erdős is product instead of sum, which is false. Counterexample (by Steinerberger): consider $k = 3$ and let $A = \{1, \zeta_6, \zeta_6^2, \zeta_6^4\}$ and $B = \{1, \zeta_6^2, \zeta_6^3, \zeta_6^4\}$.
Equations
- Erdos494.prodMultiset A k = Multiset.map (fun (s : Finset ℂ) => s.prod id) (Finset.powersetCard k A).val