eli5 how does the sum of infinite terms turns to be a finite value

1.36K views

does this apply only for terms that are less than 1 eg 1 + 1/2 + 1/4…. or does this apply to all ap/gp. I remember studying this, but it’s been so long I remember only the gist.

In: 248

30 Answers

Anonymous 0 Comments

Ok so it often doesn’t, the sun of infinite terms only turns out to be a finite value in very specific circumstances

So I’ll give two explanations, the first is a bit more ELI5 than the other

So really, in your example, it’s a sum of infinite terms 1/2^n with n starting at 0 and going to infinity. So we have 1 + 1/2 + 1/4 + 1/8 + …

For now, let’s ignore that 1, we’ll just talk about every one past that then add the 1 at the end.
So then we have 1/2 + 1/4 + 1/8 + …. Well each time, we’re adding enough to get us to the half way point between where we are and 1. So the first term gets us half way from 0 to 1. Then the next term gets us half way from 1/2 to 1. Then the next term gets us half way from 3/4 to 1…

Each time, we’re adding half of what we need to add to get to 1…so it’ll never quite get to 1, it’ll just get closer and closer, so we say that converges to 1. Now we said we’d add that 1 we ignored so what you described converge to 2. Basically, all sums of infinite sequences do this, where each number added will always get you only part of the way you need to go to get to a certain number

If you’re familiar with limits, there’s a more general way to explain it. Some of how you phrase this leads me to think you know a bit about limits maybe. Even if not, this explanation may still work out:

Let’s call S(n) the sum of the first n terms in this sequence. Note this is a finite sequence, since it’s just n terms long. Now, let’s find this formula. For your above example,

S(1) = 1 = 1/1

S(2) = 1 + 1/2 = 3/2

S(3) = 1 + 1/2 + 1/4 = 15/8

S(4) = 1 + 1/2 + 1/4 + 1/8 = 31/16

So, now we look for a pattern here, we are looking for a formula for calculating the finite sum S(n) for the first n terms, so if you want me to find the sum of the first 127 terms, I can just plug in 127 and find the answer

Well the formula we get is:

S(n) = (2^(n+1) – 1) / 2^n

Or more simply:

S(n) = 2 – 1/2^n

Now, if you’re familiar with limits, it’s quite clear that this one approaches 2 as n gets infinitely large.

This is actually the quite rigorous definition of a sum of an infinite sequence converging (meaning it yields a finite number like you asked about), where you create a formula for the sun of the first n terms (again, it’ll always be a finite number because it’s just adding up n numbers), then look at the limit as n approaches infinity of this formula, if that limit exists, the infinite sum converges and will equal a finite number, if that limit isn’t a finite number, it’s said to diverge, which means it doesn’t equal a finite number.

Shortcuts exist to make determining this easier in many cases, but this definition of finding the formula for the sum of the first n terms then seeing what that formula approaches as n approaches infinity REALLY what it means for this infinite sum to “equal” a finite number (although we don’t say it equals it, we typically say it converges to that number)

You are viewing 1 out of 30 answers, click here to view all answers.