Skip to content

Commit 67859f9

Browse files
Merge branch 'master' into pointwise-ergodic-thm
2 parents df2884f + 798365a commit 67859f9

386 files changed

Lines changed: 11051 additions & 5248 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Archive.lean

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ import Archive.Wiedijk100Theorems.FriendshipGraphs
7474
import Archive.Wiedijk100Theorems.HeronsFormula
7575
import Archive.Wiedijk100Theorems.InverseTriangleSum
7676
import Archive.Wiedijk100Theorems.Konigsberg
77-
import Archive.Wiedijk100Theorems.Partition
7877
import Archive.Wiedijk100Theorems.PerfectNumbers
7978
import Archive.Wiedijk100Theorems.SolutionOfCubicQuartic
8079
import Archive.Wiedijk100Theorems.SumOfPrimeReciprocalsDiverges

Archive/Examples/Kuratowski.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ complements of the closed sets, and `s` and `sᶜ` which are neither closed nor
2222
This reduces `14*13/2 = 91` inequalities to check down to `6*5/2 = 15` inequalities.
2323
We'll further show that the 15 inequalities follow from a subset of 6 by algebra.
2424
25-
There are charaterizations and criteria for a set to be a 14-set in the paper
25+
There are characterizations and criteria for a set to be a 14-set in the paper
2626
"Characterization of Kuratowski 14-Sets" by Eric Langford which we do not formalize.
2727
2828
## Main definitions
@@ -63,7 +63,7 @@ theorem sum_map_theClosedSix_add_compl (s : Set X) :
6363
((theClosedSix s).map fun t ↦ {t} + {tᶜ}).sum = theClosedSix s + theOpenSix s :=
6464
Multiset.sum_map_add
6565

66-
/-- `theFourteen s` can be splitted into 3 subsets. -/
66+
/-- `theFourteen s` can be split into 3 subsets. -/
6767
theorem theFourteen_eq_pair_add_theClosedSix_add_theOpenSix (s : Set X) :
6868
theFourteen s = {s, sᶜ} + theClosedSix s + theOpenSix s := by
6969
rw [add_assoc, ← sum_map_theClosedSix_add_compl]; rfl

Archive/Wiedijk100Theorems/AbelRuffini.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ theorem real_roots_Phi_ge (hab : b < a) : 2 ≤ Fintype.card ((Φ ℚ a b).rootS
143143
Finset.card_insert_of_notMem (mt Finset.mem_singleton.mp hxy)]
144144

145145
theorem complex_roots_Phi (h : (Φ ℚ a b).Separable) : Fintype.card ((Φ ℚ a b).rootSet ℂ) = 5 :=
146-
(card_rootSet_eq_natDegree h (IsAlgClosed.splits_codomain _)).trans (natDegree_Phi a b)
146+
(card_rootSet_eq_natDegree h (IsAlgClosed.splits _)).trans (natDegree_Phi a b)
147147

148148
theorem gal_Phi (hab : b < a) (h_irred : Irreducible (Φ ℚ a b)) :
149149
Bijective (galActionHom (Φ ℚ a b) ℂ) := by

Archive/Wiedijk100Theorems/BallotProblem.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ theorem first_vote_pos :
218218
count_countedSequence, count_countedSequence, one_mul, zero_mul, add_zero,
219219
Nat.cast_add, Nat.cast_one, mul_comm, ← div_eq_mul_inv, ENNReal.div_eq_div_iff]
220220
· norm_cast
221-
rw [mul_comm _ (p + 1), ← Nat.succ_eq_add_one p, Nat.succ_add, Nat.succ_mul_choose_eq,
221+
rw [mul_comm _ (p + 1), add_right_comm, Nat.add_one_mul_choose_eq,
222222
mul_comm]
223223
all_goals simp [(Nat.choose_pos <| le_add_of_nonneg_right zero_le').ne']
224224
· simp

0 commit comments

Comments
 (0)