Is it possible to come up with a combinatorial argument which proves the following identity?
$$a^n - b^n = (a - b)(a^{n – 1} + a^{n – 2}b + \dots + ab^{n – 2} + b^{n – 1})$$
My idea was this:
Consider the number of ways $N$ to distribute $n$ numbered balls into $a$ numbered boxes such that there must be at least $1$ ball among the first $a - b$ boxes. The number of ways to do this is take the total number of ways without restriction, and subtract off the number of ways that all the balls are distributed only among the last $b$ boxes. That is,
$$N = a^n - b^n$$
Alternatively, we can first pick at least $1$ ball(s) and distribute them among the first $a - b$ boxes, and then distribute the remaining balls among the last $b$ boxes. That is,
$$N = \binom{n}{1}(a-b)b^{n-1} + \binom{n}{2}(a-b)^2b^{n-2} + \dots + \binom{n}{n}(a-b)^nb^0$$
However, this does not resemble the required $RHS$ of the identity.