You can put this solution on YOUR website! The sum of the squares of two consecutive positive odd numbers is 650 . Find the numbers
--------------
The easy way:
650/2 = 325
sqrt(325) =~ 18
--> 17 and 19
---------------
The hard way:
x^2 + (x+2)^2 = 650
2x^2 + 4x + 4 = 650
x^2 + 2x - 323 = 0
(x-17)*(x+19) = 0
x = 17
--> 17 & 19