How To Test Endpoints For Interval Of Convergence

16 min read

How to Test Endpoints for Interval of Convergence

When dealing with power series, finding the radius of convergence is only half the battle. A common misconception among students is that once the radius $R$ is found, the interval is simply $(-R, R)$. Even so, the power series might actually converge at the very boundaries of that radius. That's why this is where testing endpoints for interval of convergence becomes essential. Without checking these points, you cannot determine whether the interval is open or closed, and you risk submitting an incomplete answer Worth knowing..

To determine the exact interval of convergence, you must plug the endpoints into the original series and analyze the resulting behavior. Because of that, this process requires a different set of tools than the standard Ratio or Root tests used to find $R$. Here is a full breakdown on how to perform endpoint testing effectively.

Understanding the Basics

Before diving into the method, it is crucial to understand the terminology.

  • Power Series: A series of the form $\sum_{n=0}^{\infty} c_n (x - a)^n$.
  • Radius of Convergence ($R$): The distance from the center $a$ to the boundary of the interval where the series converges.
  • Endpoints: The values $x = a - R$ and $x = a + R$. These are the boundaries where the series might converge or diverge.

When you apply the Ratio Test to find $R$, you get an open interval $(a-R, a+R)$. That said, this test tells you the series converges absolutely for all $x$ inside this interval. That said, the Ratio Test is inconclusive at the endpoints because the limit often equals 1. Which means, you must test $x = a-R$ and $x = a+R$ separately using other convergence tests Nothing fancy..

Short version: it depends. Long version — keep reading.

Step-by-Step Guide to Endpoint Testing

Here is the systematic approach to determining if the endpoints belong to the interval of convergence Not complicated — just consistent..

Step 1: Find the Radius of Convergence

First, use the Ratio Test (or Root Test) to find $R$.

$L = \lim_{n \to \infty} \left| \frac{c_{n+1}}{c_n} \right|$

If $L \neq 0$, then $R = \frac{1}{L}$. On top of that, if $L = 0$, then $R = \infty$ (the series converges everywhere, so there are no endpoints to test). If $L = \infty$, then $R = 0$ (the series only converges at the center).

Step 2: Identify the Endpoints

Calculate the two boundary values:

  • Left endpoint: $x_{left} = a - R$
  • Right endpoint: $x_{right} = a + R$

Step 3: Substitute the Endpoint into the Series

Take the original power series $\sum c_n (x-a)^n$ and replace $x$ with the endpoint value And that's really what it comes down to..

  • Case A (Left Endpoint): Substitute $x = a - R$.
    • Since $R = |x-a|$, we know $|x-a| = R$.
    • This usually simplifies to $\sum c_n (-R)^n$ or $\sum c_n (-1)^n R^n$.
  • Case B (Right Endpoint): Substitute $x = a + R$.
    • This usually simplifies to $\sum c_n (R)^n$.

Step 4: Simplify the Series

The goal here is to turn the complex power series into a recognizable series (like a $p$-series, geometric series, or alternating series).

  • Factor out constants: If $R$ is a number, pull it out of the summation.
  • Identify the term structure: Look at the general term $a_n$ to see if it resembles a standard form.

Step 5: Apply Convergence Tests

