From daa8f3ad21e978f245f9e6d6ec43c6b7a2bb34ca Mon Sep 17 00:00:00 2001 From: Alexander Molnar <37451552+BTmathic@users.noreply.github.com> Date: Mon, 15 Jul 2019 09:27:45 -0400 Subject: [PATCH] Added content to stub (#34325) Added definitions and examples --- .../direct-comparison-test-series/index.md | 43 ++++++++++++++++--- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/guide/english/mathematics/direct-comparison-test-series/index.md b/guide/english/mathematics/direct-comparison-test-series/index.md index 21f36efca4..2966f9d64e 100644 --- a/guide/english/mathematics/direct-comparison-test-series/index.md +++ b/guide/english/mathematics/direct-comparison-test-series/index.md @@ -3,13 +3,46 @@ title: Direct Comparison Test Series --- ## Direct Comparison Test Series -This is a stub. Help our community expand it. +The (direct) comparison test is a tool that can sometimes be used to determine if a [series](https://en.wikipedia.org/wiki/Series_(mathematics)) converges or diverges. Loosely speaking, if a series is 'smaller' than one that converges, it converges, or if it is 'bigger' than one that diverges, it diverges. -This quick style guide will help ensure your pull request gets accepted. +Let Σ an be a series with each an a non-negative real number, and Σ bn another series of real numbers. Then the comparison test is the following two statements: - +- If Σ bn converges and there exists some N such that and 0 ≤ an ≤ bn for all n ≥ N, then Σ an converges. +- If Σ bn diverges and there is some N such that 0 ≤ bn ≤ an for all n ≥ N, then Σ an diverges. -#### More Information: - +### Examples +Suppose we have the series Σ an where an = 1/n3. We want to find out if this series converges or not, so let's try to compare it to another series. For instance, the [famous sum](https://en.wikipedia.org/wiki/Basel_problem) Σ 1/n2, which is known to converge. We have n3 ≥ n2 for all n ≥ 1, so +
1/n2 ≥ 1/n3 for all n ≥ 1.
+ +Hence, by the comparison test, Σ 1/n3 converges. (Note that the comparison test doesn't give any clue as to what the series converges to. That is a different problem altogether, and is usually quite a lot more difficult than simply determining *if* a series converges.) + +As another example, suppose we wish to determine if the series Σ n/[n2 - cos2(n)] converges or diverges. For this, note that + +n/[n2 - cos2(n)] > n/n2 = 1/n
+ +as cos2(n) ≥ 0 for any n. But the [harmonic series](https://en.wikipedia.org/wiki/Harmonic_series_(mathematics)) is well-known to diverge, and so by the comparison test our series must diverge as well. + +### More general series + +The constraint of requiring our series to only have non-negative values is very strict, so what can be said if we allow negative numbers? We can get almost the exact same result if, instead of convergence, we only look for [absolute convergence](https://en.wikipedia.org/wiki/Absolute_convergence). Namely, if we have our two series Σ an and Σ bn where the an are *any* real numbers (or even complex numbers), then + +- If Σ bn converges and there exists some N such that and 0 ≤ |an| ≤ |bn| for all n ≥ N, then Σ an absolutely converges. +- If Σ bn is not absolutely convergent and there is some N such that 0 ≤ |bn| ≤ |an| for all n ≥ N, then Σ an is not absolutely convergent. + +Where |.| is the [real](https://en.wikipedia.org/wiki/Absolute_value#Real_numbers) or [complex](https://en.wikipedia.org/wiki/Absolute_value#Complex_numbers) aboslute value depending on whether the series is real or complex. + +The only real difference between the two cases is that the divergent case is replaced with *not absolutely convergent*. The reason for this is because when working with series that can have negative or complex values, it is possible to [conditionally converge](https://en.wikipedia.org/wiki/Conditional_convergence) instead of merely diverge. + +### Examples + +Does the following series absolutely converge or not? + +Σ (-1)n [sqrt(n + 3) - sqrt(n)]
+ +Here, we see that + +sqrt(n + 3) - sqrt(n) ≥ sqrt(n + 1) - sqrt(n),
+ +and the series Σ sqrt(n + 1) - sqrt(n) [telescopes](https://en.wikipedia.org/wiki/Telescoping_series) in a way that we see does not converge absolutely. Hence, by the comparison test, our original series does not converge absolutely. (Note that it does, however, [converge](https://en.wikipedia.org/wiki/Alternating_series_test), so we can see precisely why the statement of the comparison test cannot simply be about the two series diverging but must instead about not absolutely converging.)