Mister Exam

Other calculators

Sum of series x^n/4^n



=

The solution

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

    Examples of finding the sum of a series