Tetrahedral numbers, exposed!

And now, the triumphant termination to the tantalizing tale of tetrahedral totals!

To sum up so far: we began by observing that the number of gifts in the popular song The Twelve Days of Christmas can be described by tetrahedral numbers. Unsatisfied with adding up tetrahedral numbers by hand, we first experimented with using a computer to calculate them for us, but found even that method had its limits. In search of the way of cunning rather than force, we first developed a formula for calculating the simpler triangular numbers, then made a seemingly unrelated detour to discuss binomial coefficients, and saw an amazing connection between binomial coefficients and Pascal’s triangle. It might not be obvious, but we’re incredibly close to our goal — the pieces are in place; all that remains is to put them together.

The first thing to clear up is why on earth binomial coefficients have anything to do with Pascal’s triangle. Remember, the binomial coefficient

\displaystyle\binom{n}{k} = \frac{n!}{k!(n-k)!}

tells us how many ways there are to choose k things out of n. As we saw last time, if we make a table of binomial coefficients (with n down the side and k along the top), it is exactly the same as Pascal’s triangle, which is formed by a simple rule of addition: to get each new entry in the table, add the entry above it and the one above and to the left.

1
1 1
1 2 1
1 3 3  1
1 4 6  4  1
1 5 10 10 5  1
1 6 15 20 15 6  1
1 7 21 35 35 21 7  1
1 8 28 56 70 56 28 8 1

It’s clear why the left and right sides of Pascal’s triangle are made of all 1’s, and it’s clear why the corresponding binomial coefficients are also equal to 1 (they are of the form \binom{n}{0} or \binom{n}{n} — there’s only one way to choose nothing, or everything). So the real question is, why do binomial coefficients obey the same kind of simple addition rule that creates Pascal’s triangle?

Let’s translate the addition rule of Pascal’s triangle into the language of binomial coefficients. The addition rule says that to get any entry in Pascal’s triangle, you add the entry above it and the one above and to the left; if a particular entry is given by \binom{n}{k}, then the ones above it and above and to the left are \binom{n-1}{k} and \binom{n-1}{k-1} respectively. So the addition rule says that

\displaystyle \binom{n}{k} = \binom{n-1}{k} + \binom{n-1}{k-1}.

Why is this true? There’s actually a simple explanation. Suppose you want to choose k things out of n total things. Take the last of the n things and call it Thing Z. (Z for Zucchini. Yes, zucchini is a fruit.) Clearly, you have exactly two choices when it comes to Thing Z: you can include Thing Z in the k Chosen Things, or not. If you don’t include it, then you still have to choose k things, but now you only have n-1 total things to choose from, so you have \binom{n-1}{k} ways to do it. On the other hand, if you do include Thing Z, then you only have to choose k-1 things from the remaining n-1 to complete your selection; there are \binom{n-1}{k-1} ways to do that. Since these are the only two possibilities, and they obviously don’t overlap, the binomial addition identity is born! Neato! [You can also prove this identity by resorting to the definition of binomial coefficients in terms of factorials; a little massaging of denominators, a little factoring, and hey presto! I’ll leave that as an exercise for the interested reader.]

Cool, now we know why Pascal’s triangle is just binomial coefficients in disguise (or vice versa). But what does all of this have to do with tetrahedral numbers? Well, do you remember what the first few tetrahedral numbers are? Let’s see… the first few triangular numbers are 1, 3, 6, 10, 15, 21… which would make the first few tetrahedral numbers 1, 4, 10, 20, 35, 56… right? Now go back and stare at Pascal’s triangle.

Do you see it?! We can just read off the tetrahedral numbers from the third column of Pascal’s triangle! (Remember, the leftmost column is the zeroth column.) For that matter, the triangular numbers are in the second column. (And yes, the fourth column is the pentatope numbers, a pentatope being the four-dimensional analog of a tetrahedron; pentatope numbers are created from sums of tetrahedral numbers. And the fifth column is…) It’s not too hard to see why this is so: think about the addition rule, and the progression from a column of all 1’s, to a column of the counting numbers, to a column of triangular numbers, to a column of tetrahedral numbers… (if you have trouble figuring out why this works, leave a comment and I’ll explain in more detail).

