Translate

Friday, December 31, 2010

Pythagorean Triples, ellipses and hyperbolas

Intriguingly to me, you can connect discrete ellipses and hyperbolas in some simple ways, which is something that I first came across with Pythagorean Triples when I went from my very general Quadratic Diophantine Theorem.

So I noticed that given what is commonly called Pell's Equation, x2 - Dy2 = 1, I had:

(D-1)j2 + (j+1)2 = (x+y)2, where j = ((x+Dy)-1)/D

or

(D-1)j2 + (j-1)2 = (x+y)2, where j = ((x+Dy)+1)/D

which gives a Pythagorean triple whenever D-1 is a square, as j will be an integer for one of them.

For instance with D=2, I have a solution with x=17, y=12, 172 - 2(12)2 = 1, as

j = ((17+2(12)-1)/2 = 20 is a solution giving:

202 + 212 = 292

The equations work in reverse as well, so with a Pythagorean Triple you can solve Pell's Equation. For instance, consider 52 + 122 = 132.

So x+y=13, and notice j-1 = 5, works giving j=6, so D-1 = 4, giving D=5.

And, j = ((x+Dy)+1)/D, gives x+5y = 29. So 4y = 16, and y=4.

So x=9, and 92 - 5(4)2 = 1.

Which I think is rather cool, as there is this deep connection between these equations. Sort of like they know each other and are reflections of something or other.

The discrete hyperbola of Pell's Equation connected to the discrete ellipse of the Pythagorean Triple.

A little later on I re-discovered the parametric solution to Pell's Equation:

y = 2t/(D - t2) and x = (D + t2)/(D - t2)

Which, of course, was known to Fermat. Notice with it you can get ellipses or hyperbolas dependent on the sign of D.

For my re-derivation go to an earlier post.

Though finding parametric solutions is trivial, as consider:

(n2 - t2)2 - (n2 - 2t2)n2 = t4, so n4 - 2n2t2 + t4 - n4 + 2n2t2 = t4

It seems worth mentioning that an easy set of solutions to Pell's Equation, come from situations like:

if D+2 is a perfect square, then D = n2 - 2 for some natural number n, as then

(n2 - 1)2 - (n2 - 2)n2 = 1, so n4 - 2n2 + 1 - n4 + 2n2 = 1.

Which has other variations like when D-2 is a perfect square.

So then notice also that:

(n2 - 3)j2 + (j+1)2 = (x+y)2, where j = ((x+Dy)-1)/D

or

(n2 - 3)j2 + (j-1)2 = (x+y)2, where j = ((x+Dy)+1)/D

is trivial to solve discretely.


James Harris

Sunday, December 05, 2010

Approximating square roots, easier math?

Here's a fun little result which uses what mathematicians usually call Pell's Equation to find rational approximations to square roots, which was what the earlier mathematicians often used it for anyway, where I also get to sneak in one of my own research findings.

The base equation then is: x2 - Dy2 = 1

Where we want integer solutions, for instance, with D=2: (3)2 - 2(2)2 = 1, and

(17)2 - 2(12)2 = 1, are solutions.

But notice that 17/12 is approximately 1.416, which is close to the sqrt(2).

One result of mine is that given:

u2 + Dv2 = F.

it must be true that

(u-Dv)2 + D(u+v)2 = F(D+1)

which is a general result where I can use u=x, v=y, D = -2, and use it twice to get:

(3x+4y)2 - 2(2x + 3y)2 = 1

so we can easily find another solution using x = 17, y = 12, from above.

So: (3(17)+4(12))2 - 2(2(17) + 3(12))2 = 1

Which is: (99)2 - 2(70)2 = 1

And that gives the slightly more impressive approximation of: 99/70 is about: 1.4142

And if you're bored you can just keep going! Where now x=99 and y=70. And it works out to infinity with ever more precise approximations to sqrt(2). (Next one is: x=577, y=408, and 577/408 is approximately 1.41421.)

Ok, so sqrt(2) is easy, but what about others? Sorry that trick works best for sqrt(2), as I'm sticking to easy. Given one solution to Pell's Equation there are other ways to get new solutions besides my equation which works so simply with D=2.

Finding solutions to Pell's Equation that are integers can be difficult in general, but in some cases it's very easy. For instance, if D+2 is a perfect square then x=D+1, and y = (D-1)/2 are solutions.

For instance, with D=7: 7+2 is a square as it is 9, so x=8:

82 - 7*32 = 1

And that is just one trick for some easy solutions. To see more you can see one of my more complicated posts (swinging for the fences) called Pell's Equation Basics.

But regardless of what more of my research you consider, just be thankful for modern computers which make getting square roots easy, as earlier mathematicians had to figure them out, or rely on approximate tables, where if you needed more precision, you needed to work it out for yourself, versus just asking a computer.

And that need drove research. But for modern people these mathematical tidbits are just curiosities maybe useful for an idle afternoon playing with fractions simply for the fun of it!


James Harris