PSAT MATH • ALGEBRA 2

Solving Nonlinear Functions

Master the techniques for finding solutions to quadratic, absolute value, and other nonlinear equations tested on the PSAT.

Historical Context & Motivation

For thousands of years, mathematicians have grappled with equations that go beyond simple straight-line relationships. The earliest known examples of nonlinear equations — equations where the variable is raised to a power, placed inside an absolute value, or appears under a radical — date back to ancient Babylon, where scribes solved area problems that we would now write as quadratic equations. The journey from those clay tablets to the PSAT problems you'll encounter today is a fascinating story of mathematical discovery.

~1800 BCE
Babylonian Quadratics
Babylonian scribes solved problems equivalent to x² + bx = c using geometric cut-and-paste methods on clay tablets, centuries before algebraic notation existed.
~300 BCE
Greek Conic Sections
Greek mathematicians like Menaechmus studied parabolas, ellipses, and hyperbolas — the curves that arise from slicing a cone — laying the geometric foundation for nonlinear functions.
820 CE
Al-Khwārizmī's Algebra
The Persian mathematician al-Khwārizmī published systematic methods for solving quadratic equations, giving us the word 'algebra' from his book's title.
1637
Descartes & Coordinate Geometry
René Descartes introduced the coordinate plane, allowing nonlinear equations to be visualized as curves. This linked algebra to geometry in a powerful new way.
Modern Era
Standardized Testing & Applications
Today, solving nonlinear functions is a core skill tested on the PSAT and SAT. These equations model everything from projectile motion to business profit optimization.

The central question has always been the same: given a nonlinear equation, how do you find the value (or values) of the variable that make it true? On the PSAT, this question appears in several forms — you might need to solve a quadratic equation, find where an absolute value function equals a given output, or determine the intersection of a line with a parabola. This lesson will equip you with every technique you need.

Core Principles & Definitions

Before diving into solving techniques, you need to understand what makes a function nonlinear and why solving these equations differs from solving linear ones. A linear function graphs as a straight line and has the form f(x) = mx + b. A nonlinear function is any function whose graph is not a straight line — it curves, bends, or has sharp corners. The key difference is that nonlinear equations can have multiple solutions, exactly one solution, or no real solutions at all.

1

Nonlinear Means Not a Line

If the variable appears with an exponent other than 1, inside an absolute value, under a radical, or in any non-linear operation, the function is nonlinear. Examples: x², |x|, √x, 1/x.
2

Solutions Are x-Intercepts

Solving f(x) = 0 means finding where the graph crosses the x-axis. These x-values are called roots, zeros, or solutions. A quadratic can have 0, 1, or 2 real roots.
3

Multiple Methods Exist

You can solve nonlinear equations by factoring, using the quadratic formula, completing the square, graphing, or isolating the nonlinear expression. The PSAT rewards knowing which method is fastest.
4

Always Check for Extraneous Solutions

Some solving methods (especially squaring both sides or solving absolute value equations) can introduce false answers. Always substitute your solutions back into the original equation to verify.
KEY TAKEAWAY
KEY TAKEAWAY

Visualizing Nonlinear Solutions

The diagram below shows three different quadratic functions on the same coordinate plane, each illustrating a different number of real solutions. Understanding this visual relationship between a parabola's position and the x-axis is one of the most powerful tools you can bring to the PSAT.

The cyan parabola crosses the x-axis at two points (two real solutions). The amber parabola just touches the x-axis (one repeated solution). The pink parabola floats entirely above the x-axis (no real solutions). The discriminant b² − 4ac determines which case applies.

Notice how each parabola's relationship with the x-axis directly tells you how many solutions the equation f(x) = 0 has. On the PSAT, you can often eliminate answer choices just by sketching a rough graph in your test booklet. If a question asks "how many real solutions does x² − 4x + 5 = 0 have?" you can quickly compute the discriminant — the expression b² − 4ac — to determine the answer without ever finding the actual solutions. This is a huge time-saver on a timed test.

Mathematical Framework

