Pythagorean triples are integer solutions to the Pythagorean theorem a^2 + b^2 = c^2 I like triplets but triples seems to be the favored term for right triangle the x side is the hypotenuse the side opposite the right angle
hope this helps!
X = 112
Sorry I had to smoosh the image so it would fit.
This involves quite a lot of arithmetic to do manually.
The first thing you do is to make the first number in row 2 = to 0.
This is done by R2 = -3/2 R1 + R2
so the matrix becomes
( 2 1 1) ( -3 )
( 0 -13/2 3/2) (1/2 )
(5 -1 2) (-2)
Next step is to make the 5 in row 5 = 0
then the -1 must become zero
You aim for the form
( 1 0 0) (x)
(0 1 0) (y)
(0 0 1) ( z)
x , y and z will be the required solutions.
G(x)= x-1
Hope this helps!