Skip to main content
Logo image

Section 4.2 Rate of Growth

Subsection Arithmetic and Geometric Sequences

Investigate!
For the patterns of dots below, draw the next pattern in the sequence. Describe the rate of growth of the number of dots in the pattern. Then give guess a recursive definition and a closed formula for the number of dots in the \(n\)th pattern.
A sequence of three dot patterns, starting with a single dot (labeled n = 0), then the same dot with four new dots extending into an X (labeled n = 1) and finally the same pattern but with four new dots extending onto the limbs of the X (labeled n = 2).
A sequence of three dot patterns, labeled n = 0, n = 1, and n = 2, from left to right.  The first pattern contains two dots, on above the other.  The second pattern can be viewed as each of the dots from the first pattern splitting into 3, forming two triangles (so six dots total).  The third patter again takes each dot from the second pattern and splits them into three, arranged as triangles (so 18 dots all together).
A sequence of four dot patters, labeled n = 1 through n = 4.  The first pattern is a single dot.  The second adds a row of two dots below the single dot (so three dots in a triangle).  The third pattern adds a row of three dots, creating six dots arranged in a triangle.  Finally we add four dots below the previous six, still forming a triangle, this time of 10 dots.
Our goal is to find closed formulas for sequences. Our primary strategy will be to first determine how the sequence is changing from term to term. This will lead to a recurrence relation for the sequence, and from that recurrence relation, we will find a closed formula. We start with two types of sequences that are particularly common and useful: arithmetic and geometric sequences.
Suppose you start a business selling prints of mathematical art. In week zero, you sell one print. Each week after that, you sell four more prints than you did the previous week. How many prints will you sell in the \(n\)th week?
We can easily compute the first few terms of the sequence: \(1, 5, 9, 13,\ldots\text{.}\) How do I know this is correct? From the problem, we see that to get from one term to the next, we must add 4. I is clear then that the recurrence relation for the sequence is
\begin{equation*} a_n = a_{n-1} + 4\text{.} \end{equation*}
The rate of growth for the sequence is the constant \(4\text{,}\) since the difference between any two terms is 4 (note, we could write the recurrence relation as \(a_n - a_{n-1} = 4\)).
We call sequences with a constant rate of change arithmetic sequences.
Now let’s find a closed formula for our sequence. The first term is \(a_0 = 1\text{.}\) To get \(a_1\text{,}\) we add \(4\text{.}\) The next term requires us to add \(4\) again, which means we have added \(4\) to our initial term twice. Then we add \(4\) again, for a total of three times for \(a_3\text{.}\) In fact, to get \(a_n\text{,}\) we will have added \(4\) to \(a_0\) a total of \(n\) times. Thus, the closed formula for the sequence is
\begin{equation*} a_n = 1 + 4n\text{.} \end{equation*}
This works for any arithmetic sequence. That is, any sequence with a constant difference will have a linear closed formula, where the “slope” of the linear function is the common difference.

Arithmetic Sequences.

If the terms of a sequence differ by a constant, we say the sequence is arithmetic. If the initial term (\(a_0\)) of the sequence is \(a\) and the common difference is \(d\text{,}\) then we have,
Recursive definition: \(a_n = a_{n-1} + d\) with \(a_0 = a\text{.}\)
Closed formula: \(a_n = a + dn\text{.}\)
As we did for our example above, for the recursive definition, we need to specify \(a_0\text{.}\) Then we need to express \(a_n\) in terms of \(a_{n-1}\text{.}\) If we call the first term \(a\text{,}\) then \(a_0 = a\text{.}\) For the recurrence relation, by the definition of an arithmetic sequence, the difference between successive terms is some constant, say \(d\text{.}\) So \(a_n - a_{n-1} = d\text{,}\) or in other words,
\begin{equation*} a_0 = a \qquad a_n=a_{n-1}+d\text{.} \end{equation*}
To find a closed formula, first write out the sequence in general:
\begin{align*} a_0 \amp = a\\ a_1 \amp = a_0 + d = a+d\\ a_2 \amp = a_1 + d = a+d+d = a+2d\\ a_3 \amp = a_2 + d = a+2d+d = a+3d\\ \amp \vdots \end{align*}
We see that to find the \(n\)th term, we need to start with \(a\) and then add \(d\) a bunch of times. In fact, add it \(n\) times. Thus \(a_n = a+dn\text{.}\)

