I have the following multiple choice question.
What is the convergence radius, $\rho$ for $$\sum_{n=1}^\infty n(-x)^{n-1} $$
$\rho=0$
$\rho = 1$
$\rho = -1$
$\rho = 2$
The sequence doesn't have a convergence radius at all.
My attempt
Call $a_n=n(-x)^{n-1}$. We use the "ratio test". $$\Big| \frac{a_{n+1}}{a_n} \Big| = \Big| \frac{(n+1) \cdot (-x)^n}{n(-x)^{n-1}} \Big|=\Big| \frac{x(n+1)}{n} \Big|$$
We see that $\Big| \frac{x(n+1)}{n} \Big| \rightarrow |x| \: \: \text{for} \: \: n\rightarrow \infty$.
For $x$ to be convergent, we must have $|x|<1$, which finally means that $$-1<x<1 $$ which I assume means that the sequence has a convergence radius of $1$.
However, using Maple to double check, I find that the sequence actually converges when $x>-1$, and there is no upper bound on it. Am I doing something wrong?
Checking with Maple

You asked about Maple. Using the latest version (Maple 2020) one can obtain the following piecewise result, where
xis taken as a parameter.As for the results you found strange, for
x>=1, notice that the Description in the Maple Help page for numeric summation mentions the concept of a "formal" summation.If you force that off by supplying the
formal=falseoption then result would be, for example,You unfortunately wrapped lowercase
sumin a call toevalf. The inner call tosumwill return with theformaloption stripped off, hence the undesired result.