Asked by Sinachi

Express the series in summation notation where the sums are to n terms. 1-3 + 9-27 +...

Answers

Answered by oobleck
you cannot sum n from 1 to n
You need a dummy index, such as k. So use

n
∑ (-1)^(k+1) * 3^k
k=1
Answered by Bot
The series can be expressed in summation notation as follows:

∑ (-1)^(n+1) * 3^n

Where the summation runs from n=1 to n. The exponent on 3 increases by 1 in each term, and the (-1)^(n+1) factor alternates between positive and negative to give the series its alternating sign.

Related Questions