Find the sum of three distinct consecutive even numbers whose sum of the squares of two smallest numbers is equal to the square of the largest number?
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.
let a be the smallest even number. to find the three distinct consecutive even numbers: ( a ) 2 + ( a + 2 ) 2 = ( a + 4 ) 2 a 2 + a 2 + 4 a + 4 = a 2 + 8 a + 1 6 2 a 2 + 4 a + 4 = a 2 + 8 a + 1 6 a 2 − 4 a − 1 2 = 0 a 1 = 6 ; a 2 = 2 If you use 2 , then you will get 2 , 0 , 2 which is not consecutive. If you use 6 , then you will get 6 , 8 , 1 0 ( 6 2 + 8 2 = 3 6 + 6 4 = 1 0 0 ) and 6 + 8 + 1 0 = 2 4
Problem Loading...
Note Loading...
Set Loading...
Let three consecutive even numbers be 2 n , 2 n + 2 , 2 n + 4
( 2 n ) 2 + ( 2 n + 2 ) 2 = ( 2 n + 4 ) 2
⇔ n 2 − 2 n − 3 = 0
⇔ n = − 1 , n = 3
Two sets of integers satisfy this condition: ( − 2 , 0 , 2 ) and ( 6 , 8 , 1 0 ) , whose sum are 0 and 24, consecutively.
It should have been more clearly stated that the numbers are positive.