The Interior — MathGrades 11–12

Unit 25 · Sequences, Series and Modeling

A unit of the course: the story, then chapter by chapter — sections, numbered lessons, a source or the numbers to read, three checks each — a review per chapter, and the wrap-up at the end.

← Math, the whole course

Drawn scene: a nautilus shell cut open on a teal desk beside coin stacks that double in height, under a framed aerial print of a stadium with spiraling rows
25Unit

Sequences, Series and Modeling

Algebra and Modeling

A loan balance shrinks a little each month. A bouncing ball rises a little less each time. A crowd pours out of a stadium, fast at first and then in a steady stream. Each of these is a list of numbers with a rule behind it, and once you know the rule you can predict the hundredth number without writing the ninety-nine before it. This unit is about finding those rules, adding up what they produce, and judging whether the rule describes the world well enough to act on.

The first chapter is about sequences and series. You will write rules for lists that add a fixed amount and lists that multiply by a fixed factor, use sigma notation to say "add all of these" in one line, and find the sum of a list in a single step, the way the young Gauss added 1 to 100. You will decide when an endless list of numbers still adds up to a finite total, turn a repeating decimal into an exact fraction, and follow the Fibonacci numbers toward the golden ratio.

The second chapter turns those tools outward. You will walk the modeling cycle: ask a sharp question, list your assumptions, choose a function family that fits the situation, fit it to data with technology, and check the result against reality. You will build models from pieces, shift and stretch them to match a new situation, test how much the answer moves when an input moves, and write up what you found so that someone else can check every step.

How we figured it out
c. 450 BCE

Zeno of Elea poses puzzles about endless halving, such as Achilles who can never catch the tortoise

c. 300 BCE

Euclid's Elements states a rule for adding up the terms of a geometric progression

c. 250 BCE

Archimedes finds the area under a parabola by summing the endless series 1 + 1/4 + 1/16 + ...

1202

Fibonacci's Liber Abaci poses the rabbit puzzle whose answer is the sequence 1, 1, 2, 3, 5, 8, ...

c. 1350

Nicole Oresme shows that 1 + 1/2 + 1/3 + 1/4 + ... grows without bound, even though its terms shrink

1735

Leonhard Euler finds that 1 + 1/4 + 1/9 + 1/16 + ... adds up to exactly π^2/6

1798

Thomas Malthus argues that populations grow geometrically while food supplies grow arithmetically

1805

Adrien-Marie Legendre publishes the method of least squares for fitting a line to data

1821

Augustin-Louis Cauchy's Cours d'analyse gives the modern definition of a convergent series

1838

Pierre Verhulst proposes the logistic model, in which growth levels off at a carrying capacity

1924

Soldier Field opens on Chicago's lakefront, a crowd-flow problem waiting for a model

1975

Benoit Mandelbrot coins the word fractal for shapes that repeat their pattern at every scale

Chapter

Sequences and Series

Sequences
Big questionHow can one short rule describe a list of numbers that never ends, and how can you add up that list without adding forever?
The story

The Schoolboy and the Sum

A teacher hands out a long addition problem to buy himself a quiet hour, and one student is done before the teacher sits down.

The story goes that a schoolteacher in a small German town, late in the 1700s, told his class to add every whole number from 1 to 100. He expected the sum to take most of the hour. Slates scratched, students counted on fingers, and the room went quiet. One boy wrote a single number on his slate, set it on the desk, and folded his arms. The number was 5050. The boy was Carl Friedrich Gauss, who grew up to be one of the greatest mathematicians who ever lived.

How did he do it so fast? He did not add 1 + 2 + 3 and keep going. He paired the numbers from the outside in. The first and the last make 1 + 100 = 101. The second and the second-to-last make 2 + 99 = 101. Then 3 + 98 = 101, and so on. Every pair totals 101, and 100 numbers make 50 pairs. So the sum is 50 × 101 = 5050. No long column of addition, just one multiplication.

Here is another way to see the same trick. Write the numbers 1 to 100 in a row, and under it write them again backwards, 100 down to 1. Each column adds to 101, and there are 100 columns, so both rows together total 100 × 101 = 10,100. That is twice the sum you want, so the sum is 10,100 ÷ 2 = 5050. The idea works for any count: the sum of 1 through n is n(n + 1)/2. For 1 through 20 it gives 20 × 21 ÷ 2 = 210, and ten pairs of 21 confirm it.

Whether or not the story happened exactly this way, the lesson is real. A long list of numbers can hide a short rule, and the rule can let you add the whole list in one step. This chapter is about those rules. You will name the two most common kinds of lists, write formulas for their terms and their sums, decide when an endless list still adds up to a finite number, and follow rules that build the world around you: loan balances, rabbit populations and snowflake-shaped curves that never stop growing.

Talk about itUse the pairing idea to add every whole number from 1 to 50. How many pairs are there, what does each pair total, and what is the sum?
Section 1

Lists With Rules

57.1

Terms, Positions and Rules

Main ideaA sequence is an ordered list of numbers, and a rule tells you how to find any term from its position or from the term before it.

A stack of one plastic chair is 30 inches tall. Each chair you add raises the stack by 3 inches. So the heights go 30, 33, 36, 39, 42 and so on. An ordered list like this is a . Each number in it is a , and the position of a term is its . We write a_n (read "a sub n") for the term in position n. Here a_1 = 30, a_2 = 33 and a_4 = 39. The index counts chairs; the term measures inches.

There are two ways to write the rule. An gives any term straight from its index: a_n = 30 + 3(n − 1). Test it on the fourth term: 30 + 3(3) = 39, which matches. It jumps straight to the tenth term too: a_10 = 30 + 3(9) = 57 inches. A gives each term from the one before it: a_1 = 30, and a_n = a_(n−1) + 3. It needs a starting term, because "add 3" means nothing until you know where to begin.

Each kind of rule has a job. The explicit rule is fast for far-off terms; the recursive rule matches how the stack actually grows, one chair at a time. To find a_10 recursively you would add 3 nine times. A common mistake is to write the explicit rule as a_n = 30 + 3n. That gives a_1 = 33, but the first stack is 30. Always test a rule on the first term before you trust it.

Not every sequence adds a fixed amount. The list 1, 4, 9, 16, 25 has the rule a_n = n^2. The list 2, 4, 8, 16, 32 doubles each time, so a_n = 2^n. The list 5, −5, 5, −5 flips sign, so a_n = 5 × (−1)^(n+1). Check that last one: for n = 1 the exponent is 2, and (−1)^2 = 1, so a_1 = 5. For n = 2 the exponent is 3, and a_2 = −5. A rule is right only if it produces every term you were given.

Words to know
sequence
an ordered list of numbers, each with a position
term
one number in a sequence; a_n is the term in position n
index
the position number of a term, usually starting at 1
explicit rule
a formula that gives any term directly from its index, like a_n = 30 + 3(n − 1)
recursive rule
a rule that gives each term from the term before it, plus a starting term
Check yourself

1. The sequence 5, 9, 13, 17, ... continues with the same pattern. What is its 8th term?

2. Which is a recursive rule for the sequence 7, 10, 13, 16, ...?

3. A sequence has the explicit rule a_n = 2n^2 − 1. What is its third term?

57.2

Arithmetic Sequences

Main ideaIn an arithmetic sequence each term is the one before plus a fixed common difference d, so a_n = a_1 + (n − 1)d.

