Mister Exam

Other calculators

  • How to use it?

  • Sum of series:
  • x^n/2^n
  • cos2n cos2n
  • sin(n+1/n) sin(n+1/n)
  • nx^(n-1)
  • Identical expressions

  • x^n/ two ^n
  • x to the power of n divide by 2 to the power of n
  • x to the power of n divide by two to the power of n
  • xn/2n
  • x^n divide by 2^n

Sum of series x^n/2^n



=

The solution

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

    Examples of finding the sum of a series