Navigation: Wiki Home > Chapter 5 > Section 5.1 > Finding Intersection Points
| Curve Types | Method | Example |
|---|---|---|
| Two polynomials | Set equal, factor | $x^2 = 2x \Rightarrow x^2 - 2x = 0 \Rightarrow x(x-2) = 0$ |
| Polynomial & line | Rearrange, factor/quadratic formula | $x^2 = x + 2 \Rightarrow x^2 - x - 2 = 0$ |
| Trigonometric | Use identities, solve on interval | $\sin x = \cos x \Rightarrow \tan x = 1$ |
| Transcendental | Graph + numerical methods | $e^x = x^2$ → approximate solutions |
The basic method: Set $f(x) = g(x)$, solve for $x$, then find $y$ by substituting back.
1. Can you solve quadratic equations?
Solve $x^2 - 5x + 6 = 0$.
Factor: $(x-2)(x-3) = 0$, so $x = 2$ or $x = 3$.
If this was difficult, review factoring or the quadratic formula.
2. Can you solve trigonometric equations?
Find all solutions to $\sin x = \frac{1}{2}$ on $[0, 2\pi]$.
$x = \frac{\pi}{6}$ or $x = \frac{5\pi}{6}$
If this was difficult, review the unit circle.
Before you can integrate, you need to know where to start and stop. When a region is enclosed entirely by curves (with no explicit bounds like "from $x = 0$ to $x = 3$"), the integration limits come from the intersection points.
Finding intersections is detective work: you're asking "For what values of $x$ (or $y$) do these two curves have the same height (or same horizontal position)?"
Legend: 🟡 Yellow = immediate prerequisites | 🟢 Green = this skill
| Property | Value |
|---|---|
| Chapter | Chapter 5: Applications of Integration |
| Section | §5.1 Areas Between Curves |
| Difficulty | Intermediate |
| Time | ~15 minutes |
To find where $y = f(x)$ and $y = g(x)$ intersect:
Set them equal and solve for $x$: $$f(x) = g(x)$$
Then substitute back to find the $y$-coordinates if needed.
| Curves | Equation to Solve | Technique |
|---|---|---|
| Two polynomials | $f(x) = g(x)$ | Move all to one side, factor |
| Polynomial and line | $ax^n + \cdots = mx + b$ | Rearrange and factor |
| Trig functions | $\sin x = \cos x$ | Use identities, solve on interval |
| Transcendental | $e^x = x^2$ | Graphing/numerical methods |
Step 1: Set the two equations equal: $$f(x) = g(x)$$
Step 2: Rearrange to get everything on one side: $$f(x) - g(x) = 0$$
Step 3: Factor or use the quadratic formula:
Step 4: Solve for $x$ (or $y$ if integrating with respect to $y$).
Step 5: Verify by substituting back into original equations.
Find where $y = x^2$ and $y = 2x - x^2$ intersect.
Set equal: $x^2 = 2x - x^2$
Rearrange: $2x^2 - 2x = 0$
Factor: $2x(x - 1) = 0$
Solve: $x = 0$ or $x = 1$
Find y-coordinates:
Sometimes the intersection equation can't be solved algebraically:
$$\frac{x}{\sqrt{x^2 + 1}} = x^4 - x$$
In such cases:
Calculator tip: Most graphing calculators have an "intersect" function. On a TI-84, graph both curves, then press 2nd → CALC → intersect.
| Mistake | Consequence | Prevention |
|---|---|---|
| Dividing by a variable | Lose $x = 0$ as a solution | Factor instead: $x^2 = 2x \Rightarrow x(x-2) = 0$ |
| Stopping at first root | Miss additional intersections | Factor completely; check for multiple roots |
| Forgetting domain restrictions | Include invalid solutions | For $\sqrt{x}$, need $x \geq 0$; check interval |
| Squaring both sides carelessly | Introduce extraneous solutions | Always verify by substituting back |
| Using wrong interval for trig | Miss solutions or include wrong ones | Check if $\sin x = \frac{1}{2}$ has 1, 2, or more solutions in YOUR interval |
Wrong approach: $$x^2 = 3x$$ $$\frac{x^2}{x} = \frac{3x}{x}$$ $$x = 3$$
This loses $x = 0$ because we divided by $x$ (which could be zero).
Correct approach: $$x^2 = 3x$$ $$x^2 - 3x = 0$$ $$x(x - 3) = 0$$ $$x = 0 \text{ or } x = 3$$
Rule: Never divide by a variable. Always move everything to one side and factor.
Always verify intersection points by:
Find the intersection points of $y = x^2$ and $y = 4$.
Find the intersection points of $y = x^2 - 4x$ and $y = 2x$.
Find the intersection points of $y = x^2 + 1$ and $y = 5 - x$.
Find all intersection points of $y = \sin x$ and $y = \cos x$ on the interval $[0, 2\pi]$.
✅ Checkpoint: If you can handle Level 4 trigonometric intersections, you're well-prepared for most area problems!
Find all intersection points of $y = x^3 - 4x$ and $y = x^2$, and use them to set up (but don't evaluate) the integral(s) for the area of the region(s) enclosed by these curves.
The curves $y = x^2$ and $y = k$ (where $k$ is a constant) can have 0, 1, or 2 intersection points depending on the value of $k$.
For what values of $k$ do the curves have exactly: (a) 0 intersection points? (b) 1 intersection point? (c) 2 intersection points?
✅ All boxes checked? You're ready to use these intersections in area problems!
Before you start:
During the solve:
After you solve:
Time trap warning: Some intersection problems are algebraically messy. If you're spending more than 3 minutes, write "bounds: $x = a, b$" and move on—return later.
The "Crossing Paths" Picture:
Two curves intersect where they have the same $(x, y)$ coordinates. Setting $f(x) = g(x)$ asks: "At what x-values do both curves reach the same height?"
Finding intersections is like solving a scheduling problem: "When will Person A and Person B be in the same place?"
Quick verification: After finding $x$-values, plug them into BOTH original equations. If you get the same $y$-value from each, the point is correct.
Looking back:
Looking ahead:
The problem of finding where curves intersect goes back to ancient mathematics. Apollonius of Perga (262–190 BCE) studied conic sections and their intersections extensively.
The modern algebraic approach—setting equations equal and solving—became possible with the development of analytic geometry by Descartes (1637). Before this, intersections were found through geometric constructions.
Interestingly, finding intersections is closely related to root-finding, one of the oldest computational problems. The quadratic formula was known to Babylonian mathematicians around 2000 BCE, and finding roots of higher-degree polynomials motivated centuries of mathematical development, culminating in Galois theory.
| Concept | Key Point |
|---|---|
| Basic method | Set $f(x) = g(x)$, solve for $x$, then find $y$ |
| Never do this | Divide by a variable (you'll lose solutions) |
| Always do this | Factor, don't divide: $x^2 = 3x \Rightarrow x(x-3) = 0$ |
| Quadratic formula | Use when factoring isn't obvious: $x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}$ |
| Trig intersections | Remember multiple solutions; filter to your interval |
| Verification | Substitute back into BOTH original equations |
| Previous | Up | Next |
|---|---|---|
| Area (y-integration) | Section 5.1 | Area When Curves Cross |
Last updated: 2026-01-22