A gym charges $40 to join and $25 each month. The total you have paid after 1, 2, 3, 4 months is 65, 90, 115, 140. Every term is the one before plus 25. A sequence that grows by the same amount each step is an , and that fixed amount is the , written d. Here a_1 = 65 and d = 25, so the explicit rule is a_n = 65 + 25(n − 1). After 12 months: 65 + 25(11) = 65 + 275 = 340. Check another way: the $40 fee plus 12 × $25 = 40 + 300 = 340. It matches.

You can build the rule from any two terms. Suppose a_3 = 14 and a_7 = 26. From position 3 to position 7 is 4 steps, and the terms rose by 26 − 14 = 12, so d = 12 ÷ 4 = 3. Walk back two steps from a_3 to find a_1 = 14 − 2(3) = 8. The rule is a_n = 8 + 3(n − 1), which simplifies to a_n = 3n + 5. Check: a_7 = 3(7) + 5 = 26. Good.

The common difference can be negative. A cup of water at 52 degrees cools 4 degrees each hour: 52, 48, 44, 40. The rule is a_n = 52 − 4(n − 1). When does it hit 20 degrees? Set 52 − 4(n − 1) = 20, so 4(n − 1) = 32, so n − 1 = 8 and n = 9. Check: a_9 = 52 − 4(8) = 52 − 32 = 20. The most common error is writing 4n instead of 4(n − 1); that shifts every term by one position.

If you plot an arithmetic sequence with the index on the horizontal axis, the points lie on a straight line whose slope is d. That is why a_n = 3n + 5 looks like the function y = 3x + 5. The difference is that a sequence uses only whole-number positions 1, 2, 3 and so on, so the graph is a row of separate dots, not a solid line.

Words to know
arithmetic sequence
a sequence in which each term is the previous term plus the same number
common difference
the fixed amount d added to get from one term to the next; it can be negative
linear
growing by the same amount each step, so the graph is a straight line of points
Check yourself

1. An arithmetic sequence has a_1 = 12 and common difference −5. What is a_6?

2. In an arithmetic sequence, a_2 = 11 and a_5 = 26. What is the common difference?

3. Which sequence is arithmetic?

57.3

Geometric Sequences

Main ideaIn a geometric sequence each term is the one before times a fixed common ratio r, so a_n = a_1 × r^(n − 1).

On Monday three people hear a rumor. Each day, every person who knows it tells two new people, so the count of new hearers goes 3, 6, 12, 24, 48. Each term is the one before times 2. A sequence that multiplies by the same number each step is a , and that number is the , written r. The explicit rule is a_n = a_1 × r^(n − 1), so here a_n = 3 × 2^(n − 1). On day 7: 3 × 2^6 = 3 × 64 = 192. Doubling by hand, 3, 6, 12, 24, 48, 96, 192, agrees.

The ratio can be less than 1. A ball dropped from 200 cm bounces back to 3/5 of its previous height each time: 200, 120, 72, 43.2. The fourth height is 200 × 0.6^3 = 200 × 0.216 = 43.2 cm. The terms shrink toward 0 but never reach it. A negative ratio makes the signs alternate: 5, −10, 20, −40 has r = −2.

To find r, divide any term by the one before it: 12 ÷ 6 = 2 and 6 ÷ 3 = 2. To decide whether a list is geometric, check that every such ratio is the same. The most common error is using r^n instead of r^(n − 1). For the rumor that gives 3 × 2^7 = 384 on day 7, one day too far. Another error is multiplying a_1 by n × r, as if the sequence were arithmetic.

Arithmetic sequences add; geometric sequences multiply. The difference shows in the graph. An arithmetic sequence plots as dots on a line. A geometric sequence with r greater than 1 curves upward faster and faster, the shape of an function. With r between 0 and 1 it curves down toward the axis without touching it.

Words to know
geometric sequence
a sequence in which each term is the previous term times the same number
common ratio
the fixed multiplier r from one term to the next; find it by dividing a term by the one before
exponential
growing or shrinking by the same factor each step, so the graph curves
Check yourself

1. What is the fifth term of the geometric sequence 4, 12, 36, 108, ...?

2. A sequence has the rule a_n = 500 × (1/2)^(n − 1). What is a_4?

3. A car loses 15% of its value every year. Its values year by year form which kind of sequence?

Section 2

Adding the Terms

57.4

Sigma Notation

Main ideaSigma notation is a compact way to write a sum: it names the formula for each term and the range of index values to add.

A reading log shows 10 pages on day 1, then 15, 20, 25 and 30 on the next four days. The total is 10 + 15 + 20 + 25 + 30 = 100. Mathematicians write a sum like this with the Greek letter Σ (sigma): Σ from k = 1 to 5 of (5k + 5). The letter k is the . The 1 below the sigma is where k starts, the 5 above is where it stops, and the expression after it is the formula for each term. Check the ends: k = 1 gives 5(1) + 5 = 10 and k = 5 gives 5(5) + 5 = 30.

To expand a sigma expression, substitute each index value and add. Σ from k = 1 to 4 of k^2 means 1 + 4 + 9 + 16 = 30. The lower limit is not always 1. Σ from k = 3 to 6 of (2k − 1) means 5 + 7 + 9 + 11 = 32. The number of terms is the upper limit minus the lower limit plus 1, so from 3 to 6 there are 6 − 3 + 1 = 4 terms, not 3.

The sum of the terms of a sequence is called a . The sum of just the first n terms is the , written S_n. For the reading log, S_3 = 10 + 15 + 20 = 45. Three errors show up often: starting k at 1 when the lower limit is something else, counting the terms as upper minus lower, and multiplying the formula by the number of terms instead of adding the separate values.

One useful fact: a constant factor can be pulled out front. Σ from k = 1 to 4 of 3k is 3 + 6 + 9 + 12 = 30, and 3 × (1 + 2 + 3 + 4) = 3 × 10 = 30. Sums of separate pieces also split: Σ of (k + 2) equals Σ of k plus Σ of 2. These rules turn a messy sigma into simpler ones you already know how to add.

Words to know
sigma notation
a way to write a sum with Σ, an index, a starting value, an ending value and a formula for each term
index of summation
the letter, often k, that takes each whole-number value from the lower limit to the upper limit
series
the sum of the terms of a sequence
partial sum
the sum of the first n terms of a sequence, written S_n
Check yourself

1. What is Σ from k = 1 to 4 of (2k + 3)?

2. How many terms are in Σ from k = 4 to 12 of k^3?

3. Which sigma expression equals 3 + 6 + 9 + 12 + 15?

57.5

Arithmetic Series

Main ideaThe sum of the first n terms of an arithmetic sequence is S_n = n(a_1 + a_n)/2: the number of terms times the average of the first and last.

Gauss’s pairing trick works for any arithmetic sequence. A theater has 20 seats in the front row, and each row back has 2 more seats. There are 15 rows. The last row has a_15 = 20 + 2(14) = 48 seats. Pair the first and last rows: 20 + 48 = 68. The second and second-to-last: 22 + 46 = 68. Every pair gives 68, the sum of the first and last terms. Fifteen terms make 7 pairs plus the middle term, a_8 = 20 + 2(7) = 34. So the total is 7 × 68 + 34 = 476 + 34 = 510 seats.

The formula packages this: S_n = n(a_1 + a_n)/2. For the theater, S_15 = 15 × (20 + 48)/2 = 15 × 34 = 510. Same answer. The fraction (a_1 + a_n)/2 is the average of the first and last term, and in an arithmetic sequence that is the average of all the terms. Multiply an average by a count and you get a total. If you do not know the last term, substitute a_n = a_1 + (n − 1)d to get S_n = (n/2)[2a_1 + (n − 1)d].