The PSAT tests several types of nonlinear equations. The most common is the quadratic equation, but you'll also encounter absolute value equations and systems that pair a linear equation with a nonlinear one. Here are the key formulas and methods you need to know.

STANDARD FORM OF A QUADRATIC
ax² + bx + c = 0
Where a, b, and c are constants with a ≠ 0. The coefficient a determines whether the parabola opens upward (a > 0) or downward (a < 0).
THE QUADRATIC FORMULA
x = (−b ± √(b² − 4ac)) / (2a)
The ± symbol means you compute two values: one using + and one using −. The expression under the radical, b² − 4ac, is called the discriminant. If it's positive, there are two real solutions; if zero, one; if negative, none.
FACTORED FORM (ZERO PRODUCT PROPERTY)
a(x − r₁)(x − r₂) = 0 → x = r₁ or x = r₂
If you can write the quadratic as a product of two binomials, set each factor equal to zero. This is the zero product property: if A × B = 0, then A = 0 or B = 0. Factoring is often the fastest approach on the PSAT.
ABSOLUTE VALUE EQUATION
|expression| = k → expression = k or expression = −k (when k ≥ 0)
An absolute value equation splits into two separate equations. If k < 0, there is no solution because absolute value cannot be negative. Always check both solutions in the original equation.
PSAT Strategy Tip

Solving Methods Compared

You have several tools for solving nonlinear equations, and choosing the right one can save you valuable minutes on the PSAT. The diagram below maps out a decision-making process, and the table that follows compares each method in detail.

Start at the top and follow the decision path. The flowchart guides you to the most efficient method: splitting absolute values, factoring, completing the square, or the quadratic formula as a universal fallback.
Comparison of methods for solving nonlinear equations on the PSAT
MethodBest When…SpeedAlways Works?
FactoringCoefficients are small integers and factors are easy to spot⚡ FastestNo — only works when factors are rational
Quadratic FormulaThe equation doesn't factor easily or has messy coefficients⏱ ModerateYes — works for any quadratic
Completing the SquareYou need vertex form, or a = 1 with an even b⏱ ModerateYes — but more algebra steps
Graphing / InspectionYou only need the number of solutions or an approximate answer⚡ Quick for estimatesNo — imprecise for exact values
Absolute Value SplitThe equation contains |expression| = constant⚡ FastYes — but must check for extraneous solutions

Worked Example

Let's walk through a PSAT-style problem from start to finish. Pay attention to the decision-making process as well as the algebra.

1
Step 1 — Identify the Equation TypeThis is a quadratic equation in standard form ax² + bx + c = 0, where a = 2, b = −5, and c = −3. Since it's a quadratic, we should first try factoring.
2
Step 2 — Attempt to FactorWe need two numbers that multiply to a × c = 2 × (−3) = −6 and add to b = −5. Those numbers are −6 and +1, because (−6)(1) = −6 and −6 + 1 = −5. Rewrite the middle term: 2x² − 6x + x − 3 = 0. Group: 2x(x − 3) + 1(x − 3) = 0. Factor out (x − 3): (2x + 1)(x − 3) = 0.
(2x + 1)(x − 3) = 0
3
Step 3 — Apply the Zero Product PropertySet each factor equal to zero. For the first factor: 2x + 1 = 0, so 2x = −1, giving x = −1/2. For the second factor: x − 3 = 0, giving x = 3.
x = −1/2 or x = 3
4
Step 4 — Verify Both SolutionsCheck x = −1/2: 2(−1/2)² − 5(−1/2) − 3 = 2(1/4) + 5/2 − 3 = 1/2 + 5/2 − 3 = 3 − 3 = 0 ✓. Check x = 3: 2(3)² − 5(3) − 3 = 18 − 15 − 3 = 0 ✓. Both solutions check out.
Both solutions verified ✓

Worked Example 2: Absolute Value

