Graphing Linear Systems and Slopes

Category: Coordinate Geometry & Functions

1. The Path of Constant Change

A linear equation creates a completely straight line when plotted on a 2D Cartesian grid. This happens because its variable has a maximum power of 1, ensuring the rate of change remains constant across the entire coordinate path.

2. Slope-Intercept Form

The most effective structural format for linear equations is Slope-Intercept form: y = mx + b. The parameter m tracks the precise slope (Rise over Run), while b locks down the exact y-intercept coordinate where the line cuts through the vertical axis.

3. Mathematical Derivation of Perpendicular Slopes

Let us mathematically prove why two intersecting lines are perpendicular (meet at a perfect 90-degree angle) if and only if their slopes are negative reciprocals of each other, meaning m₁ · m₂ = -1.

Step 1: Draw a line with slope m₁ passing through the origin (0,0). At x=1, its coordinate height is (1, m₁). This forms a right-angled triangle vector triangle with vertices at (0,0), (1,0), and (1, m₁).

Step 2: Rotate this entire triangle exactly 90 degrees counterclockwise around the origin pivot to construct a perpendicular line with slope m₂.

Step 3: Map the rotated coordinate points. The old horizontal leg of length 1 becomes a vertical leg of height 1. The old vertical height m₁ maps to a negative horizontal position at (-m₁, 1).

Step 4: Compute the slope m₂ of this brand new line using our rotated point layout:
m₂ = (y₂ - y₁) / (x₂ - x₁)
m₂ = (1 - 0) / (-m₁ - 0) = 1 / -m₁

Conclusion: Cross-multiply the linear slope indices:
m₂ = -1 / m₁ -> m₁ · m₂ = -1

This proof explains why angular coordinate systems remain perfectly orthogonal across 2D rendering frames, an essential formula for programming clean camera axes in web vector games.

← Back to Unit 5 Index