I am stuck on proving this statement. I know I can use the definition of the geometric sum to prove this, but I wanted to know how to prove this without external definitions.
Let $P(n)$ be the statement $\forall n \in \mathbb N, \sum_{i=0}^{n-1} 2^i = 2^n - 1$
Proof. Let $n \in \mathbb N$.
Base Case (Let $n = 1$)
$\sum_{i=0}^{1-1} 2^i = 2^1 - 1$
$1 = 1$
Therefore $P(1)$ holds
Induction Step: Let $k \in \mathbb N$
Assume P(k): $\sum_{i=0}^{k-1} 2^ i = 2^k - 1$ is true (Induction Hypothesis)
W.T.P. $P(k + 1): \sum_{i=0}^k 2^i = 2^{k+1} - 1$
Now to prove $P(k+1)$, would I let $2^k$ be equal to $\sum_{i=0}^{k-1} (2^i +1)$, by the induction hypothesis? I'm not sure how to proceed.