0

I'm computing a limit to find the radius of convergence of a power series function. I've come to the correct answer it appears, but I'm afraid I might have overstepped the rules of limits, my logic feels a bit fuzzy.

Can someone with more experience tell me if this progression was justifiable? Below we join a ratio test for convergence in progress:

$$\lim \limits_{m \to \infty} \left\lvert \frac{xm(3^{m+1}+5m+9)}{(m+1)(3^m+5m+4)} \right\rvert$$ Step 1: Multiply it all out $$\lim \limits_{m \to \infty} \left\lvert \frac{xm3^{m+1}+x5m^2+xm9}{m3^m+3^m+5m^2+9m+4} \right\rvert$$ Step 2: Since $3^m$ will grow faster than $m^2$, that's the high order term, I'm dropping all lower order terms. This is the part I'm least confident in.

$$\lim \limits_{m \to \infty} \left\lvert \frac{xm3^{m+1}}{m3^m+3^m} \right\rvert$$ $$\lim \limits_{m \to \infty} \left\lvert \frac{xm3^{m+1}}{3^m(m+1)} \right\rvert$$ Order the terms for visual benefit $$\lim \limits_{m \to \infty} \left\lvert \frac{x}{} \frac{3^{m+1}}{3^m} \frac{m}{m+1} \right\rvert$$ Now I cancel the $3m$'s leaving a $3$ in the numerator, and the $\frac{m}{m+1}$ because that goes to $1$ as $m$ goes to $\infty$, leaving: $$\lim \limits_{m \to \infty} \left\lvert 3x \right\rvert$$ Giving a radius of convergence for the original power series (not shown) of $\frac{1}{3}$

Did I follow a safe line of reasoning here, or should I have applied a different approach?

1 Answers1

0

Everything seems correct. You're worried about step 2, since you're "dropping" those terms, but what you're actually doing is $$\lim \limits_{m \to \infty} \left\lvert xm3^{m+1}+x5m^2+xm9 \right\rvert = \lim \limits_{m \to \infty} \left\lvert 3^{m+1}(\frac{xm3^{m+1}}{3^{m+1}}+\frac{x5m^2}{3^{m+1}}+\frac{xm9}{3^{m+1}})\right\rvert $$

Now, it's been proven that exponentials of base > 1 grow faster than any polynomial, as seen here How to prove that exponential grows faster than polynomial? which means those terms approach 0 as m goes to infinity.

Dleep
  • 874
  • Thanks for that, I'm glad I'm on track. I'm trying to piece together your example so I understand why dropping the terms I did works (which seems to be a shortcut that I just don't understand well enough). But with your example of pulling out the 3^m+1 I don't see how that ties in with the long polynomial divisor. That's the part that's really bothering me, I don't see how I would break it up into sums of more simple-to-compute limits. – David Parks May 15 '15 at 06:15