Question 125012: find two consecutive odd numbers whose product is 255 Found 3 solutions by josmiceli, jim_thompson5910, dolly:Answer by josmiceli(19441) (Show Source):
You can put this solution on YOUR website! Let the two odd numbers be x and x+2
Then x(x+2) = 255
==> x^2 + 2x - 255 = 0
==> x^2 + 17x - 15x - 255 = 0
==> x(x+17)-15(x+17) = 0
==> (x+17)(x-15) = 0
==> x+17 = 0 or x-15 = 0
==> x = -17 or x = 15
So the two odd numbers are 15 and 17.
good luck!!