Divisor Simprocs #
This file implements (d)simprocs to compute various objects related to divisors:
Nat.divisors_ofNat
: computesNat.divisors n
for explicit values ofn
Nat.properDivisors_ofNat
: computesNat.properDivisors n
for explicit values ofn
The dsimproc Nat.divisors_ofNat
computes the finset Nat.divisors n
when n
is a
numeral. For instance, this simplifies Nat.divisors 6
to {1, 2, 3, 6}
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The dsimproc Nat.properDivisors_ofNat
computes the finset Nat.properDivisors n
when
n
is a numeral. For instance, this simplifies Nat.properDivisors 12
to {1, 2, 3, 4, 6}
.
Equations
- One or more equations did not get rendered due to their size.