Example 4.2.1.

Find recursive definitions and closed formulas for the arithmetic sequences below. Assume the first term listed is \(a_0\text{.}\)
  1. \(2, 5, 8, 11, 14, \ldots\text{.}\)
  2. \(50, 43, 36, 29, \ldots\text{.}\)
Solution.
First we should check that these sequences really are arithmetic by taking differences of successive terms. Doing so will reveal the common difference \(d\text{.}\)
  1. \(5-2 = 3\text{,}\) \(8-5 = 3\text{,}\) etc. To get from each term to the next, we add three, so \(d = 3\text{.}\) The recursive definition is therefore \(a_n = a_{n-1} + 3\) with \(a_0 = 2\text{.}\) The closed formula is \(a_n = 2 + 3n\text{.}\)
  2. Here the common difference is \(-7\text{,}\) since we add \(-7\) to 50 to get 43, and so on. Thus we have a recursive definition of \(a_n = a_{n-1} - 7\) with \(a_0 = 50\text{.}\) The closed formula is \(a_n = 50 - 7n\text{.}\)
What about sequences like \(2, 6, 18, 54, \ldots\text{?}\) This is not arithmetic because the difference between terms is not constant. However, the ratio between successive terms is constant. We call such sequences geometric.
The recursive definition for the geometric sequence with initial term \(a\) and common ratio \(r\) is \(a_n = a_{n-1}\cdot r; a_0 = a\text{.}\) To get the next term we multiply the previous term by \(r\text{.}\) We can find the closed formula like we did for the arithmetic progression. Write
\begin{align*} a_0 \amp = a\\ a_1 \amp = a_0\cdot r\\ a_2 \amp = a_1 \cdot r = a_0\cdot r\cdot r = a_0\cdot r^2\\ \amp \vdots \end{align*}
We must multiply the first term \(a\) by \(r\) a number of times, \(n\) times to be precise. We get \(a_n = a\cdot r^{n}\text{.}\)

Geometric Sequences.

A sequence is called geometric if the ratio between successive terms is constant. Suppose the initial term \(a_0\) is \(a\) and the common ratio is \(r\text{.}\) Then we have,
Recursive definition: \(a_n = ra_{n-1}\) with \(a_0 = a\text{.}\)
Closed formula: \(a_n = a\cdot r^{n}\text{.}\)

Example 4.2.2.

Find the recursive and closed formula for the geometric sequences below. Again, the first term listed is \(a_0\text{.}\)
  1. \(\displaystyle 3, 6, 12, 24, 48, \ldots\)
  2. \(\displaystyle 27, 9, 3, 1, 1/3, \ldots\)
Solution.
Start by checking that these sequences really are geometric by dividing each term by its previous term. If this ratio really is constant, we will have found \(r\text{.}\)
  1. \(6/3 = 2\text{,}\) \(12/6 = 2\text{,}\) \(24/12 = 2\text{,}\) etc. Yes, to get from any term to the next, we multiply by \(r = 2\text{.}\) So the recursive definition is \(a_n = 2a_{n-1}\) with \(a_0 = 3\text{.}\) The closed formula is \(a_n = 3\cdot 2^{n}\text{.}\)
  2. The common ratio is \(r = 1/3\text{.}\) So the sequence has recursive definition \(a_n = \frac{1}{3}a_{n-1}\) with \(a_0 = 27\) and closed formula \(a_n = 27\cdot \frac{1}{3}^{n}\text{.}\)
Geometric sequences are those which have a growth rate that is proportional to the sequence itself. Just like you might have seen in Calculus, it is exactly the exponential functions that have this property.
In the examples and formulas above, we assumed that the initial term was \(a_0\text{.}\) If your sequence starts with \(a_1\text{,}\) you can easily find the term that would have been \(a_0\) and use that in the formula. For example, if we want a formula for the sequence \(2, 5, 8,\ldots\) and insist that \(2= a_1\text{,}\) then we can find \(a_0 = -1\) (since the sequence is arithmetic with common difference 3, we have \(a_0 + 3 = a_1\)). Then the closed formula will be \(a_n = -1 + 3n\text{.}\)

