Introduction to Quadratic Equations
Learn the definition, solution methods, and applications of quadratic equations, including how the discriminant determines the nature of their roots.
Summary
Read Summary
Flashcards
Save Flashcards
Quiz
Take Quiz
Quick Practice
What is the standard form of a quadratic equation?
1 of 16
Summary
Definition and Graphs of Quadratic Functions
What is a Quadratic Function?
A quadratic function is a polynomial function of degree 2. The standard form is:
$$y = ax^2 + bx + c$$
where $a$, $b$, and $c$ are real numbers and $a \neq 0$.
The condition $a \neq 0$ is crucial—if $a = 0$, the equation becomes linear, not quadratic. When we set this function equal to zero, we get a quadratic equation:
$$ax^2 + bx + c = 0$$
The key insight is that solving a quadratic equation means finding the values of $x$ where the function equals zero.
The Graph: Understanding Parabolas
When you graph a quadratic function, you always get a parabola—a symmetric, U-shaped or inverted U-shaped curve. This distinctive shape is a fundamental property of quadratic functions and appears nowhere else in basic algebra.
The direction the parabola opens depends entirely on the coefficient $a$:
When $a > 0$ (positive): The parabola opens upward ∪, creating a minimum point at the bottom
When $a < 0$ (negative): The parabola opens downward ∩, creating a maximum point at the top
The larger the absolute value $|a|$, the narrower (more stretched vertically) the parabola becomes.
Roots, Zeros, and X-Intercepts
The roots (or zeros) of a quadratic function are the $x$-values where the function equals zero. Geometrically, these are the points where the parabola crosses the $x$-axis.
Why does this matter? When solving a quadratic equation like $2x^2 - 8x + 6 = 0$, you're finding exactly these points. The solutions you find are the $x$-intercepts of the parabola.
This connection between algebra and geometry is powerful: if you can see the parabola crosses the $x$-axis at two points, you know there are two real solutions.
Methods for Solving Quadratic Equations
There are three main methods for solving quadratic equations. Understanding when to use each method is important.
Factoring Method
If a quadratic can be factored, this is often the fastest solution method. The idea is simple: rewrite the quadratic as a product of two linear factors.
For example, if you can factor as: $$(px + q)(rx + s) = 0$$
then by the zero product property (if a product equals zero, at least one factor must equal zero), you get:
$px + q = 0$ which gives $x = -\frac{q}{p}$
$rx + s = 0$ which gives $x = -\frac{s}{r}$
Example: Solve $x^2 + 5x + 6 = 0$
This factors as $(x + 2)(x + 3) = 0$, so $x = -2$ or $x = -3$.
The limitation: not all quadratics factor nicely with integer coefficients, so you need other methods.
Completing the Square Method
This method transforms the quadratic into a perfect square, which can then be solved by taking square roots.
The goal is to rewrite $ax^2 + bx + c = 0$ in the form $(x + d)^2 = e$.
Example: Solve $x^2 + 6x + 5 = 0$
Move the constant: $x^2 + 6x = -5$
Complete the square: Take half of the $b$-coefficient ($6/2 = 3$) and square it ($3^2 = 9$)
Add to both sides: $x^2 + 6x + 9 = -5 + 9$
Factor: $(x + 3)^2 = 4$
Take square roots: $x + 3 = \pm 2$
Solve: $x = -3 + 2 = -1$ or $x = -3 - 2 = -5$
This method always works, but it's more tedious than factoring when factoring is possible.
The Quadratic Formula and Discriminant
The Quadratic Formula
Both factoring and completing the square methods, when applied generally to $ax^2 + bx + c = 0$, lead to a universal formula that works for any quadratic equation:
$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$
This quadratic formula is your most powerful tool. When you encounter a quadratic that doesn't factor neatly, use this formula directly.
Key points:
The $\pm$ symbol means you get two solutions (usually)
The solutions are $x = \frac{-b + \sqrt{b^2 - 4ac}}{2a}$ and $x = \frac{-b - \sqrt{b^2 - 4ac}}{2a}$
You must memorize this formula
Example: Solve $2x^2 + 3x - 2 = 0$ with $a = 2$, $b = 3$, $c = -2$
$$x = \frac{-3 \pm \sqrt{9 - 4(2)(-2)}}{2(2)} = \frac{-3 \pm \sqrt{9 + 16}}{4} = \frac{-3 \pm \sqrt{25}}{4} = \frac{-3 \pm 5}{4}$$
So $x = \frac{-3 + 5}{4} = \frac{1}{2}$ or $x = \frac{-3 - 5}{4} = -2$
The Discriminant
The expression under the square root in the quadratic formula is called the discriminant:
$$\Delta = b^2 - 4ac$$
The discriminant tells you crucial information about the nature and number of solutions before you even calculate them.
Case 1: Discriminant Greater Than Zero ($\Delta > 0$)
When the discriminant is positive, you're taking the square root of a positive number. This means:
You get two distinct real solutions
The parabola crosses the $x$-axis at two different points
Example: For $x^2 - 5x + 6 = 0$, we have $\Delta = 25 - 24 = 1 > 0$, so there are two real solutions.
Case 2: Discriminant Equal to Zero ($\Delta = 0$)
When the discriminant is exactly zero:
You get one real solution (technically a "double root" or "repeated root")
The parabola touches the $x$-axis at exactly one point
The $\pm$ in the formula becomes irrelevant since $\sqrt{0} = 0$
Example: For $x^2 - 4x + 4 = 0$, we have $\Delta = 16 - 16 = 0$, giving the single solution $x = 2$.
Case 3: Discriminant Less Than Zero ($\Delta < 0$)
When the discriminant is negative:
You cannot take the square root of a negative number (in real numbers)
The equation has no real solutions
The parabola never crosses the $x$-axis
The solutions are complex conjugates (pairs of complex numbers)
Example: For $x^2 + 2x + 5 = 0$, we have $\Delta = 4 - 20 = -16 < 0$, so there are no real solutions.
Why this matters: On an exam, if you compute a negative discriminant, you know immediately there are no real solutions—you don't need to continue with the formula.
<extrainfo>
Applications of Quadratic Equations
Quadratic equations model many real-world situations:
Projectile Motion
When an object is thrown or launched, its height above the ground at time $t$ follows a quadratic equation:
$$h(t) = -\frac{1}{2}gt^2 + v0 t + h0$$
where $g$ is gravitational acceleration, $v0$ is initial velocity, and $h0$ is initial height. Finding when $h(t) = 0$ tells you when the projectile hits the ground.
Optimization Problems
Many real-world problems ask for the maximum or minimum value (like maximum area with limited material, or minimum cost). Since parabolas have a highest or lowest point, quadratics naturally model these situations.
Economic Modeling
Revenue, cost, and profit functions in economics are often quadratic. For example, profit might be modeled as $P(x) = -2x^2 + 100x - 500$, where finding the roots or vertex determines break-even points and optimal production levels.
</extrainfo>
Flashcards
What is the standard form of a quadratic equation?
$ax^{2}+bx+c=0$ (where $a$, $b$, and $c$ are real numbers and $a\neq 0$)
In the standard form $ax^{2}+bx+c=0$, what is the necessary condition for the coefficient $a$?
$a\neq 0$
What geometric shape is described by the related quadratic function $y=ax^{2}+bx+c$?
A parabola
Under what condition does the parabola of a quadratic function open upward?
When $a>0$
Under what condition does the parabola of a quadratic function open downward?
When $a<0$
What do the roots or zeros of a quadratic represent on its graph?
Where the parabola crosses the $x$-axis
How are the roots or zeros of a quadratic defined in terms of $x$?
The values of $x$ that make the left-hand side of the equation equal to zero
What are the primary methods for solving quadratic equations?
Factoring
Completing the square
Quadratic Formula
How are solutions found using the factoring method if the quadratic is written as $(px+q)(rx+s)=0$?
By setting each factor equal to zero
To what form does the 'completing the square' method rewrite a quadratic equation?
$(x+d)^{2}=e$
What is the quadratic formula used to find the roots of any quadratic equation?
$x=\dfrac{-b\pm\sqrt{b^{2}-4ac}}{2a}$
What is the formula for the discriminant $\Delta$ in a quadratic equation?
$\Delta=b^{2}-4ac$
What is the nature of the roots when the discriminant $\Delta$ is greater than zero?
Two distinct real roots
What is the nature of the root(s) when the discriminant $\Delta$ is equal to zero?
One real root (a double root)
What is the nature of the roots when the discriminant $\Delta$ is less than zero?
Two complex conjugate roots
How are quadratic equations applied in physics regarding projectile motion?
They describe the vertical position of a projectile as a function of time
Quiz
Introduction to Quadratic Equations Quiz Question 1: If a quadratic factors as (px + q)(rx + s) = 0, how are its solutions found?
- Set each factor equal to zero: px + q = 0 or rx + s = 0 (correct)
- Multiply the constants q and s and set equal to zero
- Add the coefficients p and r and set the sum equal to zero
- Square both sides of the equation and solve for x
Introduction to Quadratic Equations Quiz Question 2: In the context of projectile motion, a quadratic equation typically describes which quantity?
- Vertical position as a function of time (correct)
- Horizontal velocity as a function of time
- Mass of the projectile as a function of height
- Air resistance as a function of speed
Introduction to Quadratic Equations Quiz Question 3: What determines whether the parabola defined by $y = ax^{2}+bx+c$ opens upward or downward?
- The sign of the coefficient $a$ (correct)
- The value of the coefficient $b$
- Whether the discriminant is positive
- The magnitude of the constant $c$
Introduction to Quadratic Equations Quiz Question 4: What expression defines the discriminant of the quadratic equation $ax^{2}+bx+c=0$?
- Δ = b² − 4ac (correct)
- Δ = b² + 4ac
- Δ = a² − 4bc
- Δ = 2b − 4ac
Introduction to Quadratic Equations Quiz Question 5: In a quadratic optimization problem, what does the vertex of the parabola represent?
- The maximum or minimum value of the function (correct)
- The points where the graph crosses the x‑axis
- The axis of symmetry of the parabola
- The y‑intercept of the graph
Introduction to Quadratic Equations Quiz Question 6: In the quadratic formula $x=\frac{-b\pm\sqrt{b^{2}-4ac}}{2a}$, what does the denominator equal?
- 2a (correct)
- b^{2}-4ac
- a
- c
Introduction to Quadratic Equations Quiz Question 7: If the discriminant $\Delta = b^{2}-4ac$ of $ax^{2}+bx+c=0$ is greater than zero, how many distinct real x‑intercepts does its graph have?
- Two (correct)
- One
- None
- Infinitely many
Introduction to Quadratic Equations Quiz Question 8: In a quadratic profit function $P(x)= -ax^{2}+bx + c$ (with $a>0$), what does the vertex of the parabola represent?
- Maximum profit (correct)
- Minimum profit
- Break‑even point
- Average profit
Introduction to Quadratic Equations Quiz Question 9: What is the name of the graph of the function $y = ax^{2}+bx+c$?
- A parabola (correct)
- A hyperbola
- A circle
- An ellipse
Introduction to Quadratic Equations Quiz Question 10: If the discriminant $\Delta$ of a quadratic equation equals zero, how many distinct real solutions does the equation have?
- Exactly one (correct)
- None
- Two distinct
- Infinitely many
Introduction to Quadratic Equations Quiz Question 11: What are the points where the graph of a quadratic function $y=ax^{2}+bx+c$ crosses the x‑axis called?
- zeros (roots) (correct)
- critical points
- inflection points
- vertex
Introduction to Quadratic Equations Quiz Question 12: What is the primary purpose of completing the square when solving a quadratic equation?
- Rewrite the equation as a perfect square so square roots can be taken (correct)
- Factor the quadratic into linear terms
- Apply the quadratic formula directly
- Eliminate the linear term without changing the solution set
Introduction to Quadratic Equations Quiz Question 13: If a quadratic equation has a negative discriminant, what does this tell you about the x‑intercepts of its graph?
- The graph has no real x‑intercepts (correct)
- The graph has exactly one x‑intercept
- The graph has two distinct real x‑intercepts
- The graph touches the x‑axis at the vertex
If a quadratic factors as (px + q)(rx + s) = 0, how are its solutions found?
1 of 13
Key Concepts
Quadratic Concepts
Quadratic equation
Quadratic function
Parabola
Solving Techniques
Factoring method
Completing the square
Quadratic formula
Discriminant
Applications of Quadratics
Projectile motion
Quadratic optimization
Quadratic cost function
Definitions
Quadratic equation
An algebraic expression of the form ax² + bx + c = 0 with a ≠ 0, whose solutions are the roots of a second‑degree polynomial.
Quadratic function
A function y = ax² + bx + c that graphs as a parabola and represents the relationship between x and y for a quadratic equation.
Parabola
The U‑shaped curve traced by the graph of a quadratic function, opening upward if a > 0 and downward if a < 0.
Factoring method
A technique for solving quadratics by expressing the polynomial as a product of linear factors (px + q)(rx + s) and setting each factor to zero.
Completing the square
A method that rewrites a quadratic expression in the form (x + d)² = e to facilitate solving or analyzing the equation.
Quadratic formula
The universal solution x = [–b ± √(b² – 4ac)] / (2a) that yields the roots of any quadratic equation.
Discriminant
The quantity Δ = b² – 4ac under the square root in the quadratic formula, determining the nature of the roots.
Projectile motion
The physics of objects moving under gravity, modeled by a quadratic equation for vertical position versus time.
Quadratic optimization
The process of finding the maximum or minimum of a quadratic function, often used in design and engineering problems.
Quadratic cost function
An economic model where costs, revenues, or profits are expressed as quadratic functions of production or other variables.