Convergent terms, divergent series
If converges, then . Equivalently, if , then the series cannot converge.
The condition does not guarantee convergence of . This applet provides a clear counterexample using a p-series with .
How to use the applet
- Sequence and partial sums used: ,
- Move the slider to display the values up to index .
- Blue points represent the terms .
- Red points represent the partial sums .
- The larger blue/red markers indicate the current values and .
- As increases, the blue points approach : .
- Nevertheless, the red points keep increasing and do not approach a finite limit: diverges, so the series diverges.
- Hold Shift + scroll to zoom
- Hold Shift + drag to move
- Points shaped like <> act as sliders
Description
Reference: Lecture Notes Calculus 1 ( May22,2022 ) Example3.2 ii) page 35
This applet shows an example (similar to the harmonic serie) where the terms converge to , but the series diverges:
Blue points represent the terms . Red points represent the partial sums .
const termPts: JXG.Point[] = [];
const sumPts: JXG.Point[] = [];
for (let n = 0; n <= MAX_N; n++) {
termPts.push(
board.create("point", [n, A[n]], {
...})
);
sumPts.push(
board.create("point", [n, S[n]], {
...})
);
}
Move the slider N and observe that the blue values approach the dashed line (so ), while the red values keep increasing (so does not converge and the series diverges). This is a -series with , so diverges even though .
To highlight the trend, the applet also draws two continuous “trajectory” curves using functiongraph. The first is a continuous model for the terms,
The second is a growth model for the partial sums based on integral comparison,
and since , it indicates that the partial sums grow without bound.
In the code these trajectories are created as:
board.create("functiongraph", [(x) => 1 / Math.cbrt(x + 1), 0, MAX_N], ...);
board.create("functiongraph", [(x) => 1.5 * (Math.pow(x + 1, 2/3) - 1), 0, MAX_N], ...);