Prime factors of nonzero naturals #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
This file defines the factorization of a nonzero natural number n
as a multiset of primes,
the multiplicity of p
in this factors multiset being the p-adic valuation of n
.
Main declarations #
prime_multiset
: Type of multisets of prime numbers.factor_multiset n
: Multiset of prime factors ofn
.
The type of multisets of prime numbers. Unique factorization gives an equivalence between this set and ℕ+, as we will formalize below.
Equations
Instances for prime_multiset
The multiset consisting of a single prime
Equations
- prime_multiset.of_prime p = {p}
We can forget the primality property and regard a multiset of primes as just a multiset of positive integers, or a multiset of natural numbers. In the opposite direction, if we have a multiset of positive integers or natural numbers, together with a proof that all the elements are prime, then we can regard it as a multiset of primes. The next block of results records obvious properties of these coercions.
Equations
- prime_multiset.to_nat_multiset = λ (v : prime_multiset), multiset.map (λ (p : nat.primes), ↑p) v
Equations
prime_multiset.coe
, the coercion from a multiset of primes to a multiset of
naturals, promoted to an add_monoid_hom
.
Equations
- prime_multiset.coe_nat_monoid_hom = {to_fun := coe coe_to_lift, map_zero' := prime_multiset.coe_nat_monoid_hom._proof_1, map_add' := prime_multiset.coe_nat_monoid_hom._proof_2}
Converts a prime_multiset
to a multiset ℕ+
.
Equations
- prime_multiset.to_pnat_multiset = λ (v : prime_multiset), multiset.map (λ (p : nat.primes), ↑p) v
Equations
coe_pnat
, the coercion from a multiset of primes to a multiset of positive
naturals, regarded as an add_monoid_hom
.
Equations
- prime_multiset.coe_pnat_monoid_hom = {to_fun := coe coe_to_lift, map_zero' := prime_multiset.coe_pnat_monoid_hom._proof_1, map_add' := prime_multiset.coe_pnat_monoid_hom._proof_2}
The product of a prime_multiset
, as a ℕ+
.
If a multiset ℕ
consists only of primes, it can be recast as a prime_multiset
.
Equations
- prime_multiset.of_nat_multiset v h = multiset.pmap (λ (p : ℕ) (hp : nat.prime p), ⟨p, hp⟩) v h
If a multiset ℕ+
consists only of primes, it can be recast as a prime_multiset
.
Equations
- prime_multiset.of_pnat_multiset v h = multiset.pmap (λ (p : ℕ+) (hp : p.prime), ⟨↑p, hp⟩) v h
Lists can be coerced to multisets; here we have some results about how this interacts with our constructions on multisets.
Equations
If a list ℕ+
consists only of primes, it can be recast as a prime_multiset
with
the coercion from lists to multisets.
Equations
The product map gives a homomorphism from the additive monoid of multisets to the multiplicative monoid ℕ+.
The prime factors of n, regarded as a multiset
Equations
The product of the factors is the original number
If we start with a multiset of primes, take the product and then factor it, we get back the original multiset.
Positive integers biject with multisets of primes.
Factoring gives a homomorphism from the multiplicative monoid ℕ+ to the additive monoid of multisets.
Factoring a prime gives the corresponding one-element multiset.
We now have four different results that all encode the idea that inequality of multisets corresponds to divisibility of positive integers.
The gcd and lcm operations on positive integers correspond to the inf and sup operations on multisets.
The number of occurrences of p in the factor multiset of m is the same as the p-adic valuation of m.