Documentation

Mathlib.Data.Finset.NatDivisors

Nat.divisors as a multiplicative homomorphism #

The main definition of this file is Nat.divisorsHom : ℕ →* Finset, exhibiting Nat.divisors as a multiplicative homomorphism from to Finset.

theorem Nat.divisors_mul (m n : ) :

The divisors of a product of natural numbers are the pointwise product of the divisors of the factors.

theorem Nat.Prime.divisors_sq {p : } (hp : Prime p) :
(p ^ 2).divisors = {p ^ 2, p, 1}
theorem Finset.nat_divisors_prod {ι : Type u_1} (s : Finset ι) (f : ι) :
(∏ is, f i).divisors = is, (f i).divisors
theorem Nat.Coprime.mul_injOn_divisors {m n : } (hmn : m.Coprime n) :
Set.InjOn (fun (p : × ) => p.1 * p.2) ↑(m.divisors ×ˢ n.divisors)

Products of divisors taken from coprime naturals are unique.

theorem Nat.Coprime.divisors_mul {m n : } (hmn : m.Coprime n) :
(m * n).divisors = Finset.map { toFun := fun (p : { x : × // x ↑(m.divisors ×ˢ n.divisors) }) => (↑p).1 * (↑p).2, inj' := } (m.divisors ×ˢ n.divisors).attach

A variant of Nat.divisors_mul with a more structured RHS.