Primality claims restated from lax-242665
Lax771644.ExternalPrimes · concepts/Lax771644/ExternalPrimes.lean · lax-771644
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
Two statements phrased over the notion of primality of An Introduction to Lax (), each discharged by the corresponding statement of that submission. They exist so that this submission's proof network contains external nodes belonging to another archive record.
Concept map
Evidence
Lean source view on GitHub
| 1 | import Mathlib.Data.Nat.Notation |
| 2 | import Lax242665.Primes |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Primality claims restated from lax-242665 |
| 7 | type: theorem |
| 8 | --- |
| 9 | Two statements phrased over the notion of primality of *An Introduction to |
| 10 | Lax* (`lax-242665`), each discharged by the corresponding statement of that |
| 11 | submission. They exist so that this submission's proof network contains external |
| 12 | nodes belonging to another archive record. |
| 13 | |
| 14 | # Formalization notes |
| 15 | |
| 16 | The statements are verbatim copies of `lax-242665`'s two claims, so each |
| 17 | proof is the foreign statement itself. Importing `Lax242665.Primes` in the |
| 18 | concept package also puts an external node into the concept DAG. |
| 19 | -/ |
| 20 | |
| 21 | namespace Lax771644.ExternalPrimes |
| 22 | |
| 23 | /-- Every natural number greater than `1` has a prime divisor, in the sense of |
| 24 | `lax-242665`. -/ |
| 25 | axiom e1_has_prime_divisor : ∀ n : ℕ, 1 < n → ∃ p : ℕ, Lax242665.Primes.Prime p ∧ p ∣ n |
| 26 | |
| 27 | /-- Beyond every natural number lies a prime, in the sense of `lax-242665`. -/ |
| 28 | axiom e2_has_larger_prime : ∀ n : ℕ, ∃ p : ℕ, Lax242665.Primes.Prime p ∧ n < p |
| 29 | |
| 30 | end Lax771644.ExternalPrimes |
| 31 |
Formalization notes
The statements are verbatim copies of 's two claims, so each proof is the foreign statement itself. Importing in the concept package also puts an external node into the concept DAG.
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments