The twin prime conjecture
Lax242665.TwinPrimes · concepts/Lax242665/TwinPrimes.lean · lax-242665
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Conjecture
For every natural number there is a prime number such that is prime as well.
Concept 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 2 of this submission's paper
Lean source view on GitHub
| 1 | import Lax242665.Primes |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: The twin prime conjecture |
| 6 | type: conjecture |
| 7 | --- |
| 8 | For every natural number there is a prime number such that |
| 9 | is prime as well. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax242665.TwinPrimes |
| 13 | |
| 14 | /-- Beyond every natural number `n` lies a prime `p` with `p + 2` prime as |
| 15 | well. -/ |
| 16 | axiom exists_twin_prime_gt : |
| 17 | ∀ n : ℕ, ∃ p : ℕ, Primes.Prime p ∧ Primes.Prime (p + 2) ∧ n < p |
| 18 | |
| 19 | end Lax242665.TwinPrimes |
| 20 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments