mathlib documentation

data.nat.factorization

Prime factorizations #

n.factorization is the finitely supported function ℕ →₀ ℕ mapping each prime factor of n to its multiplicity in n. For example, since 2000 = 2^4 * 5^3,

TODO #

noncomputable def nat.factorization (n : ) :

n.factorization is the finitely supported function ℕ →₀ ℕ mapping each prime factor of n to its multiplicity in n.

Equations

Basic facts about factorization #

@[simp]
@[simp]

We can write both n.factorization p and n.factors.count p to represent the power of p in the factorization of n: we declare the former to be the simp-normal form. However, since factorization is a finsupp it's noncomputable. This theorem can also be used in reverse to compute values of factorization n p when required.

theorem nat.eq_of_factorization_eq {a b : } (ha : a 0) (hb : b 0) (h : ∀ (p : ), (a.factorization) p = (b.factorization) p) :
a = b

Every nonzero natural number has a unique prime factorization

@[simp]
@[simp]
@[simp]

The support of n.factorization is exactly n.factors.to_finset

theorem nat.pos_of_mem_factorization {n p : } (hp : p n.factorization.support) :
0 < p
theorem nat.prime.factorization_pos_of_dvd {n p : } (hp : nat.prime p) (hn : n 0) (h : p n) :
theorem nat.factorization_eq_zero_iff (n : ) :
n.factorization = 0 n = 0 n = 1

The only numbers with empty prime factorization are 0 and 1

@[simp]
theorem nat.factorization_mul {a b : } (ha : a 0) (hb : b 0) :

For nonzero a and b, the power of p in a * b is the sum of the powers in a and b

@[simp]
theorem nat.factorization_pow (n k : ) :

For any p, the power of p in n^k is k times the power in n

@[simp]

The only prime factor of prime p is p itself, with multiplicity 1

theorem nat.prime.factorization_pow {p k : } (hp : nat.prime p) :

For prime p the only prime factor of p^k is p with multiplicity k

theorem nat.eq_pow_of_factorization_eq_single {n p k : } (hn : n 0) (h : n.factorization = finsupp.single p k) :
n = p ^ k

If the factorization of n contains just one number p then n is a power of p

theorem nat.prod_factorization_eq_prod_factors {n : } {β : Type u_1} [comm_monoid β] (f : → β) :
n.factorization.prod (λ (p k : ), f p) = ∏ (p : ) in n.factors.to_finset, f p

If a product over n.factorization doesn't use the multiplicities of the prime factors then it's equal to the corresponding product over n.factors.to_finset

theorem nat.factorization_prod {α : Type u_1} {S : finset α} {g : α → } (hS : ∀ (x : α), x Sg x 0) :
(S.prod g).factorization = ∑ (x : α) in S, (g x).factorization

For any p : ℕ and any function g : α → ℕ that's non-zero on S : finset α, the power of p in S.prod g equals the sum over x ∈ S of the powers of p in g x. Generalises factorization_mul, which is the special case where S.card = 2 and g = id.

Equivalence between ℕ+ and ℕ →₀ ℕ with support in the primes. #

theorem nat.prod_pow_factorization_eq_self {f : →₀ } (hf : ∀ (p : ), p f.supportnat.prime p) :

Any finsupp f : ℕ →₀ ℕ whose support is in the primes is equal to the factorization of the product ∏ (a : ℕ) in f.support, a ^ f a.

theorem nat.eq_factorization_iff {n : } {f : →₀ } (hn : n 0) (hf : ∀ (p : ), p f.supportnat.prime p) :
noncomputable def nat.factorization_equiv  :
ℕ+ {f : →₀ | ∀ (p : ), p f.supportnat.prime p}

The equiv between ℕ+ and ℕ →₀ ℕ with support in the primes.

Equations

Factorization and divisibility #

theorem nat.pow_factorization_dvd (n p : ) :
theorem nat.pow_succ_factorization_not_dvd {n p : } (hn : n 0) (hp : nat.prime p) :
¬p ^ ((n.factorization) p + 1) n
theorem nat.factorization_le_iff_dvd {d n : } (hd : d 0) (hn : n 0) :
theorem nat.prime.pow_dvd_iff_le_factorization {p k n : } (pp : nat.prime p) (hn : n 0) :
p ^ k n k (n.factorization) p
theorem nat.prime.pow_dvd_iff_dvd_pow_factorization {p k n : } (pp : nat.prime p) (hn : n 0) :
p ^ k n p ^ k p ^ (n.factorization) p
theorem nat.exists_factorization_lt_of_lt {a b : } (ha : a 0) (hab : a < b) :
∃ (p : ), (a.factorization) p < (b.factorization) p
@[simp]
theorem nat.factorization_div {d n : } (h : d n) :
theorem nat.dvd_iff_div_factorization_eq_tsub (d n : ) (hd : d 0) (hdn : d n) :
theorem nat.dvd_iff_prime_pow_dvd_dvd (n d : ) :
d n ∀ (p k : ), nat.prime pp ^ k dp ^ k n
theorem nat.prod_prime_factors_dvd (n : ) :
∏ (p : ) in n.factors.to_finset, p n
theorem nat.factorization_gcd {a b : } (ha_pos : a 0) (hb_pos : b 0) :

