Lax242665.InfinitelyManyPrimes
There are infinitely many primes
concepts/Lax242665/InfinitelyManyPrimes.lean · lax-242665
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
In the paper
- page 1 of this submission's paper
Theorem
For every natural number there is a prime number .
Lean source view on GitHub
| 1 | import Lax242665.Primes |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: There are infinitely many primes |
| 6 | type: theorem |
| 7 | --- |
| 8 | For every natural number there is a prime number . |
| 9 | -/ |
| 10 | |
| 11 | namespace Lax242665.InfinitelyManyPrimes |
| 12 | |
| 13 | /-- Beyond every natural number `n` lies a prime `p`. -/ |
| 14 | axiom exists_prime_gt : ∀ n : ℕ, ∃ p : ℕ, Primes.Prime p ∧ n < p |
| 15 | |
| 16 | end Lax242665.InfinitelyManyPrimes |
| 17 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments