This semester I have been given a multitude of techniques for discovering if a series converges or diverges with no explanation for why I would need to know this. It would be helpful if I could better understand the importance of knowing if a series converges or diverges. How would this be used in a non-classroom setting?
5 Answers
Without convergence, an infinite series has no value (well, at the level you're working at this is true). Therefore your question is essentially the same as "if I know whether or not an infinite series is meaningful, why does it matter?"
The main reason you're learning about infinite series is because later on in your course you will meet power series, which allow you to approximate complicated functions by the simplest functions of all: polynomials. Those convergence tests help you determine where power series make sense. Infinite series are also used to define new functions (e.g., Bessel functions, zeta-functions, elliptic functions), to extend the meaning of familiar functions to new settings (e.g., the exponential or sine of a matrix or of a complex number), and to solve differential equations (series solutions). This last point was Newton's great discovery: he thought he could solve "any" problem in math by writing the answer as an infinite series and then figuring out what the coefficients had to be to satisfy the problem.

- 46,062
One obvious use: if you know a series converges, say $$S= \sum_{k=0}^{\infty}a_k$$ then you can approximate $S$ as closely as you like by just adding up a finite number of terms:$$S\approx \sum_{k=0}^{N}a_k$$ You can't really "add" the terms in an infinite series -- you can only take a limit of partial sums. But if the series converges, even if you can't find the limit analytically, you can approximate it numerically by simple addition.

- 43,638
-
Why does this explain the importance of knowing whether a series converges? It doesn't describe any application to a problem not already about infinite series themselves. It's like saying convergence of a sequence can be used to estimate the limit. That doesn't really address why you'd want to do it in the first place. – KCd Mar 11 '16 at 00:08
Series have a lot of applications in many fields of mathematics: from the definition of Euler's constant as $\sum_{n=0}^{\infty}\frac{1}{n!}$ to the convergence of a series of functions to another function. Generally, many things can be defined trought series therefore knowing how they work is very important. Just know that you won't have to wait long to apply them in your studies. Last, a little example of an application to a famous paradox.
PS a general note: many things in mathematics were born just because of someone's broad fantasy and seemed to have no application. This could hold true for some time, untill, hundreds of years later someone found an application, like non-euclidean geometry and Einstein's relativity.
-
1"$e$" is not not the Euler constant many people would think of... Maybe better to just call it "basis for the natural logarithms" or something. – paul garrett Mar 11 '16 at 00:29
Many equations don't have "closed form" solutions, but often you can write a solution in the form of an infinite series. In order to actually use that series solution, you will want to approximate it numerically, typically by taking the sum of a finite number of terms and using that as your approximation. Now the question is, can this really give you a good approximation to an actual solution? If the series converges to a solution, then the answer is yes: you can get as good an approximation as you want to that solution by taking the sum of enough terms of the series.

- 448,999
-
If you don't know what the series converges to (can't actually find the limit), how do you find out how good your approximation is, how "far" you are from the actual limit value? – jeremy radcliff Mar 11 '16 at 00:33
-
Convergence of series is exactly what is needed to put trigonometry on rigorous footings. The cosine function is defined as an infinite series.
$\cos(x) = \displaystyle \sum_{n=0}^\infty (-1)^n \frac{x^{2n}}{(2n)!}$
The series converging means essentially that the sum of infinitely many terms "makes sense". And of course we would like trig functions to make sense.
Many facts about trigonometry are much easier to prove sing the series definition rather than the (formally inadequate) definition involving circles. For example the identities
$\displaystyle \frac{\partial }{\partial x} \sin(x) = \cos(x)$
and
$\displaystyle \frac{\partial }{\partial x} \cos(x) = -\sin(x)$
and
$e^{i \pi} +1 =0$
fall out of the series definition very quickly and rigorously.

- 10,300
-
2For $x\in(0,\pi/2)$, and hence for all real arguments, it is possible to define trigonometric functions fully formally in a "school" way using a circle. What we need is a notion of length of a curve there, and this can be done without infinite series. – Wojowu Mar 10 '16 at 20:50
-
This is incorrect. Using power series to define sine and cosine is used to extend their definitions to the complex numbers. – John Douma Mar 10 '16 at 20:53
-
-
4You do not need infinite series to rigorously define the sine and cosine. – John Douma Mar 10 '16 at 20:56
-
Can you explain why the "draw a line and a circle and see where they meet" method does not rely on some equally nontrivial piece of real analysis (for example Bolzano's theorem) to make formal sense? – Daron Mar 10 '16 at 21:00
-
1@Wojowu Of course, you are correct but at the same time if you rigorously follow through with the approach you suggest, you will need to define arc length and then at some point invoke the intermediate value theorem. Arguably none of this is quite elementary although I'd say it's much more intuitively clean than using infinite series per se. – Chan-Ho Suh Mar 11 '16 at 00:34
-
Otherwise, the program will never stop and your computer's memory will run out. See this.
This is quite important in complexity analysis in computer science!
https://cse.sc.edu/~fenner/csce750/course-notes.pdf
– Fraïssé Mar 11 '16 at 00:37