SOLUTION: Find all sets of four consecutive odd integers that are positive and whose sum is at most 25.

Algebra ->  Problems-with-consecutive-odd-even-integers -> SOLUTION: Find all sets of four consecutive odd integers that are positive and whose sum is at most 25.       Log On


   



Question 339334: Find all sets of four consecutive odd integers that are positive and whose sum is at most 25.
Answer by Fombitz(32388) About Me  (Show Source):
You can put this solution on YOUR website!
N%2BN%2B2%2BN%2B4%2BN%2B6%3C25
4N%2B12%3C25
4N%3C13
N%3C13%2F4
Since N must be an integer, then N=3 is the maximum value it can achieve.
Since N must be positive, then N=1 is the minimum value it can achieve.
.
.
.
Two sets of consecutive odd integers: (1,3,5,7) and (3,5,7,9).