Navigation: Wiki Home > Skills > Linear Models and Rate of Change
When a scientist measures temperature at different altitudes, or an economist tracks how prices change over time, they're looking for patterns. The simplest pattern? Constant change. If temperature drops by exactly 6 degrees for every kilometer you climb, or prices rise by $2 every year, then a straight line captures the entire relationship.
This constant-change behavior is everywhere: your car's speedometer reading when cruise control is on, the amount of medicine remaining in your body as it gets filtered out, or the cost of a phone plan based on data usage. Recognizing when a linear model applies—and knowing how to build one from data—is your first tool for making predictions.
The slope isn't just a number—it's the rate of change in context. A slope of $-10$ degrees per kilometer tells you the temperature drops 10°C for every km you ascend. That physical interpretation is what makes linear models powerful.
| Property | Value |
|---|---|
| Concept | Essential Functions |
| Chapter | Chapter 1, Section 2 |
| Difficulty | Beginner |
| Time | ~15 minutes |
A linear model describes situations where the dependent variable changes at a constant rate with respect to the independent variable:
$$y = mx + b$$
| Symbol | Name | Meaning |
|---|---|---|
| $m$ | Slope | Rate of change (how much $y$ changes per unit change in $x$) |
| $b$ | $y$-intercept | Initial value (value of $y$ when $x = 0$) |
| $x$ | Independent variable | The input you control or measure |
| $y$ | Dependent variable | The output that responds to $x$ |
Given two data points $(x_1, y_1)$ and $(x_2, y_2)$:
Step 1: Calculate the slope: $$m = \frac{y_2 - y_1}{x_2 - x_1} = \frac{\Delta y}{\Delta x}$$
Step 2: Find the $y$-intercept using one point: $$b = y_1 - mx_1$$
Step 3: Write the model: $$y = mx + b$$
The slope $m$ always has units: it's $\frac{\text{units of } y}{\text{units of } x}$.
| Scenario | Slope Interpretation |
|---|---|
| Temperature vs. altitude | $m = -6$ °C/km means temperature drops 6°C per km |
| Cost vs. quantity | $m = 15$ $/item means each additional item costs $15 |
| Distance vs. time | $m = 60$ mi/hr means traveling 60 miles per hour |
| Population vs. year | $m = 2500$ people/year means growth of 2500 per year |
Key insight: A negative slope means the quantity is decreasing; a positive slope means it's increasing.
Linear models are appropriate when:
Linear models fail when:
A taxi company charges according to the model $C = 2.50d + 3.00$, where $C$ is the cost in dollars and $d$ is the distance in miles.
A spring stretches when weight is added. With 3 kg attached, the spring is 18 cm long. With 7 kg attached, it's 26 cm long. Find a linear model relating length $L$ (in cm) to weight $w$ (in kg).
Atmospheric CO$_2$ concentration was measured at 354 ppm in 1990 and 384 ppm in 2008.
Two phone plans are available:
A researcher models bacterial population $P$ (in thousands) as a linear function of time $t$ (in hours), using data from $t = 0$ to $t = 3$:
| $t$ (hours) | 0 | 1 | 2 | 3 |
|---|---|---|---|---|
| $P$ (thousands) | 2.0 | 2.5 | 3.1 | 3.9 |
Think of slope as a conversion rate:
Just as "\$1.50 per gallon" tells you how to convert gallons to dollars, the slope tells you how to convert changes in $x$ to changes in $y$.
If $m = -6$ °C/km, then climbing 2 km means: $2 \text{ km} \times (-6 \text{ °C/km}) = -12$ °C change.
The units cancel, leaving you with the change in the dependent variable. This "dimensional analysis" view of slope makes interpretation automatic.
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| Ch1 Sec1 Skills | Section Index | Polynomial Functions |
Last updated: 2026-01-22