Processing math: 100%
18 August 2013

In the previous post, we detailed a Pythagorean triple generator. The technique we used to prove it can be generalized to obtain generators solving other Diophantine equations. Let us illustrate this by giving a unique characterization of primitive triples (a, b, c) such that 2a2+b2=c2.

In a similar way as in the previous post, we define rational number α=a/c, and (m, n) be the coprime pair such that:

bc=1αmn

Using this with the original equation, we obtain:

2α2+(1αmn)2=1

Simplifying this gives us the two following equations:

α=ac=2mnm2+2n2, bc=2n2m2m2+2n2

The following is slightly more involved than when generating Pythagorean triples. Let p be a common prime divisor of 2mn and m2+2n2. If p is different from 2, then p has to divide both m and n which is impossible. Hence the GCD g of 2mn and m2+2n2 is a power of 2 (which of course includes 1).

  1. If g is equal to 1, then 2mn and m2+2n2 are coprime and so: a=2mn, b=2n2m2, and c=m2+2n2.
  2. If g is even, then as it divides m2+2n2 we obtain that m is even too and so n is odd. Let us introduce m2=m2/2. Then ac=mnm2+n2 and bc=n2m2m2+n2. As m is even, m2 is even and so m2+n2 and mn are coprime (as the only common prime factor of 2mn and m2+2n2 is 2). So we obtain that a=mn, b=n2m2, and c=m2+n2.

To sum this up, if (a, b, c) is a triple satisfying 2a2+b2=c2, then there exists a coprime pair (m, n) such that one of the two following equation holds.

a=2mn, b=2n2m2, c=m2+2n2,  with m odd a=mn, b=n2m2, c=m2+n2,  with m even

The converse of this characterization, i.e. checking that for any coprime pair (m, n) the generated a, b, and c, satisfy the original equation is quite easy if we add the restriction that 2n2m2 is positive.

This characterization can be used to uniquely generate all the primitive triples (a, b, c) satisfying the original equation. This is illustrated in this Gist snippet using ocaml. Using it, we can generate all these triples for a+b+c108 in a few seconds. This code is not very optimized as it does not use a Stern-Brocot tree to generate the (m, n) pairs. It has been checked against the brute-force approach for a+b+c up to 104.