Number of intersections between graphs

Just like we can find the number of roots of an equation, we can also find the number of intersections between two graphs.

Steps

When we have two equations, we can find the number of intersections between their graphs like this:

  1. Write the equations in the form y=... by moving all terms to one side except the y term.
  2. Set both equations equal to each other.
  3. Write the resulting equation in the form ax^2 + bx + c = 0.
  4. Calculate the discriminant using D = b^2 - 4ac.

A reminder of the meaning of the discriminant

Examples

Example: find the number of points where the graphs y = x^2 + 2x + 3 and y = 3x - 1 intersect

flashcards

QuestionAnswer
Number of intersections between graphsThe number of points where two graphs intersect.
Steps to find number of intersections1. Write equations in y=... form. 2. Set equations equal to each other. 3. Write resulting equation as ax^2 + bx + c = 0. 4. Calculate the discriminant D = b^2 - 4ac.
Meaning of discriminant for intersectionsIf D > 0, two intersections. If D = 0, one intersection (tangent). If D < 0, no intersections.
Example: y = x^2 + 2x + 3 and y = 3x - 1Set equal: x^2 + 2x + 3 = 3x - 1. Rearrange: x^2 - x + 4 = 0. Discriminant: D = (-1)^2 - 4 \times 1 \times 4 = -15. Since D < 0, no intersections.