Remark 4.2.3.

If you look at other textbooks or online, you might find that their closed formulas for arithmetic and geometric sequences differ from ours. Specifically, you might find the formulas \(a_n = a +(n-1)d\) (arithmetic) and \(a_n = a\cdot r^{n-1}\) (geometric). Which is correct? Both! In our case, we take \(a\) to be \(a_0\text{.}\) If instead we had \(a_1\) as our initial term, we would get the (slightly more complicated) formulas you find elsewhere.

Subsection Arithmetic and Geometric Rates of Change

Investigate!
Your neighborhood grocery store has a candy machine full of Skittles.
  1. Suppose that the candy machine currently holds exactly 650 Skittles, and every time someone inserts a quarter, exactly 7 Skittles come out of the machine.
    1. How many Skittles will be left in the machine after 20 quarters have been inserted?
    2. Will there ever be exactly zero Skittles left in the machine? Explain.
  2. What if the candy machine gives 7 Skittles to the first customer who put in a quarter, 10 to the second, 13 to the third, 16 to the fourth, etc. How many Skittles has the machine given out after 20 quarters are put into the machine?
  3. Now, what if the machine gives 4 Skittles to the first customer, 7 to the second, 12 to the third, 19 to the fourth, etc. How many Skittles has the machine given out after 20 quarters are put into the machine?
Look at the sequence \((T_n)_{n\ge 1}\) which starts \(1, 3, 6, 10, 15,\ldots\text{.}\) These are called the triangular numbers since they represent the number of dots in an equilateral triangle (think of how you arrange 10 bowling pins: a row of 4 plus a row of 3 plus a row of 2 and a row of 1).
A sequence of four dot patters, showing the first four triangular numbers: the patterns contain 1, 3, 6, and 10 dots, arranged in triangles with base 1, 2, 3, and 4, respectively.
Is this sequence arithmetic? No, since \(3-1 = 2\) and \(6-3 = 3 \ne 2\text{,}\) so there is no common difference. Is the sequence geometric? No. \(3/1 = 3\) but \(6/3 = 2\text{,}\) so there is no common ratio. What to do?
Notice that the differences between terms do form an arithmetic sequence: \(2, 3, 4, 5, 6,\ldots\text{.}\) In other words, the rate of change of this sequence is arithmetic: \(T_n - T_{n-1} = n\text{,}\) which immediately gives us the recurrence relation \(T_n = T_{n-1} + n\text{.}\)
Another way to think of this is that the \(n\)th term of the sequence \((T_n)\) is the sum of the first \(n\) terms in the sequence \(1,2,3,4,5,\ldots\text{.}\) We say that \((T_n)\) is the sequence of partial sums of the sequence \(1,2,3,\ldots\) (partial sums because we are not taking the sum of all infinitely many terms).
This should become clearer if we expand the recurrence relation to write the triangular numbers like this:
\begin{align*} T_1 = 1 \amp = 1\\ T_2 = 3 \amp = 1+2\\ T_3 = 6 \amp = 1 + 2 + 3\\ T_4 = 10 \amp = 1+ 2 + 3+ 4\\ \vdots \amp \qquad \vdots\\ T_n \amp = 1 + 2 + 3 + \cdots + n\text{.} \end{align*}
If we know how to add up the terms of an arithmetic sequence, we could find a closed formula for a sequence whose differences are the terms of that arithmetic sequence. Consider how we could find the sum of the first 100 positive integers (that is, \(T_{100}\)). Instead of adding them in order, we regroup and add \(1+100 = 101\text{.}\) The next pair to combine is \(2+99 = 101\text{.}\) Then \(3+98 = 101\text{.}\) Keep going. This gives 50 pairs which each add up to \(101\text{,}\) so \(T_{100} = 101\cdot 50 = 5050\text{.}\) 1 
In general, using this same sort of regrouping, we find that \(T_n = \frac{n(n+1)}{2}\text{.}\) Incidentally, this is exactly the same as \({n+1 \choose 2}\text{,}\) which makes sense if you think of the triangular numbers as counting the number of handshakes that take place at a party with \(n+1\) people: the first person shakes \(n\) hands, the next shakes an additional \(n-1\) hands and so on.
The point of all of this is that some sequences, while not arithmetic or geometric, can be interpreted as the sequence of partial sums of arithmetic and geometric sequences. Luckily there are methods we can use to compute these sums quickly.