Since the Ratio Test failed (limit = 1), use these alternative tests:

  1. $n$-th Term Test (Divergence Test):

    • If $\lim_{n \to \infty} a_n \neq 0$, the series diverges.
    • Note: If the limit is zero, the test is inconclusive—you must use another test.
  2. Alternating Series Test (Leibniz's Test):

    • If the series looks like $\sum (-1)^n b_n$ where $b_n > 0$, check:
      • Is $b_n$ decreasing? ($b_{n+1} \le b_n$)
      • Is $\lim_{n \to \infty} b_n = 0$?
    • If both are true, the series converges (conditionally).
  3. Comparison Test / Limit Comparison Test:

    • Compare $a_n$ to a known convergent or divergent series (like $\sum \frac{1}{n^p}$).
  4. Integral Test:

    • If $a_n = f(n)$ where $f(x)$ is positive, continuous, and decreasing, check $\int f(x) dx$.

Common Scenarios and Examples

To make this concrete, let's look at two common types of power series and how they behave at the endpoints.

Scenario 1: The Alternating Series (Conditional Convergence)

Consider the series $\sum_{n=1}^{\infty} \frac{x^n}{n}$.

  1. Find $R$: Using Ratio Test, $R = 1$.
  2. Endpoints: $x = -1$ and $x = 1$.
  3. Test $x = 1$:
    • Series becomes $\sum \frac{1}{n}$.
    • This is the Harmonic Series, which diverges.
    • Result: $x=1$ is not in the interval.
  4. Test $x = -1$:
    • Series becomes $\sum \frac{(-1)^n}{n}$.
    • This is the **Alternating Harmonic Series

This is the Alternating Harmonic Series, which converges conditionally by the Alternating Series Test (the terms ( \frac{1}{n} ) are positive, decreasing, and approach zero). Thus, for the power series ( \sum_{n=1}^{\infty} \frac{x^n}{n} ), the endpoint ( x = -1 ) is included in the interval of convergence, while ( x = 1 ) is not. The interval of convergence is ( [-1, 1) ).

Scenario 2: Absolute Convergence at Both Endpoints

Consider the series ( \sum_{n=1}^{\infty} \frac{x^n}{n^2} ).

  1. Find ( R ): Using the Ratio Test, ( R = 1 ).
  2. Endpoints: ( x = -1 ) and ( x = 1 ).
  3. Test ( x = 1 ): The series becomes ( \sum_{n=1}^{\infty} \frac{1}{n^2} ), a ( p )-series with ( p = 2 > 1 ), which converges absolutely.
  4. Test ( x = -1 ):

Building upon this, we turn to the Alternating Series Test, which evaluates convergence for alternating sequences. That said, thus, through systematic application of these principles, we affirm the series’ validity and conclude its precise nature within the established framework. By examining whether terms diminish to zero while maintaining alternating signs, we confirm the series’ conditional convergence within its domain. Now, such rigorous scrutiny ultimately clarifies the series’ behavior, guiding further analysis. This process underscores the necessity of meticulous evaluation in determining summability, closing the loop on the investigation Practical, not theoretical..

The official docs gloss over this. That's a mistake.

Test (x = -1): The series becomes

[ \sum_{n=1}^{\infty}\frac{(-1)^{n}}{n^{2}} . ]

Because (\frac{1}{n^{2}}) is positive, decreasing, and tends to zero, the series converges absolutely (the absolute series (\sum 1/n^{2}) is already known to converge). Hence the endpoint (x=-1) is also included.

Putting the pieces together, the interval of convergence for

[ \sum_{n=1}^{\infty}\frac{x^{n}}{n^{2}} ]

is the closed interval ([-1,1]).


5. A Checklist for Endpoint Analysis

Once you come across a new power series, the following quick‑reference checklist can save you time and ensure you don’t miss a subtlety:

Step Action What to Look For
1 Compute the radius (R) Ratio or root test; often yields a simple algebraic expression.
3 Plug in (x = c \pm R) Substitute each endpoint into the original series.
5 Choose a convergence test Absolute convergence → compare to (\sum
2 Write the candidate interval ((c-R,;c+R)) where (c) is the centre.
4 Simplify the resulting series Identify it as a known series (geometric, (p)-series, alternating harmonic, etc.) or express it in a form amenable to standard tests. <br>• Comparison / limit comparison → relate to a benchmark series. Day to day, <br>• Integral test → when terms look like (f(n)) for a decreasing, positive (f). Here's the thing —
6 Record the result Include the endpoint if the series converges (absolute or conditional); exclude it if it diverges. <br>• Alternating series → apply the Alternating Series Test.
7 State the final interval Combine the open interval ((c-R,c+R)) with the endpoint decisions, using brackets ([,]) for inclusion and parentheses ((,)) for exclusion.

6. Why Endpoint Testing Matters

  1. Function Definition – Many analytic functions are defined by their power series on the interval of convergence. Knowing whether the series still converges at the boundary tells us whether the function can be continuously extended to those points.

  2. Uniform Convergence – On a closed subinterval ([c-a,c+a]) with (a<R) the series converges uniformly, which justifies term‑by‑term differentiation and integration. At the endpoints uniform convergence may fail, affecting the validity of those operations.

  3. Physical and Engineering Models – Power series often arise as solutions to differential equations (e.g., Bessel, Legendre, or Fourier series). The behaviour at the radius limits can correspond to physical boundaries (edge of a membrane, horizon of a waveguide, etc.). Ignoring endpoint convergence can lead to models that predict non‑physical infinities Small thing, real impact..

  4. Complex Analysis – In the complex plane the radius of convergence is the distance to the nearest singularity. The boundary circle may contain a mixture of convergent and divergent points, reflecting the layered geometry of analytic continuation.


7. A Slightly More Advanced Example

Consider the series

[ \sum_{n=1}^{\infty}\frac{(2x-3)^{n}}{n;3^{n}} . ]

Step 1 – Radius

[ \lim_{n\to\infty}\Bigl|\frac{a_{n+1}}{a_{n}}\Bigr| = \lim_{n\to\infty}\Bigl|\frac{(2x-3)^{n+1}}{(n+1)3^{,n+1}}\cdot\frac{n3^{,n}}{(2x-3)^{n}}\Bigr| = \Bigl|\frac{2x-3}{3}\Bigr|\lim_{n\to\infty}\frac{n}{n+1}= \Bigl|\frac{2x-3}{3}\Bigr|. ]

Convergence requires this limit < 1, so

[ \Bigl|\frac{2x-3}{3}\Bigr|<1\quad\Longrightarrow\quad |2x-3|<3. ]

Thus

[ -3<2x-3<3;\Longrightarrow;0<x<3. ]

The radius about the centre (c=\tfrac{3}{2}) is (R=\tfrac{3}{2}).

Step 2 – Endpoints

  • (x=0): Substituting gives

    [ \sum_{n=1}^{\infty}\frac{(-3)^{n}}{n;3^{n}}=\sum_{n=1}^{\infty}\frac{(-1)^{n}}{n}, ]

    the alternating harmonic series, which converges conditionally Less friction, more output..

  • (x=3): Substituting gives

    [ \sum_{n=1}^{\infty}\frac{(3)^{n}}{n;3^{n}}=\sum_{n=1}^{\infty}\frac{1}{n}, ]

    the harmonic series, which diverges It's one of those things that adds up..

Step 3 – Interval of Convergence

[ \boxed{[0,,3)} ]

Notice how the series converges at the left endpoint because the terms alternate, but diverges at the right endpoint where all terms are positive Easy to understand, harder to ignore. But it adds up..


8. Quick Pitfalls to Avoid

Pitfall How It Manifests Remedy
Assuming absolute convergence at an endpoint because the original series converges The series may converge only conditionally (e.g.So , alternating harmonic). Explicitly test absolute convergence: examine (\sum
Forgetting to simplify the endpoint series before testing You might try a complicated test on a series that is actually a known one. This leads to Reduce the series to a familiar form (geometric, (p)-series, alternating) first.
Using the Ratio Test on the endpoint series The Ratio Test is inconclusive when the limit equals 1, which is typical at the boundary. Switch to Alternating, Comparison, Integral, or other appropriate tests. And
Ignoring the centre shift Writing the interval as ((-R,R)) when the series is centred at (c\neq0) leads to an incorrect interval. Always translate back to the original variable: (c\pm R).
Assuming uniform convergence on the closed interval Uniform convergence fails at points where only conditional convergence holds. Verify uniform convergence separately (e.g., via the Weierstrass M‑test) if needed.

Worth pausing on this one.


9. Concluding Thoughts

Determining the interval of convergence for a power series is a two‑step dance:

  1. Radius – A mechanical application of the Ratio or Root Test gives you the “safe zone” where the series behaves nicely.
  2. Endpoints – Here the analysis becomes a little more artful. Each endpoint is a fresh series that must be examined with the full toolbox of convergence tests. The outcome may be absolute, conditional, or divergent, and each scenario has distinct implications for the underlying function.

By mastering this routine, you gain a reliable method for answering questions such as:

  • “Where does this series represent an analytic function?”
  • “Can I differentiate term‑by‑term up to the boundary?”
  • “Will the series model a physical phenomenon without blowing up at the edge?”

Remember that the interval of convergence is not merely a technicality; it is the precise domain where the infinite sum becomes a legitimate, usable expression. With the systematic approach outlined above—and the checklist to keep you on track—you can tackle any power‑series convergence problem with confidence.

Happy summing!

10. A Worked‑Out Example from Start to Finish

Let’s cement the ideas with a fully worked problem that walks through every stage, including the “quick pitfalls” checklist.

Problem.
Find the interval of convergence of

[ \sum_{n=1}^{\infty} \frac{(-1)^{n+1},(x-2)^{n}}{n,3^{,n}} . ]


Step 1 – Identify the centre and write the series in standard form

The series is already centred at (c=2). In the generic power‑series notation

[ \sum_{n=1}^{\infty} a_n (x-c)^n,\qquad a_n=\frac{(-1)^{n+1}}{n,3^{,n}},;c=2 . ]


Step 2 – Compute the radius (R)

Apply the Ratio Test to the absolute values:

[ L=\lim_{n\to\infty}\Bigg|\frac{a_{n+1}}{a_n}\Bigg| =\lim_{n\to\infty}\frac{1/(n+1)3^{,n+1}}{1/n,3^{,n}} =\lim_{n\to\infty}\frac{n}{n+1}\cdot\frac{1}{3}= \frac13 . ]

The series converges when

[ \big|x-2\big|;L < 1\quad\Longrightarrow\quad \big|x-2\big|;\frac13 < 1;\Longrightarrow;|x-2|<3 . ]

Hence the radius of convergence is (R=3) and the candidate interval is

[ (2-3,;2+3) = (-1,;5). ]


Step 3 – Test the left endpoint (x=-1)

Plug (x=-1) into the original series:

[ \sum_{n=1}^{\infty}\frac{(-1)^{n+1}(-1-2)^{n}}{n,3^{,n}} =\sum_{n=1}^{\infty}\frac{(-1)^{n+1}(-3)^{n}}{n,3^{,n}} =\sum_{n=1}^{\infty}\frac{(-1)^{n+1}(-1)^{n}3^{,n}}{n,3^{,n}} =\sum_{n=1}^{\infty}\frac{(-1)^{2n+1}}{n} =-\sum_{n=1}^{\infty}\frac{1}{n}. ]

The terms are all negative and behave like the harmonic series, so the series diverges at (x=-1).

Pitfall check: We avoided the mistake of assuming alternating behaviour; after simplification the signs no longer alternate.


Step 4 – Test the right endpoint (x=5)

Insert (x=5):

[ \sum_{n=1}^{\infty}\frac{(-1)^{n+1}(5-2)^{n}}{n,3^{,n}} =\sum_{n=1}^{\infty}\frac{(-1)^{n+1}3^{,n}}{n,3^{,n}} =\sum_{n=1}^{\infty}\frac{(-1)^{n+1}}{n}. ]

This is the classic alternating harmonic series, which converges conditionally by the Alternating Series Test (the terms (1/n) decrease to zero).

To see whether the convergence is absolute, examine

[ \sum_{n=1}^{\infty}\Bigl|\frac{(-1)^{n+1}}{n}\Bigr| =\sum_{n=1}^{\infty}\frac{1}{n}, ]

the harmonic series, which diverges. Hence the endpoint (x=5) yields conditional convergence Took long enough..


Step 5 – Assemble the final interval

  • Divergence at (x=-1) → exclude the left endpoint.
  • Conditional convergence at (x=5) → include the right endpoint.

[ \boxed{;(-1,;5];} ]


11. Extending the Idea: Power Series in Two Variables

The same principles apply when the series involves two independent variables, e.g It's one of those things that adds up. Surprisingly effective..

[ \sum_{m,n\ge 0} a_{m,n}(x-x_0)^m (y-y_0)^n . ]

Here the “radius” becomes a region of absolute convergence in the ((x,y))‑plane, often a disc (or more generally a polydisc) defined by

[ \sqrt[m+n]{|a_{m,n}|},|x-x_0|^{m}|y-y_0|^{n}<1 . ]

Determining the boundary set can be more involved, but the workflow is identical:

  1. Apply a multivariate Ratio or Root Test to obtain the interior region.
  2. Examine each boundary curve (e.g., (x=x_0\pm R_x) or (y=y_0\pm R_y)) by fixing one variable and testing the resulting single‑variable series.

The “quick pitfalls” table still holds, especially the reminder not to forget the centre shift—now in two dimensions Nothing fancy..


12. Final Checklist – From Start to Finish

Stage Action Typical Test Red Flag
Identify Write series as (\sum a_n (x-c)^n). Missing the centre (c).
Radius Compute (\displaystyle R = \frac{1}{\limsup_{n\to\infty}\sqrt[n]{ a_n }}) or use Ratio Test. Also,
Candidate interval ((c-R,,c+R)). Also, Forgetting to translate back to (x). That said,
Left endpoint Substitute (x=c-R). Simplify. Alternating, p‑series, Comparison, Integral. On the flip side, Assuming alternating when signs cancel. Day to day,
Right endpoint Substitute (x=c+R). Simplify. Consider this: Same toolbox as left. Using Ratio Test on the endpoint series.
Absolute vs conditional Test (\sum a_n ). On top of that,
Uniform convergence (if needed) Apply Weierstrass M‑test or Dirichlet’s test on the closed interval. Assuming uniform convergence automatically. Practically speaking,
Document Record radius, endpoint behaviours, and any conditional convergence notes. Leaving any endpoint unchecked.

Short version: it depends. Long version — keep reading.

Cross‑checking each row prevents the most common mistakes and yields a clean, defensible answer.


13. Conclusion

The interval of convergence is the gateway that tells us where a power series truly behaves like a function. By first pinning down the radius with the mechanical Ratio or Root Test, and then meticulously probing each endpoint with the appropriate convergence tests, we convert a potentially intimidating infinite sum into a well‑defined, usable expression Worth keeping that in mind. Less friction, more output..

Remember:

  • Radius = the safe interior where the series must converge.
  • Endpoints = the delicate frontier where convergence can be absolute, conditional, or absent altogether.
  • Pitfalls = avoid shortcuts; always simplify the endpoint series, test absolute convergence, and keep the centre shift in mind.

Armed with the systematic workflow and the quick‑reference checklist, you can approach any power‑series problem—whether in a single variable, several variables, or even in applied contexts such as solving differential equations or modeling physical systems—with confidence and precision Still holds up..

Happy summing, and may your series always converge where you need them to!


12.5 Common Mistakes and How to Avoid Them

Even experienced students can stumble on subtle aspects of power series convergence. Here are three frequent errors and strategies to sidestep them:

  1. Misidentifying the Centre
    When a series is expressed in terms of ((x - c)^n), the centre (c) directly determines the interval’s location. A common slip is to overlook a shifted variable (e.g., (x - 3) instead of (x + 3)). Always rewrite the series explicitly as (\sum a_n (x - c)^n) before proceeding And that's really what it comes down to. That's the whole idea..

  2. Incorrect Endpoint Simplification
    Substituting (x = c \pm R) into the original series often introduces algebraic pitfalls. To give you an idea, terms may collapse into a simpler form (e.g., ((-1)^n) alternating signs), but this requires careful factoring. Always simplify the general term fully before applying convergence tests.

  3. Overlooking Conditional Convergence
    A series may converge at an endpoint but not absolutely. Failing to distinguish between absolute and conditional convergence can lead to incorrect conclusions about uniform convergence or term-by-term differentiation. Always test (\sum |a_n|) separately.


12.6 Example: A Tricky Endpoint

Consider the series (\displaystyle \sum_{n=1}^\infty \frac{(-1)^n (x - 2)^n}{n \cdot 4^n}).

  • Radius: Using the Ratio Test,
    [ R = \lim_{n \to \infty} \left| \frac{a_n}{a_{n+1
Out Now

What's New

You Might Find Useful

More to Discover

Thank you for reading about How To Test Endpoints For Interval Of Convergence. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home