⎝ ⎛ x y y y x y y y z ⎠ ⎞ ⎝ ⎛ a b c ⎠ ⎞ = ⎝ ⎛ a ′ b ′ c ′ ⎠ ⎞ If the above equation holds true, then there exist coprime positive integers x , y , z such that any Pythagorean triple ( a , b , c ) produces another Pythagorean triple ( a ′ , b ′ , c ′ ) .
Find the sum of such x , y , and z .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Beautiful question and a beautiful solution!
Since David gave us matrix notation, we'll solve using matrix techniques!
( a , b , c ) is a Pythagorean triple iff a 2 + b 2 − c 2 = 0 , or ( a b c ) ⎝ ⎛ 1 1 − 1 ⎠ ⎞ ⎝ ⎛ a b c ⎠ ⎞ = 0 . Likewise, for ( a ′ , b ′ , c ′ ) to be a Pythagorean triple we must have ( a b c ) ⎝ ⎛ x y y y x y y y z ⎠ ⎞ ⎝ ⎛ 1 1 − 1 ⎠ ⎞ ⎝ ⎛ x y y y x y y y z ⎠ ⎞ ⎝ ⎛ a b c ⎠ ⎞ = 0 . The former equation must imply the latter for a large number of linearly independent Pythagorean triples ( a , b , c ) . This is only possible if the following matrix equation holds: ⎝ ⎛ x y y y x y y y z ⎠ ⎞ ⎝ ⎛ 1 1 − 1 ⎠ ⎞ ⎝ ⎛ x y y y x y y y z ⎠ ⎞ = ⎝ ⎛ 1 1 − 1 ⎠ ⎞ N , for a constant N . We will start taking N = 1 , and afterward multiply by any common denominator or divide by any common factor if necessary.
Performing the matrix multiplication, we find four independent equations: ⎩ ⎪ ⎪ ⎪ ⎨ ⎪ ⎪ ⎪ ⎧ x 2 = 1 ( 2 x − y ) y = 0 ( x + y − z ) y = 0 2 y 2 − z 2 = − 1 Working with positive numbers only, we derive from the first three equations x = 1 ; y = 2 ; z = 3 , and the fourth equation checks out (remarkably!): 2 ⋅ 2 2 − 3 2 = − 1 .
Since these three values are integer and coprime, there is no need to adjust the constant N . Thus the answer to the problem is 1 + 2 + 3 = 6 .
Great solution!
Problem Loading...
Note Loading...
Set Loading...
Using matrix multiplication, we have a ′ = a x + b y + c y , b ′ = a y + b x + c y , and c ′ = a y + b y + c z . As Pythagorean triples, a 2 + b 2 = c 2 and a ′ 2 + b ′ 2 = c ′ 2 . Therefore, ( a x + b y + c y ) 2 + ( a y + b x + c y ) 2 = ( a y + b y + c z ) 2 , which simplifies to ( x 2 + 2 y 2 − z 2 ) c 2 + 2 ( x y + x y − y 2 ) a b + 2 ( x y + y 2 − y z ) a c + 2 ( y 2 + x y − y z ) b c = 0 , which is true if x 2 + 2 y 2 − z 2 = 0 , 2 x y − y 2 = 0 , and x y + y 2 − y z = 0 .
From 2 x y − y 2 = 0 we have y ( 2 x − y ) = 0 , and since y is a positive integer, y = 2 x .
From x y + y 2 − y z = 0 we have y ( x + y − z ) = 0 , and since y is a positive integer, z = x + y , and since y = 2 x , z = 3 x .
Since y = 2 x and z = 3 x , x 2 + 2 y 2 − z 2 = x 2 + 2 ( 2 x ) 2 − ( 3 x ) 2 = 0 .
So ( x , y , z ) = ( x , 2 x , 3 x ) , and for x , y , and z to be coprime we must have x = 1 , y = 2 , and z = 3 , and 1 + 2 + 3 = 6 .
Alternatively, let a 2 + b 2 = c 2 . Then ( n − a ) 2 + ( n − b ) 2 = ( n + c ) 2 for n = 0 and, as a quadratic, possibly a second value of n . Solving this equation for the other value gives n = 2 a + 2 b + 2 c . Therefore, a ′ = n − a = a + 2 b + 2 c b ′ = n − b = 2 a + b + 2 c c ′ = n + c = 2 a + 2 b + 3 c (We also note that a ′ 2 + b ′ 2 = c ′ 2 , so it is not an extraneous solution.) This means ⎝ ⎛ 1 2 2 2 1 2 2 2 3 ⎠ ⎞ ⎝ ⎛ a b c ⎠ ⎞ = ⎝ ⎛ a ′ b ′ c ′ ⎠ ⎞ Therefore, x = 1 , y = 2 , and z = 3 , and 1 + 2 + 3 = 6 .
This and some other Pythagorean Generator Matrices can be found here .