Compute $\sum_{i=0}^{2n} (-3)^i$ by splitting the series into two parts.
How do I split it into two parts? All I can tell so far is that the sum is going to be a positive number (probably) because any $i * 2$ is even, and any negative number to an even power is positive.
Edit:
I split it into $\sum_{i=0}^{n} (-3)^{2i} + \sum_{i=0}^{n - 1} (-3)^{2i + 1}$ but I have no idea where t0 go from there.
Like you said, split the series into even and odd terms that is $$\begin{align} \sum_{i=0}^{2n} (-3)^i &=\sum_{i=0}^{n} (-3)^{2i}+\sum_{i=0}^{n-1} (-3)^{2i+1} \\ &=\sum_{i=0}^{n} 3^{2i}-\sum_{i=0}^{n-1} 3^{2i+1}\\ &= \sum_{i=0}^{n} 3^{2i}-\sum_{i=0}^{n} 3^{2i-1}\end{align}.$$
It is just a calculation now.