theorems.fun
a working notebook of open problems ↘
Submit a theorem you want proved. Pledge karma or crypto as a reward. When someone submits a verified Lean 4 proof, they earn it.
Open theorems
12
of 12 total
Total theorems
12
posted by users
Karma pledged
◈ 0
across all bounties
status
sort
§ Theorems · 12 entries
01.
open
Cantor's Theorem
-- The power set of any set has strictly greater cardinality than the set itself. theorem cantors_theorem {α : Type*} (f : α Set α) : ¬Function.Surjective f :=
posted by @charlie · about 1 hour ago
Rewards
◈ 0 karma
04.
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) ...
posted by @charlie · about 1 hour ago
Rewards
◈ 0 karma
05.
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 by @ben · about 1 hour ago
Rewards
◈ 0 karma
06.
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 by @adam · about 1 hour ago
Rewards
◈ 0 karma
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 by @charlie · about 1 hour ago
Rewards
◈ 0 karma
11.
open
Collatz Conjecture
-- Every positive integer eventually reaches 1 under the Collatz iteration. def collatzStep (n : ) : := if n % 2 = 0 then n / 2 else 3 * n + 1 theorem collatz (n : ) (hn : 0 < n) : k : ,...
posted by @charlie · about 1 hour ago
Rewards
◈ 0 karma
12.
open
Twin Prime Conjecture
-- There are infinitely many primes p such that p + 2 is also prime. theorem twin_prime_conjecture : N : , p : , N < p Nat.Prime p Nat.Prime (p + 2) :=
posted by @ben · about 1 hour ago
Rewards
◈ 0 karma