Documentation

Mathlib.Tactic.Simproc.Divisors

Divisor Simprocs #

This file implements (d)simprocs to compute various objects related to divisors:

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.
    Instances For