lesson

Updated 6 days ago ยท 2 views
GPS navigation, video game physics, and orbital mechanics all rely on a single geometric object: the straight line. But depending on whether you are graphing, coding, or computing distances, one mathematical equation for a line is rarely enough.
Every line on a coordinate plane has a slope (m), which measures its steepness by comparing vertical change (extrise) to horizontal change (extrun) between any two points (x1โ,y1โ) and (x2โ,y2โ): m=x2โโx1โy2โโy1โโ
๐Create an interactive visual showing a Cartesian grid with a line passing through (1, 2) and (4, 6). Highlight the horizontal run (dx = 3) in blue along the bottom and the vertical rise (dy = 4) in orange on the right to form a right triangle. Display the slope calculation m = 4/3 clearly in a top floating card with clean typography. Responsive width up to 350px, #1e2945 text, #e6e6e6 border.
What happens when you know a line's slope and just one point it passes through, but you need an equation that captures every other point (x,y) along it?
Point-Slope Form
If we take the slope definition m=xโx1โyโy1โโ and multiply both sides by (xโx1โ), we get the point-slope form: yโy1โ=m(xโx1โ)
In the 1630s, Renรฉ Descartes and Pierre de Fermat pioneered coordinate geometry to turn geometric shapes into algebraic equations, and point-slope form remains the most direct algebraic expression of a straight line.
For example, to write the equation of a line with slope m=โ23โ passing through (4,1), substitute x1โ=4, y1โ=1, and m=โ23โ directly into the template: yโ1=โ23โ(xโ4)
๐Show an animated breakdown of the Point-Slope formula 'y - y1 = m(x - x1)'. Three color-coded pill tags highlight: (x1, y1) as the 'Fixed Anchor Point' (purple), m as the 'Direction / Slope' (blue), and (x, y) as 'Any Variable Point' (green). Below, show the substituted example 'y - 1 = -3/2(x - 4)' with matching colored highlights for 1, -3/2, and 4.
Point-slope form is easy to write, but how do we instantly find where the line crosses the vertical axis?
Slope-Intercept Form
When you solve any point-slope equation for y, you arrive at the slope-intercept form, y=mx+b, where b is the y-interceptโthe value of y where the line crosses the y-axis at (0,b).
Distributing and simplifying our previous line yโ1=โ23โ(xโ4): yโ1=โ23โx+6โนy=โ23โx+7 Here, the slope is m=โ23โ and the y-intercept is (0,7).