You can put this solution on YOUR website! Find all sets of two consecutive positive odd integers whose sum is no greater than 18
---
Consecutive odd numbers::
2x-1
2x+1
------
Equation:
sum <= 18
-----------
4x <= 18
x <= 4.5
----
2x-1 <= 9-1 <= 8
----
2x+1 <= 9+1 <= 10
------
Cheers,
Stan H.
-----------