theorems.fun
a working notebook of open problems ↘
Submit a theorem you want proved. Pledge USDC as a reward. When someone submits a verified Lean 4 proof, they earn it.
Open theorems
12
of 105 total
Total theorems
105
submitted
Proofs verified
229
93 theorems closed
USDC pledged
$ 0.04
funded on Solana
§ Theorems · 12 entries · page 1/2
01.
open
Erdős Problem 1
/-- If $A\subseteq\{1, ..., N\}$ with $|A| = n$ is such that the subset sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$ then $$ N \gg 2 ^ n. $$ -/ @[category research open, AMS 5 11] theorem erdos_1 : C > (0 : ), (N : ) (A : Finset ) (_ : IsSumDistinctSet A N), N ≠ 0 C * 2 ^ A.card < N := by sorry
posted 12 days ago
Rewards
no reward
02.
open
Erdős Problem 602
/-- Does every almost-disjoint family of countably infinite sets whose pairwise intersections all have size ≠ 1 have Property B? Formally: let `α` be any type, let `(A_i)_{i ∈ I}` be a family of countably infinite subsets of `α` such that for all `i ≠ j`, the intersection `A_i ∩ A_j` is finite and `|A_i ∩ A_j| ≠ 1`. Does there exist a 2-colouring `f : α Fin 2` such that no `A_i` is monochromatic? This is an open question about Property B for almost-disjoint families with a forbidden intersection size of 1. **Note:** This generalises the formulation in which the ground set is ``. Since every countably infinite set is in bijection with ``, the two formulations are equivalent, but working over an arbitrary ground type makes the statement apply immediately to, e.g., almost-disjoint families of countable subsets of an uncountable space. -/ @[category research open, AMS 3 5] theorem erdos_602 : answer(sorry) ↔ {α : Type*} {I : Type*} (A : I Set α), ( i, (A i).Countable (A i).Infinite) ( i j, i ≠ j (A i ∩ A j).Finite) ( i j, i ≠ j Set.ncard (A i ∩ A j) ≠ 1) HasPropertyB I A := by sorry
posted 12 days ago
Rewards
no reward
03.
open
Erdős Problem 90
/-- Does every set of $n$ distinct points in $\mathbb{R}^2$ contain at most $n^{1+O(\frac{1}{\log\log n})}$ many pairs which are distance $1$ apart? This was [disproved](https://cdn.openai.com/pdf/74c24085-19b0-4534-9c90-465b8e29ad73/unit-distance-proof.pdf) by an internal model at OpenAI, which constructed (for infinitely many $n$) a set $P$ of $n$ points in $\mathbb{R}^2$ such that the number of unit distance pairs in $P$ is at least $n^{1+c}$, where $c > 0$ is an absolute constant. -/ @[category research solved, AMS 52] theorem erdos_90 : answer(False) ↔ (O : ) (hO : O =O[atTop] (fun n => 1 / (n : ).log.log)), (fun n => (maxUnitDistances n : )) =ᶠ[atTop] fun (n : ) => (n : ) ^ (1 + O n) := by sorry
posted 12 days ago
Rewards
no reward
04.
open
Erdős 26 — thick sequences and Behrend density
/-- Let $A\subset\mathbb{N}$ be infinite such that $\sum_{a \in A} \frac{1}{a} = \infty$. Must there exist some $k\geq 1$ such that almost all integers have a divisor of the form $a+k$ for some $a\in A$? This was formalized in Lean by Alexeev using Aristotle. -/ @[category research solved, AMS 11, formal_proof using lean4 at "https://github.com/plby/lean-proofs/blob/main/src/v4.24.0/ErdosProblems/Erdos26.lean"] theorem erdos_26 : answer(False) ↔ A : , StrictMono A IsThick A k, IsBehrend (A · + k) := by sorry
posted 12 days ago
Rewards
no reward
05.
open
Fermat's Last Theorem
/-- Fermat's Last Theorem is true -/ theorem Wiles_Taylor_Wiles : FermatLastTheorem := by -- Suppose Fermat's Last Theorem is false by_contra h -- then there exists a Frey package obtain ⟨P : FreyPackage⟩ := FreyPackage.of_not_FermatLastTheorem h -- but there is no Frey package exact P.false
posted about 1 month ago
Rewards
no reward
06.
open
Beal's Conjecture
-- If aˣ + bʸ = cᶜ with x, y, z > 2, then a, b, c share a common prime factor. theorem beal (a b c x y z : ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hx : 2 < x) (hy : 2 < y) (hz : 2 < z) (h : a ^ x + b ^ y = c ^ z) : p : , Nat.Prime p p ∣ a p ∣ b p ∣ c :=
posted about 1 month ago
Rewards
no reward
07.
open
Legendre's Conjecture
-- There is always a prime between n² and (n+1)² for every positive n. theorem legendre (n : ) (hn : 0 < n) : p : , n^2 < p p < (n + 1)^2 Nat.Prime p :=
posted about 1 month ago
Rewards
no reward
08.
open
Goldbach's Conjecture
-- Every even integer greater than 2 is the sum of two primes. theorem goldbach (n : ) (hn : 2 < n) (heven : Even n) : p q : , Nat.Prime p Nat.Prime q p + q = n :=
posted about 1 month ago
Rewards
no reward
09.
open
Infinitely Many Mersenne Primes
-- There are infinitely many primes of the form 2ⁿ - 1. theorem inf_mersenne_primes : N : , n : , N < n Nat.Prime (2^n - 1) :=
posted about 1 month ago
Rewards
no reward
10.
open
Odd Perfect Number
-- Does there exist an odd perfect number? -- (A number n is perfect if it equals the sum of its proper divisors.) theorem no_odd_perfect : n : , Odd n ¬(∑ d ∈ Nat.divisors n \ {n}, d = n) :=
posted about 1 month ago
Rewards
no reward