Try a sigma sum: Σ from k = 1 to 40 of (3k + 2). The first term is 5, the 40th is 3(40) + 2 = 122. So S_40 = 40 × (5 + 122)/2 = 40 × 63.5 = 2540. Check with the second form: (40/2)[2(5) + 39(3)] = 20 × (10 + 117) = 20 × 127 = 2540. Both routes agree.

A savings challenge: put away $5 in week 1, $10 in week 2, $15 in week 3, and so on for 52 weeks. Week 52’s deposit is 5 × 52 = $260. The total is 52 × (5 + 260)/2 = 52 × 132.5 = $6,890. The most common error is multiplying the count by the last term, 52 × 260 = 13,520, which is about twice the truth. The other is forgetting to divide by 2 after adding first and last.

Words to know
arithmetic series
the sum of the terms of an arithmetic sequence
average term
in an arithmetic sequence, (first term + last term)/2, which equals the mean of all the terms
pairing
Gauss's method of adding the first and last terms, then the second and second-to-last, and so on
Check yourself

1. What is the sum 2 + 5 + 8 + ... + 59?

2. What is the sum of the first 30 terms of the sequence a_n = 4n − 1?

3. What is 1 + 2 + 3 + ... + 200?

57.6

Geometric Series

Main ideaThe sum of the first n terms of a geometric sequence is S_n = a_1(r^n − 1)/(r − 1), which comes from subtracting the sum from r times itself.

Take S = 3 + 6 + 12 + 24 + 48. Multiply every term by the ratio 2: 2S = 6 + 12 + 24 + 48 + 96. Now subtract the first line from the second. Almost everything cancels: 2S − S = 96 − 3, so S = 93. Check by adding: 3 + 6 = 9, 9 + 12 = 21, 21 + 24 = 45, 45 + 48 = 93. The same subtraction on a general geometric series gives the formula S_n = a_1(r^n − 1)/(r − 1). For this one: 3 × (2^5 − 1)/(2 − 1) = 3 × 31 = 93.

The formula handles ratios less than 1 too, where it is often written S_n = a_1(1 − r^n)/(1 − r). Add 100 + 50 + 25 + ... for 8 terms: 100 × (1 − 0.5^8)/(1 − 0.5) = 100 × (1 − 1/256)/0.5 = 200 × 255/256 = 199.21875. Adding the eight terms by hand, 100 + 50 + 25 + 12.5 + 6.25 + 3.125 + 1.5625 + 0.78125, gives the same 199.21875. Notice how close the total is to 200 already.

An old puzzle asks for one penny on day 1, two on day 2, four on day 3, and so on for 30 days. Day 30 alone is 2^29 pennies. The total is 1 × (2^30 − 1)/(2 − 1) = 2^30 − 1 = 1,073,741,823 pennies, which is a little over $10.7 million. Doubling is slow at first and then overwhelming. The most common errors are using r^(n − 1) in the formula instead of r^n, and dropping the −1 in the numerator.

A quick sanity check: the last term of a doubling series is always one more than the sum of all the earlier terms. In 3 + 6 + 12 + 24 + 48, the earlier terms add to 45 and 48 = 45 + 3, one first term more. For the pennies, the day-30 pile of 2^29 pennies is one penny more than days 1 through 29 combined. If your sum is far from twice the last term, look for a slip.

Words to know
geometric series
the sum of the terms of a geometric sequence
subtraction trick
multiplying a geometric series by r and subtracting the original so the middle terms cancel
power
a number raised to an exponent, like 2^30, meaning 30 factors of 2 multiplied together
Check yourself

1. What is 2 + 6 + 18 + 54 + 162?

2. A geometric sequence has a_1 = 5 and r = 2. What is S_6, the sum of its first six terms?

3. What is Σ from k = 1 to 4 of 10 × (1/2)^(k − 1)?

Section 3

Sums Without End

57.7

Infinite Geometric Series

Main ideaAn infinite geometric series has a finite sum, a_1/(1 − r), exactly when the common ratio is between −1 and 1; otherwise the partial sums never settle.

Walk toward a wall, covering half the remaining distance with each step. Your first step covers 1/2 of the way, the next 1/4, then 1/8, then 1/16. The partial sums are 1/2, 3/4, 7/8, 15/16. They creep toward 1 and never pass it; the gap to the wall halves each time. An endless sum whose partial sums settle on one number is said to , and that number is its sum. Here 1/2 + 1/4 + 1/8 + ... = 1.

Why? Start from S_n = a_1(1 − r^n)/(1 − r). When r is between −1 and 1, the power r^n shrinks toward 0 as n grows; 0.5^10 is already under 0.001. Dropping that vanishing piece leaves S = a_1/(1 − r). For the walk, (1/2)/(1 − 1/2) = 1. Another example: 6 + 2 + 2/3 + ... has r = 1/3, so S = 6/(1 − 1/3) = 6/(2/3) = 9. The partial sums 6, 8, 8.67, 8.89 are closing in on 9.

When r is 1 or more, or −1 or less, the series : 1 + 2 + 4 + 8 + ... grows without bound, and 1 − 1 + 1 − 1 + ... bounces between 1 and 0 forever. Plugging r = 2 into the formula gives 1/(1 − 2) = −1, a nonsense answer, so always check the ratio before using it. Here is the formula at work: a ball dropped from 10 m rebounds to 0.6 of each height. Its total up-and-down travel is 10 + 2 × (6 + 3.6 + 2.16 + ...) = 10 + 2 × 6/(1 − 0.6) = 10 + 2 × 15 = 40 m.

Words to know
infinite series
a sum with no last term, written with ... or with ∞ above the sigma
converge
for partial sums to settle closer and closer to one number, which is called the sum
diverge
for partial sums to grow without bound or never settle, so the series has no sum
limit
the number the partial sums approach as the number of terms grows
Check yourself

1. What is the sum of the infinite series 8 + 4 + 2 + 1 + ...?

2. Which infinite series has no finite sum?

3. What is the sum of 12 − 4 + 4/3 − 4/9 + ...?

57.8

Repeating Decimals and Steady States

Main ideaA repeating decimal is an infinite geometric series in disguise, and so is a dose that builds up in the body, so the same formula gives an exact answer for both.

The decimal 0.7777... means 0.7 + 0.07 + 0.007 + ..., a geometric series with a_1 = 0.7 and r = 0.1. Its sum is 0.7/(1 − 0.1) = 0.7/0.9 = 7/9. Divide 7 by 9 and you get 0.777..., so the formula is right. When the has two digits, the ratio is 0.01. So 0.363636... = 0.36/(1 − 0.01) = 0.36/0.99 = 36/99 = 4/11. Check: 4 ÷ 11 = 0.3636...

A famous case: 0.9999... = 0.9/(1 − 0.1) = 0.9/0.9 = 1. That surprises people, but the partial sums 0.9, 0.99, 0.999 close in on 1 and nothing else. A decimal with a non-repeating start splits into pieces: 2.1555... = 2.1 + (0.05 + 0.005 + ...) = 2.1 + 0.05/0.9 = 2.1 + 1/18 = 21/10 + 1/18. With the common denominator 90 that is 189/90 + 5/90 = 194/90 = 97/45. Check: 97 ÷ 45 = 2.1555...