1
Step 1 — Recognize the Absolute Value StructureThe equation has the form |expression| = k where k = 5. Since k > 0, there are potentially two solutions. Split into two cases.
2
Step 2 — Write Two EquationsCase 1: 3x − 7 = 5, so 3x = 12, giving x = 4. Case 2: 3x − 7 = −5, so 3x = 2, giving x = 2/3.
x = 4 or x = 2/3
3
Step 3 — Check Both SolutionsCheck x = 4: |3(4) − 7| = |12 − 7| = |5| = 5 ✓. Check x = 2/3: |3(2/3) − 7| = |2 − 7| = |−5| = 5 ✓. Both solutions are valid.
x = 4 and x = 2/3 are both valid ✓

Common Pitfalls & PSAT Tips

Even strong math students lose points on nonlinear function questions because of a few predictable mistakes. Knowing these pitfalls in advance lets you avoid them under the time pressure of the PSAT.

Top 5 mistakes students make on PSAT nonlinear function questions
Common PitfallWhat Goes WrongHow to Avoid It
Forgetting ± in absolute valueYou solve |2x − 1| = 7 but only write 2x − 1 = 7, missing the negative case entirely.Always write both cases immediately. Circle the ± as a reminder.
Dividing by xIn x² = 5x, dividing both sides by x gives x = 5, but you lose the solution x = 0.Move all terms to one side first: x² − 5x = 0, then factor: x(x − 5) = 0.
Sign errors in the quadratic formulaConfusing −b with −(b) when b is already negative, leading to a wrong sign under the radical.Write out a, b, c explicitly before substituting. Use parentheses around every value.
Not checking for extraneous solutionsWhen solving equations involving radicals or absolute values, an algebraic solution may not satisfy the original equation.Always plug your answer(s) back into the original equation to verify.
Misreading 'how many solutions'The question asks for the number of solutions, not the solutions themselves, and you waste time solving.Compute the discriminant b² − 4ac to determine the count without solving.
KEY TAKEAWAY
PSAT TEST-TAKING STRATEGY

Connection to Advanced Topics

The techniques you learn for solving nonlinear functions on the PSAT form the foundation for much more advanced mathematics. Understanding how these ideas evolve can help you see the bigger picture and appreciate why these skills matter beyond standardized testing.

How PSAT nonlinear solving connects to college-level mathematics
PSAT Level ConceptAdvanced Extension
Solving ax² + bx + c = 0 for real solutionsComplex numbers: when the discriminant is negative, solutions involve i = √(−1), which you'll study in Algebra 2 and beyond
Finding where a parabola crosses the x-axisIn calculus, you'll find where curves cross each other by setting functions equal and solving — the same nonlinear solving skill, applied to more complex functions
Using the discriminant to count solutionsThe Fundamental Theorem of Algebra guarantees that a degree-n polynomial has exactly n complex roots (counting multiplicity)
Solving |expression| = k by splitting into casesPiecewise-defined functions and optimization problems in calculus use the same case-splitting logic
Systems of linear and nonlinear equationsMultivariable calculus and linear algebra solve massive systems with matrices, building on the same substitution/elimination ideas

The good news is that mastering the solving techniques in this lesson gives you a rock-solid foundation. When you encounter cubic equations, systems of nonlinear equations, or even differential equations in college, you'll recognize the same underlying logic: isolate, simplify, and solve for the unknown. The tools get more powerful, but the mindset stays the same.

Practice Problems

Test your understanding with these five problems, arranged from conceptual to challenging. Try each one on paper before revealing the answer.

1
How many distinct real solutions does x² + 6x + 9 = 0 have?
PROBLEM 2BASIC CALCULATION
Solve the equation x² − 7x + 12 = 0 by factoring.
PROBLEM 3INTERMEDIATE
Solve |2x + 3| = 4x − 1 for all valid solutions.
PROBLEM 4APPLIED
A ball is launched upward from a 48-foot platform. Its height in feet after t seconds is given by h(t) = −16t² + 32t + 48. At what time(s) does the ball reach the ground?
PROBLEM 5CRITICAL THINKING
The system of equations y = x² − 4x + k and y = 2x − 5 has exactly one solution. Find the value of k.
Varsity Tutors • PSAT Math • Solving Nonlinear Functions