Formula for an arithmetic series (Part 6)

In the previous posts of this series, I described two methods of deriving the formula

\displaystyle \sum_{k=1}^n k = \frac{n(n+1)}{2}

The first method concerned reversing the terms of the sum (or, almost equivalently, taking the terms in pairs). The second method used mathematical induction.

Mathematical induction can be applied to arithmetic series as well as other series. However, the catch is that you have to know the answer before proving that the answer actually is correct. By contrast, the first method did not require us to know the answer in advance — it just fell out of the calculation — but it cannot be applied to series that are not arithmetic.

Here’s a third method using the principle of telescoping series. This method has the strengths of the previous two methods: it does not require us to know the answer in advance, and it can also be applied to some other series which are not arithmetic.

To begin, consider the sum

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2]

At this early point, students often object, “Where did that come from?” I’ve said it before but I’ll say it again: I tell them my usual tongue-in-cheek story that this idea comes from the patented Bag of Tricks. Socrates gave the Bag of Tricks to Plato, Plato gave it to Aristotle, it passed down the generations, my teacher taught the Bag of Tricks to me, and I teach it to my students.

In any event, I will evaluate this sum in two different ways.

Step 1. Just write out the terms of the series, starting from k=1 and ending with k =n.

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = [1^2 - 0^2] + [2^2 - 1^2] + [3^2 - 2^2] + \dots + [n^2 - (n-1)^2]

Notice that, on the right-hand side, the 1^2 terms cancel, the 2^2 terms cancel, and so on. In fact, almost everything cancels. The only two terms that aren’t cancelled are the 0^2 and n^2 terms. Therefore,

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = n^2 - 0^2 = n^2

Step 2. Next, we’ll rewrite the original sum by expanding out the terms inside of the sum:

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = \displaystyle \sum_{k=1}^n [k^2 - (k^2 -2k + 1)]

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = \displaystyle \sum_{k=1}^n [2k-1]

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = \displaystyle \sum_{k=1}^n 2k - \displaystyle \sum_{k=1}^n 1

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = 2\displaystyle \sum_{k=1}^n k - \displaystyle \sum_{k=1}^n 1

Step 3. Of course, these different looking answers from Steps 1 and 2 have to be the same, so let’s set them equal to each other:

2\displaystyle \sum_{k=1}^n k - \displaystyle \sum_{k=1}^n 1 = n^2

There is one unknown in this equation, \displaystyle \sum_{k=1}^n k. The second sum is just the constant 1 added to itself n times, and so \displaystyle \sum_{k=1}^n 1 = n. Therefore, we solve for the unknown:

2 \left(\displaystyle \sum_{k=1}^n k \right) - n = n^2

2 \left(\displaystyle \sum_{k=1}^n k \right) = n^2 + n

\displaystyle \sum_{k=1}^n k = \displaystyle \frac{n^2 + n}{2}

green lineThe beauty of this approach is that this approach can be continued. For example, to obtain \displaystyle \sum_{k=1}^n k^2, we begin with

\displaystyle \sum_{k=1}^n [k^3 - (k-1)^3]

Step 1. By telescoping series,

\displaystyle \sum_{k=1}^n [k^3 - (k-1)^3] = n^3 - 0^3 = n^3

Step 2. Using the binomial theorem,

\displaystyle \sum_{k=1}^n [k^3 - (k-1)^3] = \displaystyle \sum_{k=1}^n [k^3 - (k^3 -3k^2+3k- 1)]

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = 3\displaystyle \sum_{k=1}^n k^2 - 3\displaystyle \sum_{k=1}^n k + \displaystyle \sum_{k=1}^n 1

\displaystyle \sum_{k=1}^n [k^2 - (k-1)^2] = 3\displaystyle \sum_{k=1}^n k^2 - 3\left( \frac{n(n+1)}{2} \right) + n

Step 3. Setting these two expressions equal to each other,

3\displaystyle \sum_{k=1}^n k^2 - 3\left( \frac{n(n+1)}{2} \right) + n= n^3

And we eventually conclude that:

\displaystyle \sum_{k=1}^n k^2 = \displaystyle \frac{n(n+1)(2n+1)}{6}

And then this could be continued to obtain closed-form expressions for higher exponents of k.

2 thoughts on “Formula for an arithmetic series (Part 6)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.