[Math] Find the highest power of two in the expression.

combinatoricsdiscrete mathematicselementary-number-theory

What would be the highest power of two in the given expression?

$32!+33!+34!+35!+…+87!+88!+89!+90!\ ?$

I know there are 59 terms involved. I also know the powers of two in each term. I found that $32!$ has 31 two's. If we take 32! out of every term the resulting 59 terms has 2 odd terms and 57 even terms. So it is an even number of the form $2K$. So min possible highest power of 2 will be 32. But I don't know how to calculate the exact value. Surely, We cannot go term by term.

Can anyone throw light in this matter?

Best Answer

You've simply stopped calculating one step too soon! You've shown that that expression, with $32!$ divided out is divisible by $2$, but if you just checked whether it was divisible by $4$, you would see that it is indeed not. In particular, the divided expression would be $$\frac{32!}{32!}+\frac{33!}{32!}+\frac{34!}{32!}+\frac{35!}{32!}+\frac{36!}{32!}+\ldots+\frac{90!}{32!}$$ Now, take this mod $4$. All but the first four terms are eliminated, since $4$ divides each of them (as each has $36$ as a factor). However, the first four terms, mod $4$ are $1,\,1,\,2,\,2$, which sums to $2$ mod $4$. Ergo, $2^{33}$ does not divide the original expression, and $2^{32}$ is thus the maximum power of two dividing the expression.

Related Question