So the tetrahedral numbers are just the numbers in the third column of Pascal’s triangle. But here’s the punchline: we already know how to compute the entries of Pascal’s triangle, using binomial coefficients! A moment’s thought reveals that the nth tetrahedral number can in fact be given by \binom{n+2}{3} (the “+ 2” is because the first tetrahedral number is actually found in the third row). We can expand this a bit if we want:

\displaystyle T_n = \binom{n+2}{3} = \frac{(n+2)!}{3!(n-1)!} = \frac{(n+2)(n+1)n}{3 \cdot 2 \cdot 1}

Woohoo! Let’s try it:

\displaystyle T_{12} = \binom{12+2}{3} = \frac{14 \cdot 13 \cdot 12}{3 \cdot 2 \cdot 1} = 14 \cdot 13 \cdot 2 = 364.

It works! If you try calculating T_{144} you’ll get \frac{146 \cdot 145 \cdot 144}{3 \cdot 2 \cdot 1} = 508,080 just like we found before. And I’ll leave the fun of calculating T_{1,000,000} to you!

About Brent

Associate Professor of Computer Science at Hendrix College. Functional programmer, mathematician, teacher, pianist, follower of Jesus.
This entry was posted in counting, famous numbers. Bookmark the permalink.

8 Responses to Tetrahedral numbers, exposed!

  1. Jonathan says:

    LOL, I went to a lot of trouble on this own. Scribbled all over the paper nearest at hand. And here’s what I did:

    (I don’t know what formatting works in your comments, so I will write S{1,n}(n^2) and mean by that the sum from 1 to n of n^2, ok?)

    And I know the formula for the sum of the first n squares (n)(n+1)(2n+1)/6, and I will use it.

    So these tetrahedral numbers are the sum of the triangular numbers, iow:

    S{1,n}(n(n+1)/2) =
    (1/2)S{1,n}(n^2) + (1/2)S{1,n}(n) =
    (1/2)[ (n(n+1)(2n+1)/6) + n(n+1)/2)] =
    [(2n^3 + 3n^2 + n)/12] + [(n^2 + n)/4] =
    (2n^3 + 6n^2 + 4n)/12] =
    (n^3 + 3n^2 + n)/6] =
    (n)(n+1)(n+2)/6

    And there I am saying, pretty slick, jonathan, nice factored form, how could it be simpler. And then I read to the bottom of your post. Of course all I have is C(n+2,3)

    I love when things match up.

    Btw, found you via the carnival of mathematics. And glad I did. Wonderful new carnival, that one!

  2. Giofulmine says:

    How appropriate was your article for the Carnival of Mathematics! Martin Gardner write a column for Scientific American about Pascal’s Triangle and triangular numbers, tetrahedral numbers and so on, that was late collected in the book “Mathematical Carnival”…

  3. Brent says:

    @Jonathan: great job working it out for yourself — yes, it’s always fun when you go through a bunch of work and then find that the answer is so simple. It doesn’t mean you’ve wasted your time, it just means that now you’re in a position to fully appreciate the simplicity of it!

    The Carnival of Mathematics is indeed pretty great. I’m glad you’re glad that you found me.

  4. Brent says:

    @Giofulmine: I didn’t know that! I have several collections of Gardner’s columns but apparently I don’t have that one. I’ll have to go look it up.

  5. Brendan says:

    There’s another way of calulating these numbers than you said. I don’t know if it’s related or not, because I just calculated it myself:

    t = (n^3)/6 + (n^2)/2 + n/3

    where t is the tetrahedral number and n is the number for which you are trying to calculate.

    This works for all integers, but using your sample of 144:

    t = 2985984/6 + 20736/2 + 144/3
    t = 497664 + 10368 + 48
    t = 508080

  6. Vanessa says:

    Thank you! Thank you so much! I’ve been having insane trouble trying to get around my Math C assignment (I’m in grade 12, QLD Aus.) and at first I was only going to read your “Tertrahderal numbers, exposed!” but then I saw the “12 days of Christmas” reference I just had to read it all and I’m so glad I did, I actually understand what’s going on now! man… I remember back when math was always this fun… haha
    again, thank you!
    -vanessa

  7. Brent says:

    Hi Vanessa, thanks for leaving a comment — I’m glad you enjoyed it!

  8. Nicola says:

    wow this stuff is amazing, I love the way that maths all fits together like this!
    Thanks for explaining 🙂

Comments are closed.