The same idea runs a medicine schedule. A patient takes 100 mg every morning, and 40% of the drug is still in the body 24 hours later. Right after the second dose the body holds 100 + 40 = 140 mg. After the third: 100 + 0.4 × 140 = 156. After the fourth: 100 + 0.4 × 156 = 162.4. In the long run the amount just after a dose settles at a : 100 + 40 + 16 + 6.4 + ... = 100/(1 − 0.4) = 166.67 mg. The most common error is using the wrong ratio, such as 0.1 for a two-digit repeating block.

Words to know
repeating decimal
a decimal whose digits repeat in a block forever, like 0.3636...
repeating block
the group of digits that repeats; a block of two digits means the ratio is 0.01
steady state
the level a repeated process settles at, where what is added each step equals what is lost
Check yourself

1. Written as a fraction in lowest terms, 0.4444... equals which of these?

2. Written as a fraction in lowest terms, 0.272727... equals which of these?

3. A patient takes 50 mg each day and 60% remains after 24 hours. What long-run amount is in the body right after a dose?

Section 4

Recursion in the World

57.9

Fibonacci and the Golden Ratio

Main ideaThe Fibonacci sequence adds its two previous terms to get the next, and the ratio of neighboring terms settles toward the golden ratio, about 1.618.

In 1202 Leonardo of Pisa, known as Fibonacci, published Liber Abaci, a book that helped bring Hindu-Arabic numerals to Europe. One of its puzzles asks how rabbit pairs multiply if each grown pair produces a new pair every month and a new pair takes a month to grow up. The pair counts follow a rule with two starting terms: F_1 = 1, F_2 = 1, and F_n = F_(n−1) + F_(n−2). That gives 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144. This is the , the best-known example of a rule that looks back two steps.

Divide each term by the one before it: 8/5 = 1.6, 13/8 = 1.625, 21/13 ≈ 1.615, 34/21 ≈ 1.619, 55/34 ≈ 1.618, 89/55 ≈ 1.618. The ratios bounce above and below a fixed number and close in on it. That number is the , φ = (1 + √5)/2 ≈ 1.618. It is the positive solution of x^2 = x + 1; check that 1.618^2 ≈ 2.618 ≈ 1.618 + 1. A rectangle whose long side is φ times its short side is a golden rectangle: cut off a square and the leftover piece is another golden rectangle.

Fibonacci numbers turn up when counting spirals on a pineapple or the seed head of a sunflower, which often number 8, 13, 21 or 34. The sequence is not geometric, since the ratio is only approximately constant, but it gets closer to geometric with every term. A useful shortcut: F_n is φ^n/√5 rounded to the nearest whole number. For n = 10 that is about 122.99/2.236 ≈ 55.0, and F_10 = 55. Any sequence with the same add-the-last-two rule, such as 2, 1, 3, 4, 7, 11, has ratios that approach φ too.

Words to know
Fibonacci sequence
1, 1, 2, 3, 5, 8, ..., where each term is the sum of the two before it
golden ratio
the number φ = (1 + √5)/2 ≈ 1.618, the positive solution of x^2 = x + 1
two-step recursion
a rule that uses the two previous terms, so it needs two starting values
Check yourself

1. In the Fibonacci sequence, what term comes after 34, 55, 89?

2. What is 21/13, rounded to three decimal places?

3. The golden ratio φ is a solution of which equation?

57.10

Loans and Populations

Main ideaMany real processes are recursive: next month's balance or next year's population comes from this one by a fixed rule, and stepping the rule forward shows where it goes.

You borrow $1,000 at 1% interest per month and pay $100 each month. Each month the lender adds interest first, then subtracts your payment. The rule is B_0 = 1000 and B_n = 1.01 × B_(n−1) − 100. Step it: B_1 = 1010 − 100 = 910. B_2 = 1.01 × 910 − 100 = 919.10 − 100 = 819.10. B_3 = 1.01 × 819.10 − 100 = 827.29 − 100 = 727.29. The debt falls a little faster each month because the interest charge shrinks as the balance shrinks.

A deer herd of 500 grows 8% a year, and wildlife managers remove 30 deer each year. The rule is P_n = 1.08 × P_(n−1) − 30. Then P_1 = 540 − 30 = 510, P_2 = 550.8 − 30 = 520.8, and P_3 = 562.46 − 30 = 532.46. Is there a size where the herd holds steady? Set P = 1.08P − 30, so 0.08P = 30 and P = 375. That is the . Check: 1.08 × 375 = 405, and 405 − 30 = 375. A herd of exactly 375 stays at 375. Our herd started above 375, so growth outruns the removals and it keeps rising.

Recursive rules are how spreadsheets and calculators handle these problems: fill in the rule once and drag it down the column. An explicit formula exists but is messier, so people usually step the rule. Two errors to avoid: subtracting the payment before the interest is added, which understates the charge, and applying the growth rate to the original amount every time instead of to the new total. Growth on growth is called , and it is why the herd’s yearly increase gets bigger each year.

Words to know
recursive model
a rule that computes each new value from the value before it, like B_n = 1.01 × B_(n−1) − 100
balance
the amount still owed on a loan after interest and payments
equilibrium
a value that the rule sends to itself, so the quantity holds steady there
compounding
growth applied to a total that already includes earlier growth
Check yourself

1. A balance follows B_n = 1.02 × B_(n−1) − 50 with B_0 = 800. What is B_1?

2. A population follows P_n = 1.05 × P_(n−1) − 40. At what size does it hold steady?

3. What does the rule B_n = 1.005 × B_(n−1) − 150 describe?

57.11

Fractals and Self-Similarity

Main ideaA fractal is built by repeating one rule at ever smaller scales, and geometric sequences describe how its pieces multiply and shrink.

Start with a straight segment of length 1. Replace its middle third with two sides of a small triangle that points outward. Now you have 4 segments, each 1/3 long, total length 4/3. Do the same to each of those 4 segments: 16 segments, each 1/9 long, total length 16/9. This is the Koch curve. At n it has 4^n segments, each of length (1/3)^n, so its total length is (4/3)^n. At stage 3 that is 64 segments of length 1/27, total 64/27 ≈ 2.37. The length forms a geometric sequence with ratio 4/3, greater than 1, so it grows without bound, even though the whole curve fits in a small box.

The Sierpinski triangle goes the other way. Take a shaded triangle and remove the middle triangle formed by the midpoints of its sides, leaving 3 shaded triangles, each with 1/4 of the area. Repeat on each of those. At stage n there are 3^n shaded triangles, each with (1/4)^n of the original area, so the shaded area is (3/4)^n. At stage 4 that is 81 triangles covering 81/256 ≈ 0.316 of the original. The shaded area shrinks toward 0 while the count of triangles explodes.

Shapes like these are : the word was coined by Benoit Mandelbrot in 1975 for shapes that look similar at every scale. Zoom in on a piece of the Koch curve and you see the same crinkled shape again; that property is called . Coastlines, fern leaves, river networks and the branching airways of the lungs all show it in rough form. The common error is mixing up the two sequences: the count of pieces grows (ratio 4, or 3), while the size of each piece shrinks (ratio 1/3, or 1/4). Both are geometric, but with different ratios.

Words to know
fractal
a shape built by repeating a rule at smaller and smaller scales
self-similarity
the property that a small piece of a shape looks like the whole shape
stage
one round of applying the rule; stage 0 is the starting shape
iteration
repeating the same rule over and over, feeding each result back in
Check yourself

