To linearize a quadratic graph, you replace the independent variable (x) with its square (x²) and plot your data against that new variable. If the original relationship follows a quadratic pattern like y = ax² + b, plotting y against x² produces a straight line with slope a and y-intercept b. This technique is widely used in physics and chemistry labs to verify relationships and extract constants from curved data.
Why Linearize in the First Place
A straight line is the easiest graph to analyze. You can read the slope directly, calculate a y-intercept, and draw a best-fit line with confidence. When your data curves, those tools break down. Linearization transforms a curved relationship into a straight one so you can use all the familiar tools of linear analysis: slope calculations, trend lines, and correlation checks.
In a science class, this often comes up when you suspect two variables have a quadratic relationship. For example, the distance an object falls depends on time squared (d = ½gt²). Plotting distance vs. time gives a parabola. Plotting distance vs. time squared gives a straight line whose slope equals ½g, letting you calculate gravitational acceleration directly from the graph.
Step-by-Step Process
Start with your original data table of x and y values. If the graph of y vs. x looks like a parabola, the relationship is probably quadratic, meaning y depends on x².
Create a new column in your data table for x². Square each x value. Then plot y on the vertical axis and x² on the horizontal axis. If the relationship truly is quadratic, this new graph will be a straight line.
Here’s a concrete example. Suppose you’re measuring how the braking distance of a car (y) changes with speed (x):
- Original data: Speed values of 10, 20, 30, 40, 50 and corresponding distances of 4, 16, 36, 64, 100
- New column: Square each speed value to get 100, 400, 900, 1600, 2500
- New plot: Graph distance (y-axis) against speed squared (x-axis)
The resulting graph should fall along a straight line. Draw a best-fit line through the points. The slope of that line tells you the constant in the equation y = ax², and the y-intercept gives you any additive constant.
Handling Different Quadratic Forms
Not every quadratic equation is a simple y = ax². The general form is y = ax² + bx + c, which has three unknowns. Linearization works cleanly when the relationship is dominated by the x² term, meaning bx and c are either zero or negligible. This is common in physics, where many laws naturally take the form y = ax².
If your data follows y = ax² + c (no middle term), plotting y vs. x² still gives a straight line. The slope is a and the y-intercept is c. If the full bx term is present, the simple substitution of x² won’t produce a clean straight line because you still have that leftover linear term. In that case, you’d need a different approach, such as fitting a full quadratic curve to the original data rather than trying to linearize it.
Checking Whether It Worked
After you plot y vs. x², look at how well the points fall along a straight line. A useful check is to examine the residuals, which are the vertical distances between each data point and your best-fit line. Calculate each residual by subtracting the predicted y value (from the line) from the actual y value.
Plot those residuals on their own graph, with x² on the horizontal axis and the residual value on the vertical axis. If the linearization worked, the residuals will scatter randomly above and below zero with no visible pattern. If you see a curve in the residuals, like points dipping below zero in the middle and rising at the edges, the transformation didn’t fully capture the relationship. That pattern suggests there’s still a nonlinear component your straight line isn’t accounting for.
Residuals clustered far from zero also signal a poor fit, even if they look random. Small, randomly scattered residuals are the hallmark of a successful linearization.
Other Transformations for Other Curves
Squaring x is the right move for quadratic relationships, but other types of curves call for different transformations. Recognizing which one to use depends on the shape of your original graph:
- Square root relationship (y = a√x): Plot y vs. √x
- Inverse relationship (y = a/x): Plot y vs. 1/x
- Exponential relationship (y = ae^bx): Plot ln(y) vs. x
- Power relationship (y = ax^n): Plot ln(y) vs. ln(x), and the slope gives you the exponent n
The logic is always the same: identify the nonlinear piece, transform it into a new variable, and plot against that new variable to get a straight line.
Linearization vs. Curve Fitting Software
Modern graphing calculators and software can fit a quadratic equation directly to curved data without any transformation. So why bother linearizing? In many educational settings, linearization is the expected method because it teaches you to think about the underlying relationship between variables. It also lets you use straightforward tools like rulers and slope triangles on a printed graph.
There’s also a statistical reason. The standard R² value (which measures how well a fit explains your data) is well-defined and intuitive for straight lines: a value of 0.95 means the line explains 95% of the variation. For nonlinear fits, R² loses this clean interpretation because the math behind it assumes a linear model. Research comparing model selection methods has found that R² is biased toward more complex models in nonlinear settings, often making a fit look better than it really is. Alternative measures like AICc perform significantly better at identifying the true underlying relationship, selecting the correct model roughly twice as often as R² in simulations with typical levels of experimental noise.
For a lab report or homework assignment, linearization keeps the analysis transparent and the statistics reliable. For complex datasets with multiple terms, dedicated curve-fitting software with appropriate model selection criteria is the stronger choice.

