In this video, James Grime shows that the number of $\mathbb{N}$ less than $10^{n+1}$ that have at least one $3$ among their digits is given by this recurrence relation:
$$T_{n+1} = 9T_{n} + 10^{n}\; where\; T_0=1$$
But later in the video, he says it can also be written as:
$$T_n = 10^{n+1} - 9^{n+1}$$
So, I set out to prove they are the same algebraically:
Solving the recurrence relation, I got:
$$T_n = 9^n + 9^{n-1}10 + 9^{n-2}10^2 + ... + 10^n$$
So, can somebody show me a proof to show that:
$$10^{n+1} - 9^{n+1} = 9^n + 9^{n-1}10 + 9^{n-2}10^2 + ... + 10^n$$