Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion LeanBlockCourse26/P06_Mathlib/S01_PrimeTheorem.lean
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,19 @@ theorem infinitude_of_primes_tfae : [

tfae_have 3 → 4 := by sorry -- Alexandra

tfae_have 5 → 4 := by sorry -- Sammy
tfae_have 5 → 4 := by -- Sammy
intro h S _
rcases Finset.eq_empty_or_nonempty S with SE|SNE
· use 2
constructor
· simp[SE]
· exact Nat.prime_two
· obtain ⟨maxS,h₂⟩ := Finset.max_of_nonempty SNE
obtain⟨p,h₃,h₄⟩ := h maxS
use p
constructor
· have h₅ := GT.gt.lt h₃; exact Finset.notMem_of_max_lt h₅ h₂
· exact h₄

tfae_have 6 → 3 := by
intro h
Expand Down
Loading