Mister Exam

Other calculators

Sum of series n*x^(6n)



=

The solution

You have entered [src]
  oo        
 ___        
 \  `       
  \      6*n
  /   n*x   
 /__,       
n = 1       
$$\sum_{n=1}^{\infty} n x^{6 n}$$
Sum(n*x^(6*n), (n, 1, oo))
The radius of convergence of the power series
Given number:
$$n x^{6 n}$$
It is a series of species
$$a_{n} \left(c x - x_{0}\right)^{d n}$$
- power series.
The radius of convergence of a power series can be calculated by the formula:
$$R^{d} = \frac{x_{0} + \lim_{n \to \infty} \left|{\frac{a_{n}}{a_{n + 1}}}\right|}{c}$$
In this case
$$a_{n} = n$$
and
$$x_{0} = 0$$
,
$$d = 6$$
,
$$c = 1$$
then
$$R^{6} = \lim_{n \to \infty}\left(\frac{n}{n + 1}\right)$$
Let's take the limit
we find
$$R^{6} = 1$$
$$R = 1$$
The answer [src]
/      6                   
|     x            | 6|    
| ---------    for |x | < 1
|         2                
| /     6\                 
| \1 - x /                 
|                          
<  oo                      
| ___                      
| \  `                     
|  \      6*n              
|  /   n*x      otherwise  
| /__,                     
|n = 1                     
\                          
$$\begin{cases} \frac{x^{6}}{\left(1 - x^{6}\right)^{2}} & \text{for}\: \left|{x^{6}}\right| < 1 \\\sum_{n=1}^{\infty} n x^{6 n} & \text{otherwise} \end{cases}$$
Piecewise((x^6/(1 - x^6)^2, |x^6| < 1), (Sum(n*x^(6*n), (n, 1, oo)), True))

    Examples of finding the sum of a series