You can put this solution on YOUR website! Find two consecutive odd integers such that the square of the first added to 3 times the second is 24
---------------
x is the smaller, x+2 is the other one.
x^2 + 3(x+2) = 24
x^2 + 3x - 18 = 0
(x+6)*(x-3) = 0
x = 3
x = -6
You can do the check.