lesson

Updated 6 days ago Β· 2 views
Imagine two hikers start on different trails at different speeds. Will their paths ever cross at the exact same time and location?
When we represent each path with a line, the place where they meet is called the intersection point. At this exact point, both functions share the same input x and output y.
πAn interactive diagram showing two linear functions intersecting on a clean coordinate grid from x = -2 to 6, y = -2 to 6. Line 1 in blue (y = 2x - 1) and Line 2 in orange (y = -0.5x + 4). A prominent glowing purple point marks the intersection at (2, 3) with a callout tag '(2, 3)'. Dashed lines drop down to x = 2 on the x-axis and across to y = 3 on the y-axis. Clean card styling, light background #f8fafc, dark slate text #1e2945, rounded corners.
How can we find this meeting point just by sketching the equations?
Finding the Intersection Graphically
A linear function has the standard form f(x)=mx+b, where m is the slope (steepness) and b is the y-intercept (where the line hits the vertical axis).
To find where f(x)=2x+1 and g(x)=βx+4 cross, graph both lines on the same grid and look for where their paths overlap.
πA step-by-step graphical walkthrough card. Grid showing x and y axes from -1 to 5. Step 1: Blue line f(x) = 2x + 1 plotted with y-intercept at (0, 1) and slope rise 2, run 1. Step 2: Coral line g(x) = -x + 4 plotted with y-intercept at (0, 4) and slope down 1, right 1. Step 3: Intersection highlighted at (1, 3) with animated pulse. Clear legend and coordinate labels in #1e2945 font.
Graphing gives a fast visual estimate, but what if the intersection is a messy fraction like (3.47,β1.82)?
Solving Algebraically: Setting f(x)=g(x)
In 1637, French mathematician RenΓ© Descartes connected algebra and geometry by showing that geometric points correspond to algebraic equations. Because both lines share the same y-value at the meeting point, we can simply set f(x)=g(x) and solve for x.
πA clean vertical step-by-step algebraic solver card with a light background #f8fafc. Step 1: 'Set equations equal' -> '2x + 1 = -x + 4'. Step 2: 'Add x to both sides' -> '3x + 1 = 4'. Step 3: 'Subtract 1' -> '3x = 3', so 'x = 1'. Step 4: 'Substitute x = 1 into f(x)' -> 'f(1) = 2(1) + 1 = 3'. Result box: 'Intersection Point: (1, 3)'. Color-coded terms, subtle borders, modern layout.
A common mistake is stopping once you find x=1. Remember, an intersection point is always an ordered pair (x,y), so you must plug x back into either equation to calculate y.