@[irreducible, extern lean_nat_gcd]
Computes the greatest common divisor of two natural numbers. The GCD of two natural numbers is the largest natural number that evenly divides both.
In particular, the GCD of a number and 0
is the number itself.
This reference implementation via the Euclidean algorithm is overridden in both the kernel and the compiler to efficiently evaluate using arbitrary-precision arithmetic. The definition provided here is the logical model.
Examples:
Represent a divisor of m * n
as a product of a divisor of m
and a divisor of n
.
@[deprecated Nat.dvdProdDvdOfDvdProd (since := "2025-04-01")]
Represent a divisor of m * n
as a product of a divisor of m
and a divisor of n
.