I'm trying to prove that the sum of every row in Pascal triangle is double the previous row by using Pascal's rule:
$${n \choose k} = {n-1 \choose k} + {n-1 \choose k-1}.$$
It's easy for me to understand why is it correct. We can use the rule in order to replace any element to 2 elements from the previous row and to show that way that each row has exactly the same elements of the previous row times $x$. However, I'm struggling to write the general proof.
Try proving that the elements of row $k$ sum to $2^k$. (The row with a 1 is row 0)
Further Hint: Binomial Theorem.