There is a chapter in my math book about pascals triangle. In one of the problems you are supposed to prove that:
$$\sum_{i=0}^n \binom{n}{i} = 2^n$$ where $n$ and $i$ are natural numbers.
My first instinct was to just use the binomial formula:
$$(a+b)^n= \sum_{i=0}^n \binom{n}{i}a^{n-i}b^{i}$$
and let $(a+b)^n = (2+0)^n$ which gives you:
$$(2+0)^n= \sum_{i=0}^n \binom{n}{i}2^{n-i}0^{i} = \binom{n}{0}2^{n-0} 0^0+0 $$ because when $i\ge1$ the rest of the sum will be zero. The thing is that I don't know is if I am allowed to use that $0^0=1$. My math book does not have solutions so I don't know how the author indented the proof should be done. I then went on wikipedia and read that:
Zero to the power of zero, denoted by $0^0$, is a mathematical expression that is either defined as 1 or left undefined, depending on context. In algebra and combinatorics, one typically defines $0^0$ = 1.
So I guess I am allowed? My casio calculator does not allow me to do $0^0=1$ which made me more uncertain. Another way to the proof possibly could have been done is by letting: $(a+b)^n=(1+1)^n$ which would avoid using $0^0=1$. But I have not been able to complete the proof using this method yet.