Historical Context & Motivation
Humans have been collecting data for thousands of years — counting harvests, tracking star positions, and recording trade numbers. But raw data by itself is just a pile of numbers. The real power comes when you find a mathematical model — a function or equation — that captures the pattern in the data. Once you have a model, you can make predictions, test theories, and understand the forces driving the numbers.
For centuries, fitting a model to data meant hours of hand calculations. Mathematicians would plot points on graph paper, draw curves by eye, and tweak equations until they looked right. The development of least-squares regression in the early 1800s was a game-changer, but even that method required tedious arithmetic. Today, graphing calculators and software like Desmos, GeoGebra, and spreadsheets can fit a model in seconds — letting you focus on interpretation rather than computation.
The central question this lesson addresses is: Given a set of real-world data, how do I choose and fit the right model using technology, and what do the resulting parameters actually mean in context?
Core Principles & Definitions
Before jumping into technology, you need to understand the key ideas behind model fitting. A regression model is an equation whose parameters (coefficients, bases, constants) are chosen so the curve passes as close to the data points as possible. The fit is never perfect — there is always some residual error — but the goal is to make that error as small as possible while still using a model type that makes sense for the situation.
Parameter
Residual
Coefficient of Determination (R²)
Domain Constraints
Model Type
Visual Explanation — Scatter Plot & Regression Curve
The diagram below shows a set of data points (circles) and three candidate models fitted to them. Notice how the exponential curve follows the upward bend of the data much more closely than the straight line. The residuals — the vertical distances from each point to the curve — are smallest for the exponential model, which is why its R² value is highest.
When choosing a model, always start by looking at the shape of the scatter plot. If the data curves upward with increasing steepness, an exponential or power model is usually the right call. If the data rises, peaks, and falls, a quadratic model is a better candidate. A roughly straight pattern calls for a linear model. Technology can fit any model type you tell it to, but a high R² doesn't automatically mean the model makes sense — context matters just as much as the number.
Mathematical Framework
Each model type has a general equation with parameters that technology solves for. Below are the four most common regression families you will encounter in Math 3, along with the meaning of each parameter.
Technology uses the least-squares method behind the scenes: it finds the parameter values that minimize the sum of the squared residuals, Σ(observed − predicted)². You do not need to perform this calculation by hand — the calculator or software handles it. Your job is to enter the data correctly, choose the right model type, and interpret what comes out.
Model Selection — Choosing the Right Fit
One of the most important skills in model fitting is knowing which model type to try before handing the data to your calculator. The scatter plot's shape gives you the first clue, but the real-world context provides the deciding evidence. The diagram below summarizes how scatter plot shapes connect to model families.
| Clue in Context | Model to Try | Example |
|---|---|---|
| Adds/loses a fixed amount per unit time | Linear | A car travels at 60 mph — distance grows by 60 each hour. |
| Multiplies by a fixed percentage per unit time | Exponential | Bacteria double every 3 hours — population grows by ×2. |
| Rises to a max then falls, or vice versa | Quadratic | A ball thrown upward — height increases then decreases. |
| One quantity scales as a power of another | Power | The area of a circle scales as radius². |
Worked Example — Modeling Population Growth
A biologist records the population of a bacteria colony every hour. The data is shown below. We will use an exponential regression to fit a model, then interpret the parameters in context.
| Time (hours) | Population (thousands) |
|---|---|
| 0 | 5.0 |
| 1 | 6.2 |
| 2 | 7.8 |
| 3 | 9.6 |
| 4 | 12.1 |
| 5 | 14.9 |
| 6 | 18.7 |
y₁ ~ a · bˣ¹ where (x₁, y₁) is the data table. On a TI calculator, go to STAT → CALC → ExpReg. The technology returns the parameters.Strengths & Limitations of Regression Models
Regression models are incredibly useful, but they are not magic. Understanding their strengths and limitations will help you use them responsibly and avoid common mistakes like extrapolation beyond the range of your data.
| Strengths | Limitations |
|---|---|
| Technology makes fitting fast and precise — no tedious hand calculations. | Technology will fit any model you tell it to, even if the model makes no sense in context. |
| R² gives a quick, objective measure of how well the model captures the data pattern. | A high R² doesn't guarantee the model is appropriate — overfitting and wrong model types can still produce high R² values. |
| Parameters have real-world meaning (growth rate, initial value, etc.) that you can communicate to others. | Extrapolating far beyond the data range can produce wildly inaccurate predictions. |
| Models allow you to make predictions for x-values within the data range (interpolation). | Regression assumes the relationship is consistent; sudden regime changes (e.g., a pandemic) break the model. |
Connection to Advanced Modeling
The regression techniques you learn in Math 3 are the foundation for more powerful tools used in college and industry. Understanding where simple regression fits into the bigger picture will help you appreciate why mastering interpretation now is so important.
| Math 3 Approach | Advanced Approach |
|---|---|
| Fit one of a few standard model types (linear, quadratic, exponential, power). | Multiple regression with many predictor variables, logistic models, polynomial regression of higher degree. |
| Use R² to judge fit quality. | Use adjusted R², AIC, BIC, cross-validation, and residual analysis for model comparison. |
| Interpret parameters in context by inspection. | Hypothesis testing on parameters (p-values, confidence intervals) to determine statistical significance. |
| State domain constraints informally. | Formal constraint optimization, boundary conditions, and sensitivity analysis. |
In fields like data science, epidemiology, and engineering, professionals use the exact same reasoning process you are learning — identify the pattern, choose a model family, fit it with technology, and interpret the results in context. The tools get fancier, but the core thinking skill is identical. If you can explain what slope, growth factor, or vertex means in a real-world situation, you already have the mindset of a working analyst.
Practice Problems
Lesson Summary
Fitting a model to data means using technology — such as Desmos, a graphing calculator, or a spreadsheet — to find the parameters of an equation that best match a set of data points. You begin by examining the scatter plot shape and the real-world context to choose the right model type — linear for constant rates, exponential for constant percentage change, quadratic for rise-and-fall patterns, or power for scaling relationships. Technology performs a least-squares regression to minimize the total squared error and returns the best-fit parameters along with an R² value measuring how well the model explains the data.
The most important part of model fitting is interpreting the parameters in context: a slope becomes a rate of change per unit, a base becomes a growth factor, and an intercept becomes a starting value. You must also state domain constraints — the range of input values for which the model is valid — to avoid unreliable extrapolation. A high R² alone does not guarantee a good model; the equation must also make sense in the real-world situation it describes.