Factorization and coprimes #

For coprime a and b, the power of p in a * b is the sum of the powers in a and b

For coprime a and b, the power of p in a * b is the sum of the powers in a and b

theorem nat.factorization_eq_of_coprime_left {p a b : } (hab : a.coprime b) (hpa : p a.factors) :

If p is a prime factor of a then the power of p in a is the same that in a * b, for any b coprime to a.

theorem nat.factorization_eq_of_coprime_right {p a b : } (hab : a.coprime b) (hpb : p b.factors) :

If p is a prime factor of b then the power of p in b is the same that in a * b, for any a coprime to b.

The prime factorizations of coprime a and b are disjoint

For coprime a and b the prime factorization a * b is the union of those of a and b

Induction principles involving factorizations #

def nat.rec_on_prime_pow {P : Sort u_1} (h0 : P 0) (h1 : P 1) (h : Π (a p n : ), nat.prime p¬p a0 < nP aP ((p ^ n) * a)) (a : ) :
P a

Given P 0, P 1 and a way to extend P a to P (p ^ n * a) for prime p not dividing a, we can define P for all natural numbers.

Equations
  • nat.rec_on_prime_pow h0 h1 h = λ (a : ), a.strong_rec_on (λ (n : ), nat.rec_on_prime_pow._match_1 h0 h1 h n)
  • nat.rec_on_prime_pow._match_1 h0 h1 h (k + 2) = λ (hk : Π (m : ), m < k + 2P m), let p : := (k + 2).min_fac, t : := list.count p (k + 2).factors in _.mpr (h ((k + 2) / p ^ t) p t _ _ _ (hk ((k + 2) / p ^ t) _))
  • nat.rec_on_prime_pow._match_1 h0 h1 h 1 = λ (_x : Π (m : ), m < 1P m), h1
  • nat.rec_on_prime_pow._match_1 h0 h1 h 0 = λ (_x : Π (m : ), m < 0P m), h0
def nat.rec_on_pos_prime_pos_coprime {P : Sort u_1} (hp : Π (p n : ), nat.prime p0 < nP (p ^ n)) (h0 : P 0) (h1 : P 1) (h : Π (a b : ), 1 < a1 < ba.coprime bP aP bP (a * b)) (a : ) :
P a

Given P 0, P 1, and P (p ^ n) for positive prime powers, and a way to extend P a and P b to P (a * b) when a, b are positive coprime, we can define P for all natural numbers.

Equations
def nat.rec_on_prime_coprime {P : Sort u_1} (h0 : P 0) (hp : Π (p n : ), nat.prime pP (p ^ n)) (h : Π (a b : ), 1 < a1 < ba.coprime bP aP bP (a * b)) (a : ) :
P a

Given P 0, P (p ^ n) for all prime powers, and a way to extend P a and P b to P (a * b) when a, b are positive coprime, we can define P for all natural numbers.

Equations
def nat.rec_on_mul {P : Sort u_1} (h0 : P 0) (h1 : P 1) (hp : Π (p : ), nat.prime pP p) (h : Π (a b : ), P aP bP (a * b)) (a : ) :
P a

Given P 0, P 1, P p for all primes, and a way to extend P a and P b to P (a * b), we can define P for all natural numbers.

Equations
  • nat.rec_on_mul h0 h1 hp h = let hp : Π (p n : ), nat.prime pP (p ^ n) := λ (p n : ) (hp' : nat.prime p), nat.rec_on_mul._match_1 h1 hp h p hp' n in nat.rec_on_prime_coprime h0 hp (λ (a b : ) (_x : 1 < a) (_x : 1 < b) (_x : a.coprime b), h a b)
  • nat.rec_on_mul._match_1 h1 hp h p hp' (n + 1) = h p (p ^ n.add 0) (hp p hp') (nat.rec_on_mul._match_1 h1 hp h p hp' n)
  • nat.rec_on_mul._match_1 h1 hp h p hp' 0 = h1
theorem nat.multiplicative_factorization {β : Type u_1} [comm_monoid β] (f : → β) (h_mult : ∀ (x y : ), x.coprime yf (x * y) = (f x) * f y) (hf : f 1 = 1) {n : } :
n 0f n = n.factorization.prod (λ (p k : ), f (p ^ k))

For any multiplicative function f with f 1 = 1 and any n ≠ 0, we can evaluate f n by evaluating f at p ^ k over the factorization of n

theorem nat.multiplicative_factorization' {β : Type u_1} [comm_monoid β] (f : → β) (h_mult : ∀ (x y : ), x.coprime yf (x * y) = (f x) * f y) (hf0 : f 0 = 1) (hf1 : f 1 = 1) {n : } :
f n = n.factorization.prod (λ (p k : ), f (p ^ k))

For any multiplicative function f with f 1 = 1 and f 0 = 1, we can evaluate f n by evaluating f at p ^ k over the factorization of n