Prove $$\sum_{i=1}^n \frac{i}{2^i} = 2-\frac{n+2}{2^n} $$
Pretty trivial to do with induction, but as a practice problem for solving recurrences we have to do this only by repeating $\sum_{i=1}^n (1/2^i) = 1-1/2^n$ and summing the diagonals of the resulting lower triangular matrix.
So for example the first few rows of the matrix..
$1/2$
$1/2^2, 1/2 ^2$
$1/2^3, 1/2 ^3, 1/2^3$
.....
$1/2^n, .............1/2 ^n$
When you sum the diagonals you get $\sum_{k=1}^n (\sum_{i=k}^n 1/2^i)$, but this is basically back where we started. Now what?