Mister Exam

Other calculators

Sum of series x^n-x^(n-1)



=

The solution

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

    Examples of finding the sum of a series