Find the sum of three positive consecutive integers a , b and c such that a 2 + b 2 + c 2 = 1 1 0
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.
Or you can use the 3 numbers: x − 1 , x , x + 1 . So the sum of squares are 3 x 2 + 2 = 1 1 0 ⇒ x 2 = 3 6 ⇒ x = 6 ⇒ ( x − 1 ) + x + ( x + 1 ) = 3 x = 1 8 .
Log in to reply
This is a easier solution compared to what I did! Thanks for sharing!
Same Method!
Great solution !
take 3 consecutive numbers x,x+1andx+2. put in given condition which after simplification will lead to a quadratic equation with roots 5 &-7.. since required number being positive 5 is the only choice so required consecutive numbers are 5,6&7 having sum 18...
Problem Loading...
Note Loading...
Set Loading...
Take the first number as a
The next ones are a + 1 = b and a + 2 = c
a 2 + ( a + 1 ) 2 + ( a + 2 ) 2 = 1 1 0
a 2 + a 2 + 1 + 2 a + a 2 + 4 + 4 a = 1 1 0
3 a 2 + 6 a + 5 = 1 1 0
3 a 2 + 6 a + 5 − 1 1 0 = 0
3 a 2 + 6 a − 1 0 5 = 0
Taking 3 as common in all.
3 x ( a 2 + 2 a − 3 5 ) = 3 x 0
a 2 + 2 a − 3 5 = 0
Factorizing it; we get
a − 5 a + 7 = 0
a = 5
a = − 7
As it says positive; 5 must be the first number. Therefore; 5 + 1 = 6 and 5 + 2 = 7
5 + 6 + 7 = 1 8