Lax242665.BertrandPostulate
Bertrand's postulate
concepts/Lax242665/BertrandPostulate.lean · lax-242665
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
No proof in the archive yet — this claim is open.
In the paper
- page 3 of this submission's paper
Lemma
For every natural number there is a prime number with .
Lean source view on GitHub
| 1 | import Lax242665.Primes |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Bertrand's postulate |
| 6 | type: lemma |
| 7 | --- |
| 8 | For every natural number there is a prime number with |
| 9 | . |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax242665.BertrandPostulate |
| 13 | |
| 14 | /-- For every `n ≥ 1` there is a prime `p` with `n < p ≤ 2n`. -/ |
| 15 | axiom exists_prime_between : |
| 16 | ∀ n : ℕ, 1 ≤ n → ∃ p : ℕ, Primes.Prime p ∧ n < p ∧ p ≤ 2 * n |
| 17 | |
| 18 | end Lax242665.BertrandPostulate |
| 19 |
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