Integrated_Algebra // Mod_03

SYSTEMS

Finding the precise coordinates where multiple linear equations equate to the same truth. When geometries collide.

01 // The Objective

Where Paths Cross

A system of equations asks: "Is there a pair of (x, y) that works for BOTH lines?" Graphically, this is the exact coordinate where the two lines cross. Drag the sliders in the lab below to map the intersections!

System Visualizer

Line Alpha

y = 1x + 2

Line Beta

y = -1x + 4
Intersection Coordinate
(1, 3)

02 // Solving Methods

Visual
Graphing

Plot both lines. Look for the intersection. It's the most intuitive method, but can be highly inaccurate if the lines cross at a decimal or fraction.

Algebraic
Substitution

Solve one equation for a variable, then plug it into the other to collapse the system into a single equation.

If y=2x, then x+y=3 → x+(2x)=3
Tactical
Elimination

Add or subtract entire equations vertically to instantly delete a variable.

(2x+y) - (x+y) → x

03 // Anomalies

Parallel Lines

Same Slope, Different Intercept. They never meet.

No Solution

Coinciding Lines

Same Slope, Same Intercept. They are the exact same line.

Infinite Solutions

Systems Mastered

You can find the intersection of any paths.

Next: Inequalities