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 · 105 entries · page 5/11
41.
closed euclid_lemma
Euclid's lemma
theorem euclid_lemma (p a b : ) (hp : p.Prime) (h : p ∣ a * b) : p ∣ a p ∣ b := hp.dvd_or_dvd h
posted about 1 month ago · proven 20 days ago
Rewards
no reward
42.
closed ivt
Intermediate value theorem
theorem ivt {f : } {a b : } (hab : a ≤ b) (hf : ContinuousOn f (Set.Icc a b)) (y : ) (hy : y ∈ Set.Icc (f a) (f b)) : c ∈ Set.Icc a b, f c = y := intermediate_value_Icc hab hf hy
posted about 1 month ago · proven 20 days ago
Rewards
no reward
43.
closed mean_value_thm
Mean value theorem
theorem mean_value_thm {f : } {a b : } (hab : a < b) (hf : ContinuousOn f (Set.Icc a b)) (hf' : DifferentiableOn f (Set.Ioo a b)) : c ∈ Set.Ioo a b, deriv f c = (f b - f a) / (b - a) := exists_deriv_eq_slope f hab hf hf'
posted about 1 month ago · proven 20 days ago
Rewards
no reward
44.
closed inverse_function_thm
Inverse function theorem (statement)
theorem inverse_function_thm {f : } {a : } (hf : ContDiffAt 1 f a) (hf' : deriv f a ≠ 0) : g : , U ∈ nhds a, x ∈ U, g (f x) = x f (g x) = x := sorry
posted about 1 month ago · proven 20 days ago
Rewards
no reward
45.
closed vandermonde
Vandermonde's identity
theorem vandermonde (m n r : ) : Nat.choose (m + n) r = ∑ k ∈ Finset.range (r + 1), Nat.choose m k * Nat.choose n (r - k) := by rw [Nat.add_choose_eq] rw [Finset.Nat.sum_antidiagonal_eq_sum_range_succ_mk]
posted about 1 month ago · proven 20 days ago
Rewards
no reward
46.
closed geom_sum_finite
Sum of geometric series (finite)
theorem geom_sum_finite {R : Type*} [CommRing R] (x : R) (n : ) (h : x ≠ 1) : (∑ i ∈ Finset.range n, x ^ i) * (x - 1) = x ^ n - 1 := by have _ := h exact geom_sum_mul x n
posted about 1 month ago · proven 20 days ago
Rewards
no reward
47.
closed powerset_card
Cardinality of the power set
theorem powerset_card {α : Type*} [Fintype α] : Fintype.card (Set α) = 2 ^ Fintype.card α := Fintype.card_set
posted about 1 month ago · proven 20 days ago
Rewards
no reward
48.
closed crt
Chinese remainder theorem (coprime moduli)
theorem crt {m n : } (h : Nat.Coprime m n) (a b : ) : x : , x ≡ a [ZMOD m] x ≡ b [ZMOD n] := by by_cases hm : m = 0 · subst hm have hn : n = 1 := by rwa [Nat.Coprime, Nat...
posted about 1 month ago · proven 20 days ago
Rewards
no reward
49.
closed lagrange_thm
Lagrange's theorem (group order divides)
theorem lagrange_thm {G : Type*} [Group G] [Fintype G] (H : Subgroup G) [Fintype H] : Fintype.card H ∣ Fintype.card G := by rw [← Nat.card_eq_fintype_card, ← Nat.card_eq_fintype_card] exact Subgroup...
posted about 1 month ago · proven 20 days ago
Rewards
no reward
50.
closed incl_excl_two
Inclusion–exclusion (two sets)
theorem incl_excl_two {α : Type*} [DecidableEq α] (A B : Finset α) : (A ∪ B).card = A.card + B.card - (A ∩ B).card := by have := Finset.card_union_add_card_inter A B omega
posted about 1 month ago · proven 20 days ago
Rewards
no reward