yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Worked example: convergent geometric series | Series | AP Calculus BC | Khan Academy


2m read
·Nov 11, 2024

Let's get some practice taking sums of infinite geometric series.

So, we have one over here, and just to make sure that we're dealing with the geometric series, let's make sure we have a common ratio.

So, let's see: to go from the first term to the second term, we multiply by ( \frac{1}{3} ). Then, to go to the next term, we are going to multiply by ( \frac{1}{3} ) again, and we're going to keep doing that.

So, we can rewrite the series as ( 8 + 8 \times \frac{1}{3} + 8 \times \left(\frac{1}{3}\right)^2 + 8 \times \left(\frac{1}{3}\right)^3 + \ldots ). Each successive term we multiply by ( \frac{1}{3} ) again.

So, when you look at it this way, you're like, okay, we could write this in sigma notation. This is going to be equal to…

So, the first thing we wrote is equal to this, which is equal to the sum:

The sum can start at zero or at one, depending on how we'd like to do it.

We could say from ( k = 0 ) to infinity. This is an infinite series right here; we’re just going to keep on going forever. So, we have:

[
\sum_{k=0}^{\infty} 8 \times \left(\frac{1}{3}\right)^k
]

Let me just verify that this indeed works, and I always do this just as a reality check, and I encourage you to do the same.

So, when ( k = 0 ), that should be the first term right over here. You get ( 8 \times \left(\frac{1}{3}\right)^0 ), which is indeed ( 8 ).

When ( k = 1 ), that's going to be our second term here. That's going to be ( 8 \times \left(\frac{1}{3}\right)^1 ), which is what we have here.

And so, when ( k = 2 ), that is this term right over here. So, these are all describing the same thing.

Now that we've seen that we can write a geometric series in multiple ways, let's find the sum.

Well, we've seen before, and we proved it in other videos, if you have a sum from ( k = 0 ) to infinity and you have your first term ( a ) times ( r^k ), assuming this converges—so, assuming that the absolute value of your common ratio is less than one—this is what needs to be true for convergence.

This is going to be equal to:

[
\frac{a}{1 - r}
]

This is going to be equal to our first term, which is ( a ), over ( 1 - r ).

If this looks unfamiliar to you, I encourage you to watch the video where we derive the formula for the sum of an infinite geometric series.

But just applying that over here, we are going to get:

This is going to be equal to ( \frac{8}{1 - \frac{1}{3}} ).

We know this is going to converge because the absolute value of ( \frac{1}{3} ) is indeed less than one.

So this is all going to converge to:

[
\frac{8}{1 - \frac{1}{3}} = \frac{8}{\frac{2}{3}} = 8 \times \frac{3}{2} = 12
]

Let's see: this could become, divide ( 8 ) by ( 2 ); that becomes ( 4 ), and so this will become ( 12 ).

More Articles

View All
Undefined limits by direct substitution | Limits and continuity | AP Calculus AB | Khan Academy
Let’s see if we can figure out the limit of x over natural log of x as x approaches one. Like always, pause this video and see if you can figure it out on your own. Well, we know from our limit properties this is going to be the same thing as the limit a…
Watch the Total Solar Eclipse | National Geographic
Hello everyone and welcome to this momentous day. It is the Great American Eclipse day and we’re here with National Geographic and Airbnb on this live stream on Facebook, YouTube, and Periscope. My name is Cara Santa Maria and I am a science communicator.…
Is Meat Really that Bad?
Food is arguably the best thing about being alive. No other bodily pleasure is enjoyed multiple times every day and never gets old. It’s an expression of culture, our parents’ love, and a means of celebration or comfort. That’s why it hits a special nerve…
The Immune System Explained I – Bacteria Infection
Every second of your life, you are under attack. Billions of bacteria, viruses, and fungi are trying to make you their home, so our bodies have developed a super complex little army with guards, soldiers, intelligence, weapons factories, and communicators…
Using a P-value to make conclusions in a test about slope | AP Statistics | Khan Academy
Alicia took a random sample of mobile phones and found a positive linear relationship between their processor speeds and their prices. Here is computer output from a least squares regression analysis on her sample. So just to be clear what’s going on: sh…
Nested function calls | Intro to CS - Python | Khan Academy
Can I call a function from inside another function? Let’s trace what happens and explore why we might want to organize our code this way. When we call a function from the top level of a program, we create a new stack frame and store all our local variabl…