Transformation to Achieve Linearity vs Linear Model

Both terms below come up in the same part of the course, and students mix them up. Here is each one defined on its own, side by side, so you can see where they part company.

Transformation to achieve linearity

Regression and correlation

A transformation to achieve linearity applies a function such as a logarithm or square root to x or y so a curved pattern straightens out.

When a scatterplot curves, you can re-express one or both variables and fit the line to the new pairs instead. Growth that multiplies is the classic case: the points (1,6)(1, 6), (2,18)(2, 18), and (3,54)(3, 54) triple at every step, and taking log10y\log_{10} y turns them into (1,0.778)(1, 0.778), (2,1.255)(2, 1.255), and (3,1.732)(3, 1.732), which climb by a constant 0.4770.477 per step and therefore lie on a straight line. You then fit logy^=a+bx\log \hat{y} = a + bx (read y-hat for y^\hat{y}) and back-transform to predict in the original units, checking the residual plot of the transformed data to confirm the curve is gone. The Fall 2026 course still asks you to spot departures from linearity in a residual plot, but it has no topic on re-expressing data to straighten a curve, so transformation is college and textbook content rather than AP content.

Full entry for transformation to achieve linearity

Linear model

Regression and correlation

A linear model is a straight-line equation that uses an explanatory variable x to predict a response variable y, written y-hat = a + bx.

A linear model summarizes a scatterplot with one straight line, so any xx you choose turns into a prediction. It is written y^=a+bx\hat{y} = a + bx, where y^\hat{y} (read y-hat) is the predicted response, aa is the y-intercept, and bb is the slope. For example, if y^=12+3x\hat{y} = 12 + 3x predicts a plant's height in centimeters from weeks of growth, then at x=5x = 5 weeks the model gives 12+3(5)=2712 + 3(5) = 27 centimeters. Fit a linear model only when the scatterplot and the residual plot show a linear form, since the equation will happily produce numbers for curved data too.

Full entry for linear model

Where each one fits in the course