Lessons from teaching gifted elementary students (Part 8c)

Every so often, I’ll informally teach a class of gifted elementary-school students. I greatly enjoy interacting with them, and I especially enjoy the questions they pose. Often these children pose questions that no one else will think about, and answering these questions requires a surprisingly depth of mathematical knowledge.

Here’s a question I once received, in the students’ original handwriting. They wanted me to add adjacent numbers on the bottom row to produce the number on the next row, building upward until I reached the apex of the triangle. Then, after I reached the top number, they wanted me to take the square root of that number. (Originally, they wanted me to first multiply by 80 before taking the square root, but evidently they decided to take it easy on me.)

And, just to see if I could do it, they wanted me to do all of this without using a calculator. But they were nice and allowed me to use pencil and paper.

PascalProblem

In yesterday’s post, I explained how Pascal’s triangle can be used to conclude

y = \displaystyle \sum_{k=0}^{11} (k+1)^2 {11 \choose k},

thus allowing me to get the top number without getting all of the intermediate steps.

To compute this sum without a calculator, I’ll start rearranging the terms. The reasons for rearranging the terms in this way will become evident later.

y = \displaystyle \sum_{k=0}^{11} (k+1)^2 {11 \choose k}

= \displaystyle \sum_{k=0}^{11} (k^2 + 2k + 1) {11 \choose k}

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

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

= \displaystyle \sum_{k=0}^{11} k(k-1) {11 \choose k} +  \sum_{k=0}^{11} 3k {11 \choose k} + \sum_{k=0}^{11} {11 \choose k}.

The terms of the first sum are clearly equal to 0 when k = 0 and k =1. Also, the $k=0$ term of the second sum is clearly 0. Therefore,

y = \displaystyle \sum_{k=2}^{11} k(k-1) {11 \choose k} +  \sum_{k=1}^{11} 3k {11 \choose k} + \sum_{k=0}^{11} {11 \choose k}.

It doesn’t look like I’ve improved matters much with this rearrangement of y; I’ll continue the solution in tomorrow’s post.

One thought on “Lessons from teaching gifted elementary students (Part 8c)

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.