1. How many segments does the Koch curve have at stage 4?

2. What fraction of the original area is shaded in the Sierpinski triangle at stage 3?

3. Why does the total length of the Koch curve grow without bound?

Chapter review

Sequences and Series

0 / 8

1. What is the 12th term of the arithmetic sequence 7, 11, 15, 19, ...?

2. What is the 6th term of the geometric sequence 2, 6, 18, ...?

3. What is Σ from k = 1 to 5 of (4k − 1)?

4. What is the sum of the first 25 terms of the sequence 10, 13, 16, ...?

5. What is the sum of the infinite series 20 + 5 + 1.25 + ...?

6. Which fraction equals 0.181818...?

7. A sequence is defined by a_1 = 4, a_2 = 6, and a_n = a_(n−1) + a_(n−2). What is a_5?

8. A savings balance follows S_n = 1.03 × S_(n−1) + 200 with S_0 = 1000. What is S_2, rounded to the cent?

Chapter

Modeling With Functions

Modeling
Big questionHow do you turn a messy real question into math you can solve, and how do you know whether to trust the answer that comes back?
The story

Emptying Soldier Field

A stadium on the lakefront, tens of thousands of people, and a question that has to be answered with a pencil before anyone opens a gate.

Soldier Field sits on Chicago's lakefront, just south of downtown, and it has held crowds since it opened in 1924. On a Bears Sunday more than sixty thousand people fill it. When the final whistle blows, all of them want to leave at once. Marcus, an engineering student on a class visit, is handed a question by the stadium's operations manager: "If we had to clear the seating bowl in ten minutes, could we?" There is no way to test it with a real crowd. He has to build a model.

Marcus starts with the simplest picture he can. Suppose 61,000 people are inside. Suppose the exits together can pass 100 people every second. Then the time to empty is 61,000 ÷ 100 = 610 seconds, a little over 10 minutes. He writes the model as a function: the number of people still inside after t seconds is N(t) = 61,000 − 100t, and the bowl is empty when N(t) = 0, at t = 610. Clean, quick, and probably wrong in a way he cannot yet see.

So he checks it against what he knows about crowds. At the final whistle, nobody is at the gates yet; people stand, gather their things and shuffle up the aisles. The exits do not run at full speed from second one. Marcus revises: the flow ramps up from 0 to 100 people per second over the first two minutes, then holds at 100. In those two minutes the average flow is 50 per second, so 50 × 120 = 6,000 people get out. The remaining 55,000 take 55,000 ÷ 100 = 550 seconds. Total: 120 + 550 = 670 seconds, about 11 minutes.

Then he asks the harder question: how sure is that 100 per second? If the true rate is 80, the main phase takes 55,000 ÷ 80 ≈ 688 seconds and the total is about 13.5 minutes. If it is 120, the total drops to about 9.6 minutes. So his honest answer is not one number but a range: roughly 10 to 13 minutes, depending mostly on the gate rate. That is the shape of every modeling problem in this chapter: a question, a set of assumptions, a function, a check against reality, a revision, and a result reported with its limits.

Talk about itWhich of Marcus's assumptions would you question first, and how could you test it without a stadium full of people?
Section 1

The Modeling Cycle

58.1

From Question to Model

Main ideaA model starts with a sharp question and a short list of assumptions, and the assumptions decide which math you can use.

A school installs a water-bottle filling station. "Was it worth it?" is too vague to compute. A sharper question is: how many disposable bottles will students skip in one school year? To answer it you need , statements you accept as true for now so the math can begin. Suppose the school has 800 students, each uses the station 0.5 times per day instead of buying a bottle, and the year has 180 school days. Then bottles skipped = 800 × 0.5 × 180 = 72,000.

That calculation is a : a simplified version of the situation written in math. Give its parts names, and it becomes a function you can reuse. Let S be the number of students, u the uses per student per day and D the school days; then B = S × u × D. Every assumption is a place the model could be wrong, so write them down in a list. Perhaps not every fill replaces a bottle; if only 1 in 4 does, the estimate drops to 72,000 ÷ 4 = 18,000. Perhaps attendance is not 100%.

The is the loop you walk around: ask a clear question, list assumptions, build the model, compute, check the result against reality, revise, and report. You rarely get it right the first time, and that is the point of the loop. A units check catches many errors early: students × (uses per student per day) × days = uses. If your formula ends in "students × days" with nothing per day, a factor is missing.

Words to know
model
a simplified mathematical version of a real situation, built to answer a question
assumption
a statement you accept as true for now so that the math can begin
variable
a quantity in a model that can take different values, named with a letter
modeling cycle
the loop: question, assumptions, model, compute, check, revise, report
Check yourself

1. A school has 600 students, each uses a filling station 0.4 times per day, and there are 180 school days. How many uses is that per year?

2. In the bottle model, which statement is an assumption rather than a measured fact?

3. What is the first step of the modeling cycle?

58.2

Checking and Revising

Main ideaA model is checked against reality or common sense, and when it misses, you change an assumption and go around the cycle again.

A cup of coffee starts at 90 °C in a 20 °C room. First model: it cools 10 degrees per minute, so T(t) = 90 − 10t. After 5 minutes it predicts 40 °C. After 10 minutes it predicts 90 − 100 = −10 °C. That is colder than the room, which cannot happen. The model has failed a . The wrong assumption is "constant rate"; coffee cools fast when it is hot and slowly when it is nearly room temperature.

Revised model: the gap between coffee and room shrinks by the same percent each minute. The gap starts at 70 degrees. If it loses 10% a minute, T(t) = 20 + 70 × 0.9^t. At t = 10: 0.9^10 ≈ 0.349, so 70 × 0.349 ≈ 24.4, and T ≈ 44.4 °C. A thermometer reading of 45 °C at 10 minutes says the revised model is close. Notice that you did not fudge the answer; you changed an assumption and recomputed. That is what means.

Three checks catch most bad models. Check the : at t = 0 the model gives 20 + 70 = 90, correct, and for very large t it approaches 20, the room, also correct. Check against a measured point, as we did at 10 minutes. Check the direction and size of change: cooling should slow down, and it does. A model that matches one data point can still be wrong, so use several checks, not one.

Words to know
reality check
asking whether a model's output is even possible, like a temperature below the room's
revise
change an assumption and rebuild the model, rather than adjusting the answer by hand
boundary case
an extreme input, like time 0 or a very large time, where you know what the answer should be
Check yourself

1. What does the model T(t) = 20 + 70 × 0.9^t give at t = 0?

2. A linear cooling model predicts −10 °C in a 20 °C room. What is the right response?

3. In the long run, what temperature does T(t) = 20 + 70 × 0.9^t approach?

Section 2

Choosing a Function Family

58.3

Reading Change in a Table

Main ideaConstant first differences point to a linear model, constant second differences to a quadratic, and constant ratios to an exponential.

A table with equally spaced inputs tells you its family if you look at how the outputs change. For x = 0, 1, 2, 3, 4 with y = 3, 7, 11, 15, 19, the are 4, 4, 4, 4. Constant first differences mean a linear model, y = 4x + 3, with the difference as the slope. Check x = 4: 4(4) + 3 = 19.

