Mister Exam

Other calculators

Sum of series x^(n+1)



=

The solution

You have entered [src]
  oo        
 ___        
 \  `       
  \    n + 1
  /   x     
 /__,       
n = 0       
$$\sum_{n=0}^{\infty} x^{n + 1}$$
Sum(x^(n + 1), (n, 0, oo))
The answer [src]
  //   1                 \
  || -----    for |x| < 1|
  || 1 - x               |
  ||                     |
  ||  oo                 |
x*|< ___                 |
  || \  `                |
  ||  \    n             |
  ||  /   x    otherwise |
  || /__,                |
  \\n = 0                /
$$x \left(\begin{cases} \frac{1}{1 - x} & \text{for}\: \left|{x}\right| < 1 \\\sum_{n=0}^{\infty} x^{n} & \text{otherwise} \end{cases}\right)$$
x*Piecewise((1/(1 - x), |x| < 1), (Sum(x^n, (n, 0, oo)), True))

    Examples of finding the sum of a series