Newton's Little Formula
/ 19 min read
Table of Contents
Newton’s Little Formula
NLF is a trick I first learned about in high school, although I learned it as “calculus of finite differences”. Maybe those two are the same thing, I’m not really up-to-date on the semantics.
Simply put, you have a sequence of numbers and you take differences between successive terms, and then differences between successive differences, and so on. If you eventually reach a constant row, you can easily read off a formula for the term of the sequence.
Quick Example
In A Formula of Newton by Eugene F. Krause1, the following problem is given:
Problem Statement: Consider the sequence
What number follows 187 in the sequence?
Finite Differences Pyramid
First, list the sequence and its differences until we get to a constant row:
Newton’s Little Formula
The general formula is:
So in this problem:
Note that when using NLF, the first term in the sequence is the th term. So the number after 187 would be the th:
Unilluminating Examples
While showing this method to Curzon, I think he was quickly underwhelmed by its applications. As I was googling for problems involving NLF, the types of problems that came up were pretty dumb. Here’s a selection of what typically shows up on Google.
Dots in Diamonds
Given the following sequence of figures, find the number of dots in the th figure:
Curzon immediately noticed it was . We then solved it with NLF for fun and made sure the answers matched, but I could tell it was pretty unsatisfying. OK, let’s find something harders.
Lines in Triangles
Same idea, but find the number of lines in the th figure of the sequence below:
We started off on this problem by using NLF. Note there’s secretly a Figure 0 with only 1 dot and 0 lines. This trick allows us to get an extra term without counting the lines of a bigger triangle. It also conveniently makes the indexing of NLF align with the problem statement’s indexing. The difference pyramid looks like this:
You can see the second differences are constant, so the sequence is quadratic.
We apply Newton’s Little Formula:
Finally:
Now I asked him to solve it without using NLF and he quickly noticed a way better solution. There are 3 sets of parallel line segments. Obviously there are the same number of segments in each set because of the symmetry of the problem, and each set is just a triangular number of lines.
So without doing any NLF nonsense, he came up with:
I’ll admit at this point I was starting to feel like NLF was pretty unimpressive. It seemed like it was easier and more satisfying to solve these types of problems using intuitive counting methods.
Trickier Example
Determined to come up with a dot-counting or line-counting problem that would stump him without NLF, I went back to the drawing board and came up with this sequence of figures:
His first idea was to go back to an inductive idea and add entire hexagons (dodecagons?) at each successive figure and then correct for the double counting. This approach will work, but he kept making mistakes with the double counting. After a little while of struggling, I asked him to try it with NLF as I savored the sweet taste of victory.
As before, note that the th figure will be a single dot. The difference pyramid looks like this:
The second differences are constant 5’s, so it’s quadratic.
By Newton’s Little Formula:
From the pyramid:
So the formula for the number of dots in the th figure is:
Note that the form of this formula actually reveals a nice geometric counting argument where each term has a special meaning. Let’s colorize our diagram and formula to make each part easier to see:
First note that the number of dots on the perimeter of the shape of the th figure is . This can be seen by noting that there are sides on the outside of the figure, which is the same as saying there are hexagons worth of sides. Since each hexagon is dots, there are dots in total.
Next, we break down the interior of the shape into these clever “y-shapes” consisting of dots each. There are clearly a triangular number, , of these “y-shapes” in the interior. We’re almost there except you may have noticed that the “y-shapes” on the bottom actually double count a few of the perimeter points. How many perimeter points? Exactly . Combining these three types of points we arrive at the geometric interpretation of the formula derived from NLF. (Fun Fact: the NLF solution to most of these counting problems yield a geometric solution if you look carefully.)
I like this example because in a contest setting it’s possible to get caught up trying to figure out a clean way to break up this figure and avoid double counting. NLF, on the other hand, provided a fast, robotic, and repeatable method.
MATHCOUNTS 2013 Chapter Countdown Round
Here’s another example where NLF can actually be helpful:
Problem 73. What is the mean of the first five triangular numbers?
This is not an interesting problem, but if you replace with it becomes pretty annoying unless you’ve specifically studied this type of sum. Fortunately, NLF crushes this problem!
The nth triangular number is
The mean of the first n triangular numbers is:
For to :
n | T_n | Partial Sum | Mean |
---|---|---|---|
1 | 1 | 1 | 1 |
2 | 3 | 4 | 2 |
3 | 6 | 10 | 10/3 |
4 | 10 | 20 | 5 |
5 | 15 | 35 | 7 |
Finite Differences Pyramid
So the mean sequence is quadratic in n. Note there’s nothing saying our differences have to be integers.
Plugging in to NLF:
Plugging in to find the sum of the first 100 triangular numbers:
Closed Form
For completeness, let’s simplify our into something easier. We’d also like to re-index it so that is 1-indexed instead of 0-indexed:
Bonus Practice Problems
I’m not suggesting NLF is the best way to solve these, but it can be used to solve these :)
MATHCOUNTS 2005 School Team Round
Problem 9. In this by grid of squares, the total length of all of the line segments is units. In a similar by grid of squares that are the same size, what is the total length of all of the line segments?
MATHCOUNTS (Unknown Year/Round #1)
Problem ?. If the pattern continues as shown below, how many dots will be in stage 8?
MATHCOUNTS 2012-2013 School Handbook
Problem 261. This V-Dot pattern progresses as shown. As the pattern continues, how many dots will it take to make V-Dot ?
MATHCOUNTS 2000 School Team Round
Problem 5. The first four stellations are represented below. How many dots are in the 20th stellation?
MATHCOUNTS (Unknown Year/Round #2)
Problem ?. The first three hexagonal numbers are represented as follows:
Find the sum of the first five hexagonal numbers.
MATHCOUNTS 1996 Chapter Target Round
Problem 6. A pentagon train is made by attaching regular pentagons with one-inch sides so that each pentagon, except the two on the ends, is attached to exactly two other pentagons along sides as shown. How many inches are in the perimeter of a pentagon train made from 85 pentagons?
MATHCOUNTS 2004-2005 Workouts
Workout 8, Problem 5. If this pattern of cubes is continued, how many cubes will be in the formation?
Footnotes
-
Eugene F. Krause, A Formula of Newton. Department of Mathematics, The University of Michigan, Ann Arbor, Michigan 48104. ↩