For x = 1, 2, 3, 4, 5 with y = 2, 5, 10, 17, 26, the first differences are 3, 5, 7, 9. Not constant. Take the differences of those: 2, 2, 2. Constant mean a quadratic, and the second difference equals 2a, so a = 1. Here y = x^2 + 1 fits every row: 1 + 1 = 2, 4 + 1 = 5, 9 + 1 = 10, 16 + 1 = 17, 25 + 1 = 26.

For x = 0, 1, 2, 3, 4 with y = 5, 10, 20, 40, 80, the first differences 5, 10, 20, 40 grow, but the ratios 10/5, 20/10, 40/20, 80/40 are all 2. A constant means an exponential, y = 5 × 2^x. Real data are never this clean, so look for differences or ratios that are roughly constant. The common error is to see growing differences and shout "exponential" without checking ratios; a quadratic’s differences also grow, but in a straight-line way.

One more caution: the inputs must be equally spaced for these tests to work. If x jumps 1, 2, 4, 8, the differences mean nothing, because each step covers a different distance. When a table has uneven spacing, either compute the change per unit of x or plot the points and look at the shape of the graph.

Words to know
first differences
the amounts by which the outputs change from one row to the next
second differences
the differences of the first differences; constant for a quadratic
ratio
one output divided by the previous one; constant for an exponential
function family
a group of functions with the same shape, like linear, quadratic or exponential
Check yourself

1. For x = 0, 1, 2, 3 a table gives y = 6, 11, 16, 21. Which model fits?

2. For x = 0, 1, 2, 3 a table gives y = 3, 6, 12, 24. Which family fits?

3. A table's second differences are all 6. What is the coefficient a in the quadratic y = ax^2 + bx + c?

58.4

Clues in the Situation

Main ideaWords in a situation signal a family: a fixed amount per unit means linear, a percent per unit means exponential, thrown objects and areas mean quadratic, and repeating cycles mean periodic.

A taxi charges $3 plus $2.25 per mile. "Plus a fixed amount per mile" is the signature of a model: C(m) = 3 + 2.25m, so 10 miles cost 3 + 22.5 = $25.50. A bacteria culture doubles every 3 hours. "Doubles every" or "grows 5% each" is the signature of an : N(t) = N_0 × 2^(t/3), so after 12 hours the count is 2^4 = 16 times the start.

A ball thrown upward at 40 feet per second from a height of 5 feet follows h(t) = −16t^2 + 40t + 5, in feet. Anything thrown, and any area that depends on a length, is . The ball peaks at t = 40/32 = 1.25 seconds, where h = −16(1.5625) + 50 + 5 = −25 + 55 = 30 feet. Hours of daylight in Chicago rise and fall every year, so daylight is and calls for a sine or cosine. A rumor in a school of fixed size grows fast, then levels off as it runs out of people: that is .

The trap is linear versus exponential when the word "percent" is nearby. "Grows by 5 a year" is linear; "grows by 5% a year" is exponential. Start both at 100 and run 20 years. Linear: 100 + 5 × 20 = 200. Exponential: 100 × 1.05^20 ≈ 100 × 2.653 ≈ 265. The gap only widens with time. When a situation mentions a rate, ask whether it is an amount per unit or a percent per unit before you choose.

Words to know
linear
changes by a fixed amount per unit of input; a constant slope
exponential
changes by a fixed percent or factor per unit of input
quadratic
has an x^2 term; models thrown objects and areas
periodic
repeats the same pattern over and over, like daylight through a year
logistic
grows quickly at first, then levels off toward a ceiling
Check yourself

1. A culture of 500 bacteria doubles every 3 hours. How many are there after 12 hours?

2. Which situation is best modeled by a quadratic function?

3. Which situation calls for a periodic model?

58.5

Fitting a Model to Data

Main ideaTechnology finds the line or curve of best fit, and residuals, actual minus predicted, tell you how well it fits and whether the family is right.

Five students record hours studied and quiz scores: (1, 62), (2, 70), (3, 74), (4, 83), (5, 88). A calculator or spreadsheet computes the , also called the line: y = 6.5x + 55.9. The slope says each extra hour goes with about 6.5 more points; the intercept, 55.9, is the model’s score for zero hours. Predict 6 hours: 6.5(6) + 55.9 = 39 + 55.9 = 94.9.

How good is the fit? For each point, compute the : actual minus predicted. At x = 3 the line predicts 6.5(3) + 55.9 = 75.4, the actual score is 74, so the residual is 74 − 75.4 = −1.4. At x = 1: predicted 62.4, residual −0.4. At x = 4: predicted 81.9, residual 1.1. The residuals are small and scattered above and below zero, which is what a good fit looks like. If the residuals form a pattern, such as all negative in the middle and positive at the ends, the data are curving and you should try another family.

Technology also fits exponential and quadratic models, and reports the r, which runs from −1 to 1. Values near 1 or −1 mean the points hug a line; values near 0 mean no linear pattern. Two cautions. First, a strong r does not prove that one thing causes the other. Second, do not far beyond the data: 12 hours gives 6.5(12) + 55.9 = 133.9, more than 100 points, which is impossible. The model is only trusted where the data live.

Words to know
line of best fit
the line that comes closest, overall, to a set of data points
regression
the method technology uses to find the best-fitting line or curve
residual
actual value minus the value the model predicts, for one data point
correlation coefficient
the number r between −1 and 1 that measures how tightly points follow a line
extrapolate
use a model outside the range of the data it was built from
Check yourself

1. The line y = 6.5x + 55.9 predicts a score for 2 hours. The actual score was 70. What is the residual?

2. A line's residuals are all negative in the middle of the data and positive at both ends. What should you do?

3. The line y = 6.5x + 55.9 predicts 107.9 points for 8 hours of study. What does this show?

Section 3

Building Bigger Models

58.6

Combining Functions

Main ideaReal models are often built from parts: subtracting cost from revenue, multiplying price by quantity, or feeding one function's output into another.

A club sells T-shirts. Making them costs $200 for the design plus $4 per shirt, so C(x) = 200 + 4x. Each shirt sells for $12, so is R(x) = 12x. is what is left: P(x) = R(x) − C(x) = 12x − (200 + 4x) = 8x − 200. The point is where profit is zero: 8x = 200, so x = 25 shirts. Check: 25 shirts bring in 12 × 25 = $300 and cost 200 + 100 = $300. Sell 40 and the profit is 8(40) − 200 = $120.

Sometimes one function feeds another. A store takes 20% off, so D(p) = 0.8p, and then the register adds 8% tax, so T(p) = 1.08p. Doing the discount first and then the tax is the T(D(p)) = 1.08 × 0.8p = 0.864p. Order does not matter for two multiplications. It matters when a $10 coupon is involved. Coupon then tax: 1.08(p − 10) = 1.08p − 10.8. Tax then coupon: 1.08p − 10. On a $50 item that is $43.20 versus $44.00.

Multiplying functions builds a model too. Suppose the number of shirts you can sell at price p is q(p) = 500 − 20p; raise the price and fewer people buy. Revenue is price times quantity: R(p) = p(500 − 20p) = 500p − 20p^2, a quadratic that opens downward. Its peak is at p = 500/40 = $12.50, where R = 500(12.5) − 20(156.25) = 6250 − 3125 = $3,125. Two linear pieces combined to make a quadratic with a best price, something neither piece showed alone.

Words to know
revenue
the money taken in: price times number sold
profit
revenue minus cost
break-even
the number sold at which profit is exactly zero
composition
using the output of one function as the input of another, written f(g(x))
Check yourself

1. Profit is P(x) = 8x − 200. What is the profit from selling 40 shirts?