Subsubsection Summing Arithmetic Sequences: Reverse and Add

Here is a technique that allows us to quickly find the sum of an arithmetic sequence.
Example 4.2.4.
Find the sum: \(2 + 5 + 8 + 11 + 14 + \cdots + 470\text{.}\)
Solution.
The idea is to mimic how we found the formula for triangular numbers. If we add the first and last terms, we get 472. The second term and second-to-last term also add up to 472. To keep track of everything, we might express this as follows. Call the sum \(S\text{.}\) Then,
\(S =\) \(2\) \(+\) \(5\) \(+\) \(8\) \(+ \cdots +\) \(467\) \(+\) 470
\(+ \quad S =\) \(470\) \(+\) \(467\) \(+\) \(464\) \(+ \cdots +\) \(5\) \(+\) 2
\(2S =\) \(472\) \(+\) \(472\) \(+\) \(472\) \(+ \cdots +\) \(472\) \(+\) \(472\)
To find \(2S\) then we add 472 to itself a number of times. What number? We need to decide how many terms (summands) are in the sum. Since the terms form an arithmetic sequence, the \(n\)th term in the sum (counting \(2\) as the 0th term) can be expressed as \(2 + 3n\text{.}\) If \(2 + 3n = 470\) then \(n = 156\text{.}\) So \(n\) ranges from 0 to 156, giving 157 terms in the sum. This is the number of 472’s in the sum for \(2S\text{.}\) Thus
\begin{equation*} 2S = 157\cdot 472 = 74104\text{.} \end{equation*}
It is now easy to find \(S\text{:}\)
\begin{equation*} S = 74104/2 = 37052\text{.} \end{equation*}
This will work for the sum of any arithmetic sequence. Call the sum \(S\text{.}\) Reverse and add. This produces a single number added to itself many times. Find the number of times. Multiply. Divide by 2. Done.
Example 4.2.5.
Find a closed formula for \(6 + 10 + 14 + \cdots + (4n - 2)\text{.}\)
Solution.
Again, we have a sum of an arithmetic sequence. How many terms are in the sequence? Clearly each term in the sequence has the form \(4k -2\) (as evidenced by the last term). For which values of \(k\) though? To get 6, \(k = 2\text{.}\) To get \(4n-2\) take \(k = n\text{.}\) So to find the number of terms, we must count the number of integers in the range \(2,3,\ldots, n\text{.}\) This is \(n-1\text{.}\) (There are \(n\) numbers from 1 to \(n\text{,}\) so one less if we start with 2.)
Now reverse and add:
\(S =\) \(6\) \(+\) \(10\) \(+ \cdots +\) \(4n-6\) \(+\) \(4n-2\)
\(+ \quad S =\) \(4n-2\) \(+\) \(4n-6\) \(+ \cdots +\) \(10\) \(+\) 6
\(2S =\) \(4n+4\) \(+\) \(4n+4\) \(+ \cdots +\) \(4n+4\) \(+\) \(4n+4\)
Since there are \(n-1\) terms, we get
\begin{equation*} 2S = (n-1)(4n+4)\qquad \mbox{ so } \qquad S = \frac{(n-1)(4n+4)}{2}\text{.} \end{equation*}
Besides finding sums, we can use this technique to find closed formulas for sequences we recognize as sequences of partial sums.
Example 4.2.6.
Use partial sums to find a closed formula for \((a_n)_{n\ge 0}\) which starts \(2, 3, 7, 14, 24, 37,\ldots \ldots\)
Solution.
First, if you look at the differences between terms, you get a sequence of differences: \(1,4,7,10,13, \ldots\text{,}\) which is an arithmetic sequence. Written another way:
\begin{align*} a_0 \amp = 2\\ a_1 \amp = 2+1\\ a_2 \amp = 2+1+4\\ a_3 \amp = 2+1+4+7 \end{align*}
and so on. We can write the general term of \((a_n)\) in terms of the arithmetic sequence as follows:
\begin{equation*} a_n = 2 + 1 + 4 + 7 + 10 + \cdots + (1+3(n-1)) \end{equation*}
(we use \(1+3(n-1)\) instead of \(1+3n\) to get the indices to line up correctly; for \(a_3\) we add up to 7, which is \(1+3(3-1)\)).
We can reverse and add, but the initial 2 does not fit our pattern. This just means we need to keep the 2 out of the reverse part:
\(a_n =\) \(2\) \(+\) \(1\) \(+\) \(4\) \(+ \cdots +\) \(1+3(n-1)\)
\(+ \quad a_n =\) \(2\) \(+\) \(1+3(n-1)\) \(+\) \(1+3(n-2)\) \(+ \cdots +\) \(1\)
\(2a_n =\) \(4\) \(+\) \(2+3(n-1)\) \(+\) \(2+3(n-1)\) \(+ \cdots +\) \(2+3(n-1)\)
Not counting the first term (the 4) there are \(n\) summands of \(2+3(n-1) = 3n-1\) so the right-hand side becomes \(4+(3n-1)n\text{.}\)
Finally, solving for \(a_n\) we get
\begin{equation*} a_n = \d \frac{4+(3n-1)n}{2}\text{.} \end{equation*}
Just to be sure, we check \(a_0 = \frac{4}{2} = 2\text{,}\) \(a_1 = \frac{4+2}{2} = 3\text{,}\) etc. We have the correct closed formula.
Notice that the closed formula for a sequence that has a arithmetic (i.e., linear) rate of change is a quadratic function. Interesting....

