Mr. James was finding the averages of his monthly profits for his restaurant. He noticed as he calculated the new average of his profits every time he entered one month's profits, the average always returned an integer.
His monthly profits for the 5 months he had his restaurant were 71, 76, 80, 82, 91 (dollars). What was the particular order that Mr. James added the profits in to output an integer average each time?
Work so far:
$\alpha_1, \alpha_2,\alpha_3,\alpha_4,\alpha_5$ represents the sequence of the profits.
$\frac{\alpha_1 + \alpha_2}{2} \in Z$
$\frac{\alpha_1 + \alpha_2 + \alpha_3}{3} \in Z$
$\frac{\alpha_1 + \alpha_2 + \alpha_3 + \alpha_4}{4} \in Z$
$\frac{\alpha_1 + \alpha_2 + \alpha_3 + \alpha_4 + \alpha_5}{5} \in Z$ (given)
$\alpha_1 + \alpha_2 + \alpha_3 + \alpha_4 +\alpha_5 = 400 $
This seems like a problem where one has to use a large amount of deductive reasoning. However, I really don't know where to start and how to prove one term of the sequence must be whatever value.
Start from the beginning. The first two months need to both be odd or both be even. As there are only two odd numbers, try that first. If the first two are $71,91$, the sum so far is $162$ and we need the third month to be a multiple of $3$, but there isn't one available, so the first two month are even. Among the evens there are two that are $1 \pmod 3$ and one that is $2 \pmod 3$ so you only have two choices for the sum of the first two. Only one works. Keep going.
Note that nothing can tell you the order of the first two months.