pith. machine review for the scientific record. sign in
abbrev

Prime

definition
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.Primes.Basic
domain
NumberTheory
line
36 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.NumberTheory.Primes.Basic on GitHub at line 36.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

used by

formal source

  33/-! ### Local aliases (optional convenience) -/
  34
  35/-- Repo-local alias for Mathlib’s `Nat.Prime` (kept transparent). -/
  36abbrev Prime (n : ℕ) : Prop := Nat.Prime n
  37
  38@[simp] theorem prime_iff (n : ℕ) : Prime n ↔ Nat.Prime n := Iff.rfl
  39
  40end Primes
  41end NumberTheory
  42end IndisputableMonolith