Subsubsection Summing Geometric Sequences: Multiply, Shift and Subtract

To find the sum of a geometric sequence, we cannot just reverse and add. Do you see why? The reason we got the same term added to itself many times is because there was a constant difference. So as we added that difference in one direction, we subtracted the difference going the other way, leaving a constant total. For geometric sums, we have a different technique.
Example 4.2.7.
What is \(3 + 6 + 12 + 24 + \cdots + 12288\text{?}\)
Solution.
Multiply each term by 2, the common ratio. You get \(2S = 6 + 12 + 24 + \cdots + 24576\text{.}\) Now subtract: \(2S - S = -3 + 24576 = 24573\text{.}\) Since \(2S - S = S\text{,}\) we have our answer.
To better see what happened in the above example, try writing it this way:
\(S=\) \(3 \, +\) \(6 + 12 + 24 + \cdots + 12288\)
\(- \qquad 2S=\) \(6 + 12 + 24 + \cdots + 12288\) \(+ 24576\)
\(-S = \) \(3 \, +\) \(0 + 0 + 0 + \cdots + 0 \) \(-24576\)
Then divide both sides by \(-1\) and we have the same result for \(S\text{.}\) The idea is, by multiplying the sum by the common ratio, each term becomes the next term. We shift over the sum to get the subtraction to mostly cancel out, leaving just the first term and new last term.
Example 4.2.8.
Find a closed formula for \(S(n) = 2 + 10 + 50 + \cdots + 2\cdot 5^n\text{.}\)
Solution.
The common ratio is 5. So we have
\(S\) \(= 2 + 10 + 50 + \cdots + 2\cdot 5^n\)
\(- \qquad 5S\) \(= ~~~~~~10 + 50 + \cdots + 2\cdot 5^n + 2\cdot5^{n+1}\)
\(-4S\) \(= 2 - 2\cdot5^{n+1}\)
Thus \(S = \dfrac{2-2\cdot 5^{n+1}}{-4}\)
Even though this might seem like a new technique, you have probably used it before.
Example 4.2.9.
Express \(0.464646\ldots\) as a fraction.
Solution.
Let \(N = 0.46464646\ldots\text{.}\) Consider \(0.01N\text{.}\) We get:
\(N =\) \(0.4646464\ldots\)
\(- \qquad 0.01N =\) \(0.00464646\ldots\)
\(0.99N =\) \(0.46\)
So \(N = \frac{46}{99}\text{.}\) What have we done? We viewed the repeating decimal \(0.464646\ldots\) as a sum of the geometric sequence \(0.46, 0.0046, 0.000046, \ldots\) The common ratio is \(0.01\text{.}\) The only real difference is that we are now computing an infinite geometric sum, we do not have the extra “last” term to consider. Really, this is the result of taking a limit as you would in calculus when you compute infinite geometric sums.
To summarize, we now can find a closed formula for a sequence \(a_n\) that has a rate of growth that is an exponential function: \(a_n - a_{n-1} = b_n\text{,}\) where \(b_n\) is a geometric sequence (i.e., and exponential function). What sort of closed formula to we get here? It’s another exponential function!

