A system of two linear equations consists of two linear equations with the same variables that must be satisfied simultaneously. The solution is the ordered pair (x, y) that is a solution to both equations. Geometrically, this solution represents the point where the graphs of the two linear equations—two straight lines—intersect on the coordinate plane.
Where:
The goal is to find the values of x and y that make both equations true at the same time.
When the determinant of the coefficient matrix is non-zero, the system has a unique solution that can be found using Cramer's Rule. This method uses ratios of determinants derived from the coefficients and constants of the system.
This method is only applicable if the main determinant in the denominator is not equal to zero (i.e., `a₁b₂ - a₂b₁ ≠ 0`).
A system of two linear equations is represented graphically by two straight lines on a Cartesian coordinate plane. The equation a₁x + b₁y = c₁ defines one line, and the equation a₂x + b₂y = c₂ defines another. The solution to the system, the point (x, y), is the unique coordinate where these two lines intersect. If the lines are parallel, there is no solution. If the lines are identical (coincident), there are infinitely many solutions.
Geometric Intersection
The solution to a system represents the geometric intersection point of two lines in a coordinate plane. This visual interpretation helps in understanding the nature of the solution.
Three Solution Types
A system can have one unique solution (intersecting lines), no solution (parallel lines), or infinitely many solutions (the same line). The determinant of the coefficients can predict which case applies.
Multiple Solution Methods
The same system can be solved using various algebraic and graphical methods, including substitution, elimination, and matrix operations. The choice of method often depends on the structure of the equations.
Real-World Modeling
Linear systems are fundamental for modeling real-world problems where two or more conditions or constraints must be satisfied simultaneously, such as in economics, physics, and engineering.
We can derive the formulas for x and y (Cramer's Rule) by using the elimination method on the general system of equations.
To eliminate y, multiply equation (1) by `b₂` and equation (2) by `b₁`:
Now, subtract the new second equation from the new first equation:
Solving for x gives the formula from Cramer's Rule, provided `a₁b₂ - a₂b₁ ≠ 0`:
A similar process of multiplying equation (1) by `a₂` and equation (2) by `a₁` and subtracting allows us to eliminate x and solve for y.
Economics & Business
Systems of linear equations are used to find market equilibrium points where supply equals demand, and to calculate the break-even point for a business where revenue equals costs.
Chemistry & Physics
In chemistry, they are used to solve mixture problems, determining the required quantities of different concentration solutions to achieve a desired concentration. In physics, they are used to solve problems involving forces in equilibrium or electrical circuits (Kirchhoff's laws).
Engineering & Transportation
Engineers use linear systems to analyze electrical circuits, model mechanical structures, and optimize network flows, such as traffic in a city or data in a computer network.
Finance & Investment
Financial analysts can use systems of equations to model investment portfolios with constraints on total investment amount and desired return or risk levels.
Break-Even Analysis
A startup company calculates its costs (rent, salaries, materials) and its revenue per product sold. By setting the cost equation equal to the revenue equation, they form a system to find the break-even point—the number of units they must sell to neither make a profit nor incur a loss.
Nutrition Planning
A dietitian designs a meal plan to meet specific nutritional targets, like total calories and grams of protein. They can create a system of equations where the variables represent the quantities of two different foods, allowing them to calculate the exact portions needed to satisfy both nutritional constraints.
Air Traffic Control
Air traffic controllers monitor the paths of airplanes, which can be modeled as linear equations (in the short term). To ensure safe separation, they can solve systems of these equations to predict if and when two flight paths will intersect.
The relationship between the coefficients of a linear system determines the nature of its solution. Geometrically, this corresponds to how the two lines are positioned relative to each other.
| Solution Type | Geometric Interpretation | Condition on Coefficients | Determinant (D = a₁b₂ - a₂b₁) |
|---|---|---|---|
| One Unique Solution | Lines intersect at a single point | `a₁/a₂ ≠ b₁/b₂` | `D ≠ 0` |
| No Solution (Inconsistent) | Lines are parallel and distinct | `a₁/a₂ = b₁/b₂ ≠ c₁/c₂` | `D = 0` |
| Infinite Solutions (Dependent) | Lines are coincident (the same line) | `a₁/a₂ = b₁/b₂ = c₁/c₂` | `D = 0` |
Sign Errors in Elimination: When subtracting one equation from another, a common mistake is to forget to distribute the negative sign to every term in the second equation. For example, `(5x + 2y) - (3x - 4y)` should become `5x + 2y - 3x + 4y`, not `5x + 2y - 3x - 4y`.
Incorrect Substitution: In the substitution method, after solving for a variable (e.g., `y = 2x + 1`), you must substitute it into the *other* equation. Substituting it back into the same equation it was derived from will result in an unhelpful identity like `1 = 1`.
Failure to Check the Solution: Always plug your final (x, y) values back into *both* of the original equations. A solution is only correct if it satisfies both equations simultaneously. This simple step can catch most arithmetic errors.