2. Let f(x) = 0.8x and g(x) = x − 10. What is f(g(50))?

3. Revenue is R(p) = p(500 − 20p). What is the revenue at a price of $10?

58.7

Transforming a Model

Main ideaShifting, stretching or flipping a parent function adjusts a model to a new starting time, starting value or scale without changing its family.

Chicago gets about 15 hours of daylight in late June and about 9 in late December, so the average is about 12 and the swing above or below it is about 3 hours. A sine wave with those numbers, with t the day of the year, is D(t) = 12 + 3 sin(2π(t − 80)/365). The 12 is a : it lifts the wave from a middle of 0 to a middle of 12. The 3 is a vertical : it makes the wave rise and fall 3 hours instead of 1. The (t − 80) is a that puts the upward crossing near day 80, around the spring equinox, and the 365 sets the period at one year.

The same moves adjust any . A ball thrown from a 5-foot height follows h(t) = −16t^2 + 40t + 5. Throw it the same way from a balcony 20 feet higher and every height goes up 20: h(t) = −16t^2 + 40t + 25. Throw it 2 seconds later and the clock is shifted: h(t) = −16(t − 2)^2 + 40(t − 2) + 5. In general, f(x) + k moves a graph up k, f(x − h) moves it right h, a × f(x) stretches it vertically by a, and −f(x) flips it.

Horizontal shifts matter most with exponentials. A town of 1,200 people in 2010 grows 3% a year. The model P(t) = 1200 × 1.03^(t − 2010) uses the year directly; the shift makes the exponent count years since 2010. For 2025: 1200 × 1.03^15 ≈ 1200 × 1.558 ≈ 1,870. Forget the shift and you compute 1.03^2025, a number with 26 digits. Always ask what value of the input makes the exponent zero, and check that the model gives the starting value there.

Words to know
parent function
the simplest function in a family, like sin(x), x^2 or 2^x
vertical shift
adding a constant to a function, which moves its graph up or down
horizontal shift
replacing x with x − h, which moves the graph right by h
stretch
multiplying a function by a constant, which makes its rises and falls larger or smaller
Check yourself

1. A ball follows h(t) = −16t^2 + 40t + 5. It is thrown the same way from a start 20 feet higher. Which model fits?

2. In D(t) = 12 + 3 sin(2π(t − 80)/365), what does the 3 represent?

3. Why does the model P(t) = 1200 × 1.03^(t − 2010) subtract 2010 in the exponent?

58.8

Piecewise Models

Main ideaWhen the rule changes at a threshold, like a parking rate, a tax bracket or a shipping tier, a piecewise function models each piece on its own interval.

A garage charges $5 for the first hour and $3 for each additional hour or any part of an hour. For 3.5 hours you pay $5 for hour one, then 2.5 extra hours round up to 3, so 5 + 3 × 3 = $14. A rule like this is a : one formula on one of inputs, another formula on the next. Because the price jumps at each whole hour and stays flat in between, this piece is also a .

Income taxes use too. Take an example schedule: no tax on the first $10,000, 10% on the part from $10,000 to $40,000, and 20% on the part above $40,000. On $55,000 of income the tax is 0 + 0.10 × 30,000 + 0.20 × 15,000 = 3,000 + 3,000 = $6,000. The common error is charging 20% on all $55,000, which gives $11,000, nearly double. Written as a function: T(x) = 0 for x ≤ 10,000; T(x) = 0.10(x − 10,000) for 10,000 < x ≤ 40,000; T(x) = 3,000 + 0.20(x − 40,000) for x > 40,000. Check the seam at 40,000: the middle piece gives 0.10 × 30,000 = 3,000, and the top piece starts at 3,000, so the pieces meet.

The Soldier Field model from the chapter opening is piecewise as well. Let F(t) be the flow in people per minute at minute t. For 0 ≤ t ≤ 2 the flow ramps: F(t) = 3000t. For t > 2 it holds: F(t) = 6000. The number of people out by minute 2 is the average flow times the time, 3000 × 2 = 6,000, and after that 6,000 leave each minute, so by minute 10 the count is 6,000 + 8 × 6,000 = 54,000. A single formula could not capture the ramp and the plateau; two pieces do.

Words to know
piecewise function
a function defined by different formulas on different intervals of the input
threshold
the input value where one rule stops and the next begins
step function
a piecewise function whose value is constant on each interval and jumps at the thresholds
interval
a stretch of input values, like 10,000 < x ≤ 40,000
Check yourself

1. The garage charges $5 for the first hour and $3 per additional hour or part of an hour. What does 4.5 hours cost?

2. Using the example tax schedule (0% to $10,000, 10% from $10,000 to $40,000, 20% above), what is the tax on $30,000?

3. Which situation is best modeled by a step function?

Section 4

Error, Limits and Reporting

58.9

Error and Sensitivity

Main ideaEvery model's answer carries error from its inputs and assumptions, so test how much the answer moves when an input moves, and report a range rather than one number.

In the Soldier Field model, 61,000 people at 100 per second gives 610 seconds. But the rate was a guess. Try 80 per second: 61,000 ÷ 80 = 762.5 seconds, about 12.7 minutes. Try 120: 61,000 ÷ 120 ≈ 508 seconds, about 8.5 minutes. Moving one input by 20% moved the answer by about 20% as well. That test is called analysis, and it tells you which assumptions deserve the most care. An honest report gives the range: about 8.5 to 12.7 minutes.

When you can compare a model to a measurement, compute the : |predicted − actual| ÷ actual × 100. The coffee model predicted 44.4 °C at 10 minutes and the thermometer read 45 °C, so the error is 0.6 ÷ 45 × 100 ≈ 1.3%. The is the plain difference, 0.6 degrees. Measurements carry their own error too: a length recorded as 12.5 cm to the nearest 0.1 cm could really be anywhere from 12.45 to 12.55 cm.

Errors spread through a calculation. A rectangle measured at 12.5 cm by 8.0 cm has an area of 100 cm^2 by the numbers. But the true sides could be as small as 12.45 and 7.95, giving 12.45 × 7.95 ≈ 98.98 cm^2, or as large as 12.55 and 8.05, giving 12.55 × 8.05 ≈ 101.03 cm^2. Reporting "100.0000" would claim a precision the measurements never had. Report the area as about 99 to 101 cm^2, an .

Words to know
sensitivity
how much a model's answer changes when one input changes
percent error
|predicted − actual| divided by actual, times 100
absolute error
the plain difference between a predicted and an actual value, in the same units
interval estimate
a range of values, like 99 to 101 cm^2, instead of a single number
Check yourself

1. A model predicted 48 and the measured value was 50. What is the percent error?

2. If the exits pass only 50 people per second, how long does it take 61,000 people to leave?

3. A model's answer barely changes when one input is changed by 20%. What does that tell you?

58.10

The Limits of a Model

Main ideaA model is only as good as its assumptions and its data range, so know where it stops applying and say so.

An 8-year-old is 128 cm tall and has grown 6 cm a year. The linear model h = 128 + 6(a − 8) fits ages 6 to 10 well. Push it to age 30 and it predicts 128 + 6 × 22 = 260 cm, taller than any person who has ever lived. The model is not wrong; it was used outside its , the range of inputs where its assumptions hold. Growth stops in the late teens, and the model never knew that.