Reading Questions Reading Questions

1.

2.

How can you decide whether a sequence is the sequence of partial sums of a arithmetic or geometric sequence? Describe what you would do to check, using an example.

3.

What questions do you have? Write at least one question about the content of this section that you or a classmate might be curious about after reading this section.

Exercises Practice Problems

1.

Consider the sequence \(6, 12, 18, 24, 30, \ldots\) with \(a_1 = 6\text{.}\)
  1. Which of the following is a recursive definition for the sequence. Select all that apply.
    • \(a_n = a_{n-1} + a_{n-2}\); \(a_1 = 6\)
    • \(a_n = 6 \cdot a_{n-1}\); \(a_1 = 6\)
    • \(a_n = a_{n-1} + 6\); \(a_1 = 6\)
    • \(a_n = 6 \cdot 6^n\)
  2. Give a closed formula for the \(n\)th term of the sequence.
    \(a_n =\)
  3. Is 3102 a term in the sequence?
    • No, it is between 3100 and 3106
    • Yes, it is \(a_{516}\)
    • Yes, it is \(a_{517}\)
    • No, it is larger than 822
    • Yes, it is \(a_{3102}\)
  4. How many terms does the finite sequence \(6, 12, 18, 24, 30, \ldots, {822}\) have?
  5. Find the sum: \(6 + 12 + 18 + 24 + 30 + \cdots + {822}\)
  6. Use what you found above to find \(b_n\text{,}\) the \(n\)th term of \(1, {7}, {19}, {37}, {61}, \ldots\) where \(b_0 = 1\text{.}\)
    \(b_n =\)

2.

Consider the sequence \((a_n)_{n \ge 0}\) which starts \(7, 12, 17, 22, \ldots\text{.}\)
  1. What is the next term in the sequence?
  2. Find a formula for the \(n\)th term of this sequence.
    \(a_n =\)
  3. Find the sum of the first 100 terms of the sequence: \(\sum_{k=0}^{99}a_k\text{.}\)

3.

Consider the sum \(8 + 19 + 30 + 41 + \cdots + 382\text{.}\)
  1. How many terms (summands) are in the sum?
  2. Compute the sum using a technique discussed in this section.

4.

Consider the sequence \(37, 48, 59, 70, \ldots, 11n + 4\text{.}\)
  1. How many terms are there in the sequence? Your answer will be in terms of \(n\text{.}\)
  2. What is the second-to-last term?
  3. Find the sum of all the terms in the sequence, in terms of \(n\text{.}\)

5.

Find \(12 + 16 + 20 + 24+ \cdots + 1024\) using a technique from this section.

6.

Find \(2 + 10 + 50 + \cdots + 2\cdot 5^{20}\text{.}\)

7.

Find \(1 - \frac{2}{7} + \frac{4}{49} - \cdots +(-1)^{28} \frac{2^{28}}{7^{28}}\text{.}\)

8.

Find \(x\) and \(y\) such that \(64, x, y, 1\) is part of an arithmetic sequence.
\(x =\) , \(y =\)
Then find \(x\) and \(y\) so that the sequence is part of a geometric sequence.
\(x =\) , \(y =\)
(Warning: \(x\) and \(y\) might not be integers.)

9.

Find \(x\) and \(y\) such that \(3, x, y, 54\) is part of an arithmetic sequence.
\(x =\) , \(y =\)
Then find \(x\) and \(y\) so that the sequence is part of a geometric sequence.
\(x =\) , \(y =\)
(Warning: \(x\) and \(y\) might not be integers.)

Exercises Additional Exercises

1.

