Draft — mutable and not usable as a dependency; its citation marks the draft state.

Lax242665.OddPrimeBetween

An odd prime between n and 2n

concepts/Lax242665/OddPrimeBetween.lean · lax-242665

open

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Concept map

    Open claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Evidence

    Each proof establishes this claim relative to its assumptions.

    In the paper

    • page 3 of this submission's paper

    Theorem

    For every natural number n2n \geq 2 there is an odd prime number pp with n<p2nn < p \leq 2n.

    Lean source view on GitHub

    1import Mathlib.Algebra.Ring.Parity
    2import Lax242665.Primes
    3
    4/-!
    5---
    6title: An odd prime between n and 2n
    7type: theorem
    8---
    9For every natural number n2n \geq 2 there is an odd prime number pp with
    10n<p2nn < p \leq 2n.
    11-/
    12
    13namespace Lax242665.OddPrimeBetween
    14
    15/-- For every `n ≥ 2` there is an odd prime `p` with `n < p ≤ 2n`. -/
    16axiom exists_odd_prime_between :
    17 ∀ n : ℕ, 2 ≤ n → ∃ p : ℕ, Primes.Prime p ∧ Odd p ∧ n < p ∧ p ≤ 2 * n
    18
    19end Lax242665.OddPrimeBetween
    20
    Show Proof

    Used by

    none

    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

    Loading discussion…