Pythagorean triples

621 Views Asked by At

So I am given that $65 = 1^2 + 8^2 = 7^2 + 4^2$ , how can I use this observation to find two Pythagorean triangles with hypotenuse of 65.

I know that I need to find integers $a$ and $b$ such that $a^2 + b^2 = 65^2$, but I don't understand how to derive them from that observation.

Here is my attempt.

$65^2 = (8^2+1^2)(7^2+4^2) = 8^27^2 + 1^24^2 + 1^27^2 + 8^24^2 = (8\cdot7)^2 + 4^2 + 7^2 + (8\cdot4)^2$ but now I am stuck here, any suggestions!

3

There are 3 best solutions below

3
On BEST ANSWER

Use the Brahmagupta-Fibonacci Identity $$(a^2+b^2)(c^2+d^2)=(ac-bd)^2+(ad+bc)^2.$$ This identity can be verified by multiplying out each side, and in nicer ways.

From the Identity, we get $$65^2=(8^2+1^2)(7^2+4^2)=(8\cdot 7-1\cdot 4)^2 +(8\cdot 4+1\cdot 7)^2.$$

We can get another representation of $65^2$ as the sum of two squares by letting $c=4$ and $d=7$.

Remark: The Identity gives the useful result that the product of two numbers, each the sum of two squares, is itself the sum of two squares.

3
On

Hint If $m,n$ are integers then $(m^2-n^2, 2mn, m^2+n^2)$ is a Pytagorean triple.

0
On

As I said we need to solve a system of equations.

The system of equations:

$$\left\{\begin{aligned}&x^2+y^2=z^2\\&q^2+t^2=z^2\end{aligned}\right.$$

the solutions have the form: $$x=4p^4-s^4$$ $$y=4p^2s^2$$ $$q=4ps(2p^2-s^2)$$ $$t=4p^4-8p^2s^2+s^4$$ $$z=4p^4+s^4$$

$p,s,k$ - integers.

Formulas you can write a lot, but will be limited to this. Will make a replacement.

$$a=p^2+s^2-k^2$$

$$b=p^2+s^2+k^2-2pk-2ks$$

$$c=p^2+k^2-s^2+2ps-2kp$$

$$r=s^2+k^2-p^2+2ps-2ks$$

The solution then is.

$$x=2ab$$

$$y=a^2-b^2$$

$$q=2cr$$

$$t=c^2-r^2$$

$$z=a^2+b^2$$