You can put this solution on YOUR website! Find 3 consecutive even numbers where the product of the smaller two numbers is 64 less than the square of the largest number.
:
"3 consecutive even numbers": x, (x+2), (x+4)
:
" where the product of the smaller two numbers is 64 less than the square of the largest number"
x *(x+2) = (x+4)^2 - 64
:
x^2 + 2x = x^2 + 8x + 16 - 64
:
x^2 - x^2 + 2x - 8x = 16 - 64
:
-6x = -48
x =
x = +8
:
8, 10, 12 are the numbers
:
:
Check solution in the statement:
"the product of the smaller two numbers is 64 less than the square of the largest"
8 * 10 = 144 - 64