Nonlinear Systems of Equations
Nonlinear Systems of Equations
A system of equations is a set of two or more equations that you solve together. A nonlinear system is one where at least one of the equations is not a straight lineâsuch as a parabola (y=x2), a circle (x2+y2=r2), or another curve.
Geometrically, solving a nonlinear system means finding the exact coordinate points where these graphs intersect.
The Substitution Method
The most reliable way to solve nonlinear systems is the substitution method. Follow these steps:
- Isolate one variable (like y or x) in the simpler equation (usually the linear one).
- Substitute that expression into the other, nonlinear equation.
- Solve the new equation, which will now only have one variable. (This often requires solving a quadratic equation).
- Plug back your solutions into the isolated equation from Step 1 to find the corresponding values for the other variable.
Example 1: A Line and a Parabola
Problem: Solve y=x2â3x+2 and y=xâ1 simultaneously.
Step 1: Both equations are already solved for y. Step 2: Substitute the linear expression for y into the quadratic equation: xâ1=x2â3x+2
Step 3: Move all terms to one side to set the equation to zero: 0=x2â4x+3
Factor the quadratic equation: 0=(xâ1)(xâ3)
This gives us two x-values: x=1 and x=3.
Step 4: Plug these x-values back into the linear equation (y=xâ1) to find the y-values:
- If x=1, then y=1â1=0. So, the first intersection point is (1,0).
- If x=3, then y=3â1=2. So, the second intersection point is (3,2).
Solution: The intersection points are (1,0) and (3,2).
Example 2: Two Nonlinear Equations
Problem: Find the intersection points of y=x2 and x2+y2=20.
Step 1 & 2: The first equation already has y isolated in terms of x2. We can substitute y directly in place of x2 in the second equation: y+y2=20
Step 3: Rearrange into a standard quadratic form: y2+yâ20=0
Factor the equation: (y+5)(yâ4)=0
This gives y=â5 and y=4.
Step 4: Plug these y-values back into y=x2 to find x:
- If y=â5: â5=x2. Since the square of a real number cannot be negative, there are no real solutions for this branch.
- If y=4: 4=x2. Taking the square root gives x=2 and x=â2.
Solution: The intersection points are (2,4) and (â2,4).