Is there a pair of integers \((a,b)\) such that \(a, x_1, y_1, b\) is part of an arithmetic sequences and \(a, x_2, y_2, b\) is part of a geometric sequence with \(x_1, x_2, y_1, y_2\) all integers?

2.

Consider the sequence \(2, 7, 15, 26, 40, 57, \ldots\) (with \(a_0 = 2\)). By looking at the differences between terms, express the sequence as a sequence of partial sums. Then find a closed formula for the sequence by computing the \(n\)th partial sum.

3.

Starting with any rectangle, we can create a new, larger rectangle by attaching a square to the longer side. For example, if we start with a \(2\times 5\) rectangle, we would glue on a \(5\times 5\) square, forming a \(5 \times 7\) rectangle:
On the left, a 5x5 square to the right of a rectangle with base 2 and height 5, separated by a small gap.  An arrow points to the right, where a rectangle of base 7 and height 5 is shown, including a dotted line representing where the square and triangle on the left were glued together.
The next rectangle would be formed by attaching a \(7 \times 7\) square to the top or bottom of the \(5\times 7\) rectangle.
  1. Create a sequence of rectangles using this rule starting with a \(1\times 2\) rectangle. Then write out the sequence of perimeters for the rectangles (the first term of the sequence would be 6, since the perimeter of a \(1\times 2\) rectangle is 6 - the next term would be 10).
  2. Repeat the above part this time starting with a \(1 \times 3\) rectangle.
  3. Find recursive formulas for each of the sequences of perimeters you found in parts (a) and (b). Don’t forget to give the initial conditions as well.
  4. Are the sequences arithmetic? Geometric? If not, are they close to being either of these (i.e., are the differences or ratios almost constant)? Explain.

4.

If you have enough toothpicks, you can make a large triangular grid. Below, are the triangular grids of size 1 and of size 2. The size 1 grid requires 3 toothpicks, the size 2 grid requires 9 toothpicks.
Three toothpicks arranged as the sides of an equilateral triangle.
Nine toothpicks arranged into a triangle with two toothpicks forming each edge, and an upside-down triangle in the center.
  1. Let \(t_n\) be the number of toothpicks required to make a size \(n\) triangular grid. Write out the first 5 terms of the sequence \(t_1, t_2, \ldots\text{.}\)
  2. Find a recursive definition for the sequence. Explain why you are correct.
  3. Is the sequence arithmetic or geometric? If not, is it the sequence of partial sums of an arithmetic or geometric sequence? Explain why your answer is correct.
  4. Use your results from part (c) to find a closed formula for the sequence. Show your work.

5.

If you were to shade in a \(n\times n\) square on graph paper, you could do it the boring way (with sides parallel to the edge of the paper) or the interesting way, as illustrated below:
One square.
Five squares arranged as a plus sign. Viewed another way, the squares are arranged in three centered rows of 1, 3, and 1 squares.
13 squares arranged in five centered rows, containing 1, 3, 5, 3, and 1 square each.
25 squares arranged in rows of length 1, 3, 5, 7, 5, 3, and 1.
The interesting thing here, is that a \(3\times 3\) square now has area 13. Our goal is the find a formula for the area of a \(n \times n\) (diagonal) square.
  1. Write out the first few terms of the sequence of areas (assume \(a_1 = 1\text{,}\) \(a_2 = 5\text{,}\) etc). Is the sequence arithmetic or geometric? If not, is it the sequence of partial sums of an arithmetic or geometric sequence? Explain why your answer is correct, referring to the diagonal squares.
  2. Use your results from part (a) to find a closed formula for the sequence. Show your work. Note, while there are lots of ways to find a closed formula here, you should use partial sums specifically.
  3. Find the closed formula in as many other interesting ways as you can.

6.

Here is a surprising use of sequences to answer a counting question: How many license plates consist of 6 symbols, using only the three numerals 1, 2, and 3 and the four letters a, b, c, and d, so that no numeral appears after any letter? For example, “31ddac”, “123321”, and “ababab” are each acceptable license plates, but “13ba2c” is not.
  1. First answer this question by considering different cases: how many of the license plates contain no numerals? How many contain one numeral, etc.
  2. Now use the techniques of this section to show why the answer is \(4^7 - 3^7\text{.}\)
You have attempted of activities on this page.