Prime numbers #
This file deals with the factors of natural numbers.
Important declarations #
Nat.factors n
: the prime factorization ofn
Nat.factors_unique
: uniqueness of the prime factorisation
@[irreducible]
primeFactorsList n
is the prime factorization of n
, listed in increasing order.
Equations
Instances For
@[irreducible]
@[irreducible]
theorem
Nat.primeFactorsList_chain_2
(n : ℕ)
:
List.Chain (fun (x1 x2 : ℕ) => x1 ≤ x2) 2 n.primeFactorsList
theorem
Nat.primeFactorsList_chain'
(n : ℕ)
:
List.Chain' (fun (x1 x2 : ℕ) => x1 ≤ x2) n.primeFactorsList
theorem
Nat.primeFactorsList_sorted
(n : ℕ)
:
List.Sorted (fun (x1 x2 : ℕ) => x1 ≤ x2) n.primeFactorsList
theorem
Nat.eq_of_perm_primeFactorsList
{a b : ℕ}
(ha : a ≠ 0)
(hb : b ≠ 0)
(h : a.primeFactorsList.Perm b.primeFactorsList)
:
For coprime a
and b
, the prime factors of a * b
are the union of those of a
and b
theorem
Nat.dvd_of_primeFactorsList_subperm
{a b : ℕ}
(ha : a ≠ 0)
(h : a.primeFactorsList.Subperm b.primeFactorsList)
:
The sets of factors of coprime a
and b
are disjoint
If p
is a prime factor of a
then p
is also a prime factor of a * b
for any b > 0
theorem
Nat.mem_primeFactorsList_mul_right
{p a b : ℕ}
(hpb : p ∈ b.primeFactorsList)
(ha : a ≠ 0)
:
If p
is a prime factor of b
then p
is also a prime factor of a * b
for any a > 0