Documentation

Mathlib.Data.Nat.Factors

Prime numbers #

This file deals with the factors of natural numbers.

Important declarations #

@[irreducible]

primeFactorsList n is the prime factorization of n, listed in increasing order.

Equations
Instances For
    @[irreducible]
    @[irreducible]
    theorem Nat.primeFactorsList_chain {n a : } :
    (∀ (p : ), Prime pp na p)List.Chain (fun (x1 x2 : ) => x1 x2) a n.primeFactorsList

    primeFactorsList can be constructed inductively by extracting minFac, for sufficiently large n.

    theorem Nat.primeFactorsList_unique {n : } {l : List } (h₁ : l.prod = n) (h₂ : pl, Prime p) :

    Fundamental theorem of arithmetic

    theorem Nat.eq_prime_pow_of_unique_prime_dvd {n p : } (hpos : n 0) (h : ∀ {d : }, Prime dd nd = p) :

    For positive a and b, the prime factors of a * b are the union of those of a and b

    For coprime a and b, the prime factors of a * b are the union of those of a and b

    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

    If p is a prime factor of b then p is also a prime factor of a * b for any a > 0