Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

8
  • $\begingroup$ But the point of x = 3 is also convergent. However, the above results do not include the case of x = 3. $\endgroup$ Commented Aug 22, 2020 at 2:56
  • 1
    $\begingroup$ @Montevideo The Ratio Test does not apply to endpoints, only to the radius of convergence. Also, it's a complex disk, so there are other points to check as well, I think. -- Maybe this is the problem: SumConvergence[(1/(3^n + (-2)^n))*(x^n/n) /. x -> 3, n] $\endgroup$ Commented Aug 22, 2020 at 2:58
  • $\begingroup$ SumConvergence[(1/(3^n + (-2)^n))*(x^n/n) /. x -> -3 I, n] doesn't work either. $\endgroup$ Commented Aug 22, 2020 at 3:04
  • 1
    $\begingroup$ @Montevideo That's the n-th term test, and all it shows is that it fails to show divergence. Multiplying the term by n gives an indeterminate result (limit = 1): Limit[n (1/(3^n + (-2)^n) 3^n/n), n -> Infinity]. $\endgroup$ Commented Aug 22, 2020 at 3:11
  • 1
    $\begingroup$ Multiplying by n^2 is too big. If the limit is finite, then good, it's convergent; otherwise it's indeterminate. Mutliplying by n^(1+e) for any e > 1 has the same issue. $\endgroup$ Commented Aug 22, 2020 at 3:29