Exponential growth has the same problem. In 1798 Thomas Malthus argued that populations tend to grow geometrically while food supplies grow arithmetically. In 1838 Pierre Verhulst proposed a fix, the , in which growth slows as the population nears a ceiling called the . One form is P(t) = 1000/(1 + 9 × 0.5^t), with t in days. At t = 0: 1000/(1 + 9) = 100. At t = 3: 0.5^3 = 0.125, so P = 1000/(1 + 1.125) = 1000/2.125 ≈ 471. At t = 10: 0.5^10 ≈ 0.00098, so P ≈ 1000/1.0088 ≈ 991. The curve starts like an exponential and flattens at 1000.

Other limits hide in plain sight. Models ignore randomness, so a real crowd will not empty on the same second twice. Inputs were measured once, under one set of conditions; a rainy day changes the gate rate. Assumptions can be unspoken: the Soldier Field model assumes everyone leaves at the final whistle and no gate is blocked. And precision can lie: reporting 10.1667 minutes when the rate is known only to ±20% pretends to a certainty you do not have. When a model guides a real decision, like how many gates to staff, it should be checked against a drill.

Words to know
domain of validity
the range of inputs where a model's assumptions hold and its answers can be trusted
logistic model
growth that starts like an exponential and levels off at a ceiling
carrying capacity
the ceiling a logistic model approaches; the most the environment can support
extrapolation
using a model beyond the data or conditions it was built from
Check yourself

1. What does P(t) = 1000/(1 + 9 × 0.5^t) give at t = 0?

2. A growth model built from ages 6 to 10 predicts a height of 260 cm at age 30. What went wrong?

3. In the long run, what does the logistic model P(t) = 1000/(1 + 9 × 0.5^t) approach?

58.11

Communicating a Result

Main ideaA finished model is reported with the question, the assumptions, the method, the answer with its range, and what would change it.

A model nobody can follow is not finished. A good report has five parts. The question: how long to empty Soldier Field? The assumptions: 61,000 people, a combined gate rate near 100 per second, a two-minute ramp-up. The method: a piecewise flow model, ramp then plateau. The answer with its range: about 11 minutes, likely between 9 and 13. The : the rate is a guess, weather and blocked gates were ignored, and a drill should confirm it. A reader can now check every step and the number.

Show the model and the data together on one graph, with both axes labeled and units named. Mark the range where the model applies, and stop drawing it where it does not. In tables, round to a the inputs support: "about 10 minutes," not "10.1667 minutes." Then say what the number means for the decision. "Ten to thirteen minutes" matters only if the reader learns that the goal was ten, so the current gates are borderline.

The common failures are the same everywhere: hiding an assumption, reporting more digits than the data allow, leaving out the question so the number floats free, and choosing only the data that agree with you. A simple test is to hand your report to a classmate. If they can reproduce your answer from what you wrote, and can name the assumption they would attack first, the report is doing its job. That is the standard a transit planner, an engineer or a city budget analyst is held to as well.

Words to know
limitation
a stated way the model could be wrong or a condition it does not cover
reproduce
to get the same result again by following the report's stated steps
precision
how many digits a number carries; it should match how well the inputs are known
range
the low and high values an answer could reasonably take
Check yourself

1. A model gives 10.1667 minutes, but its main input is known only to about ±20%. How should the answer be reported?

2. Which of these must a model report include?

3. What should a graph of a model and its data show?

Chapter review

Modeling With Functions

0 / 8

1. A model assumes 700 students each use a fountain 0.3 times a day for 180 days. How many uses per year?

2. For x = 0, 1, 2, 3 a table gives y = 2, 8, 32, 128. Which family fits?

3. Cost is C(x) = 150 + 6x and revenue is R(x) = 10x. At what number sold does the business break even?

4. A line of best fit predicts 85 for a data point whose actual value is 81. What is the residual?

5. Using the chapter's example tax schedule (0% to $10,000, 10% from $10,000 to $40,000, 20% above), what is the tax on $50,000?

6. A model predicts 200 and the measured value is 250. What is the percent error?

7. The model h(t) = −16t^2 + 30t + 4 describes a thrown ball. Which model describes the same throw from a start 10 feet higher?

8. A logistic model P(t) = 500/(1 + 4 × 0.5^t) describes a population. What is its carrying capacity?

Unit wrap-up

Sequences, Series and Modeling

Twelve words, twelve meanings

0 / 12

Tap a word, then tap its meaning. A right pair locks in green.

Words
Meanings
Unit test

Fifteen questions across the unit

0 / 15

1. What is the 15th term of the arithmetic sequence 9, 13, 17, 21, ...?

2. A geometric sequence has a_1 = 3 and r = 4. What is a_5?

3. Which rule is recursive?

4. What is Σ from k = 2 to 5 of (k^2 − 1)?

5. What is the sum of the first 40 terms of the arithmetic sequence 6, 9, 12, ...?

6. What is 1 + 3 + 9 + 27 + 81 + 243?

7. What is the sum of the infinite series 30 + 6 + 1.2 + 0.24 + ...?

8. Which infinite geometric series converges?

9. Written as a fraction in lowest terms, 0.5555... equals which of these?

10. In the Fibonacci sequence 1, 1, 2, 3, 5, 8, 13, 21, ..., what is the 10th term?

11. A loan follows B_n = 1.01 × B_(n−1) − 200 with B_0 = 5,000. What is B_1?

12. For x = 0, 1, 2, 3 a table gives y = 1, 4, 9, 16. Its first differences are 3, 5, 7. Which family fits?

13. A town of 2,000 people grows 4% a year. Which model gives the population t years from now?

14. A best-fit line predicts 42 for a point whose actual value is 45. What is the residual, and what does its sign mean?

15. A crowd model gives 610 seconds using a gate rate that is only a rough guess. What is the best way to report the result?

Spiral review

Five questions from earlier units

0 / 5

1. (Unit 24) sin θ = 12/13 and cos θ = −5/13. What is tan θ?

2. (Unit 23) Solve √(x + 4) = x − 2.

3. (Unit 24) Two sides of a triangle are 6 and 10 with a 120° angle between them. The third side is

4. (Unit 23) What is the remainder when x^2 + 4x + 1 is divided by x + 1?

5. (Unit 24) A substance loses 20% of its mass each year. Its half-life, to the nearest tenth, is

Write it

A friend saves $20 in the first week and adds $2 more each week than the week before ($20, $22, $24, ...). Find the total saved after 30 weeks two ways: with the arithmetic series formula and with Gauss's pairing idea. Explain which method you would teach a classmate and why. Then name one real-world assumption in this plan that could fail, and say how it would change the total.

  • State the answer first, then show how you got it.
  • Write the 30th term before you use the sum formula, and show the substitution.
  • For the pairing method, say how many pairs there are and what each pair adds to.
  • Say why the two methods must give the same number.
  • Check your total by adding the first few terms and comparing the size.
0 wordsSaved on this device as you type.

Practice rooms

Rooms already on the site that belong to this unit — cards, quizzes, a lab.

For the teacher

Every lesson keeps its own three checks; a lesson is ticked when all three are right. Chapter reviews, the unit test and its spiral review (five questions from earlier units in this band) score on the page. When the site is connected to your sheet, or the link carries ?dest=, each one also has a Send box: the first-try score, the standards, the supports used, the attempt number and the minutes go to your sheet as an IEP data point.

Print this page for a paper copy of the readings, the sources, the words and the questions; the answers print as dashed boxes under each question.

Fact-check notes for this course live in the handoff: quotes marked (paraphrased) were set that way on purpose.