Euclidean algorithm for ℕ #
This file sets up a version of the Euclidean algorithm that only works with natural numbers.
Given 0 < a, b
, it computes the unique (w, x, y, z, d)
such that the following identities hold:
a = (w + x) d
b = (y + z) d
w * z = x * y + 1
d
is then the gcd ofa
andb
, anda' := a / d = w + x
andb' := b / d = y + z
are coprime.
This story is closely related to the structure of SL₂(ℕ) (as a free monoid on two generators) and the theory of continued fractions.
Main declarations #
XgcdType
: Helper type in defining the gcd. Encapsulates(wp, x, y, zp, ap, bp)
. wherewp
zp
,ap
,bp
are the variables getting changed through the algorithm.IsSpecial
: Stateswp * zp = x * y + 1
IsReduced
: Statesap = a ∧ bp = b
Notes #
See Nat.Xgcd
for a very similar algorithm allowing values in ℤ
.
A term of XgcdType
is a system of six naturals. They should
be thought of as representing the matrix
[[w, x], [y, z]] = [[wp + 1, x], [y, zp + 1]]
together with the vector [a, b] = [ap + 1, bp + 1].
- wp : ℕ
wp
is a variable which changes through the algorithm. - x : ℕ
- y : ℕ
- zp : ℕ
zp
is a variable which changes through the algorithm. - ap : ℕ
ap
is a variable which changes through the algorithm. - bp : ℕ
bp
is a variable which changes through the algorithm.
Instances For
Equations
- PNat.instInhabitedXgcdType = { default := { wp := default, x := default, y := default, zp := default, ap := default, bp := default } }
Equations
- PNat.XgcdType.instSizeOf = { sizeOf := fun (u : PNat.XgcdType) => u.bp }
The Repr
instance converts terms to strings in a way that
reflects the matrix/vector interpretation as above.
Equations
- One or more equations did not get rendered due to their size.
Another mk
using ℕ and ℕ+
Equations
- PNat.XgcdType.mk' w x y z a b = { wp := (↑w).pred, x := x, y := y, zp := (↑z).pred, ap := (↑a).pred, bp := (↑b).pred }
Instances For
Equations
- u.w = u.wp.succPNat
Instances For
Equations
- u.z = u.zp.succPNat
Instances For
Equations
- u.a = u.ap.succPNat
Instances For
Equations
- u.b = u.bp.succPNat
Instances For
IsSpecial'
is an alternative of IsSpecial
.
Instances For
IsReduced
holds if the two entries in the vector are the
same. The reduction algorithm will produce a system with this
property, whose product vector is the same as for the original
system.
Instances For
IsReduced'
is an alternative of IsReduced
.
Instances For
Properties of division with remainder for a / b.
The following function provides the starting point for our algorithm. We will apply an iterative reduction process to it, which will produce a system satisfying IsReduced. The gcd can be read off from this final system.
Equations
- PNat.XgcdType.start a b = { wp := 0, x := 0, y := 0, zp := 0, ap := ↑a - 1, bp := ↑b - 1 }
Instances For
This is the main reduction step, which is used when u.r ≠ 0, or equivalently b does not divide a.
Equations
Instances For
We will apply the above step recursively. The following result is used to ensure that the process terminates.
The reduction step does not change the product vector.
We can now define the full reduction function, which applies step as long as possible, and then applies finish. Note that the "have" statement puts a fact in the local context, and the equation compiler uses this fact to help construct the full definition in terms of well-founded recursion. The same fact needs to be introduced in all the inductive proofs of properties given below.