6. Quadratics and Data

Solving Quadratics

Solve quadratic equations using factoring, completing the square, and the quadratic formula with discriminant interpretation.

Solving Quadratics

Hey students! šŸ‘‹ Welcome to one of the most powerful topics in algebra - solving quadratic equations! In this lesson, you'll master three essential methods for solving these curved equations: factoring, completing the square, and using the quadratic formula. By the end, you'll be able to tackle any quadratic equation that comes your way and understand what the discriminant tells us about solutions. Get ready to unlock the secrets of these mathematical curves! šŸš€

What Are Quadratic Equations and Why Do They Matter?

A quadratic equation is any equation that can be written in the standard form $ax^2 + bx + c = 0$, where $a$, $b$, and $c$ are real numbers and $a ≠ 0$. The term "quadratic" comes from the Latin word "quadratum," meaning square, because the highest power of the variable is 2.

These equations pop up everywhere in real life! šŸŒ When you throw a basketball, the path it follows is described by a quadratic equation. Engineers use quadratics to design bridges and calculate the optimal shape for satellite dishes. Even economists use them to model profit and loss scenarios for businesses.

The graph of a quadratic equation is called a parabola - that beautiful U-shaped (or upside-down U-shaped) curve you've probably seen before. The solutions to a quadratic equation are the x-values where this parabola crosses the x-axis, also called the roots or zeros of the equation.

What makes quadratics special is that they can have exactly 0, 1, or 2 real solutions. This might seem strange at first, but think about it: a parabola might miss the x-axis entirely (no solutions), just touch it at one point (one solution), or cross it at two different points (two solutions).

Method 1: Solving by Factoring

Factoring is often the fastest method when it works, and it's based on a simple but powerful principle: if two numbers multiply to give zero, then at least one of them must be zero. This is called the Zero Product Property.

Let's start with a concrete example: $x^2 + 5x + 6 = 0$

To factor this, we need to find two numbers that multiply to give us the constant term (6) and add to give us the coefficient of the middle term (5). Those numbers are 2 and 3, because $2 Ɨ 3 = 6$ and $2 + 3 = 5$.

So we can write: $x^2 + 5x + 6 = (x + 2)(x + 3) = 0$

Now we use the Zero Product Property: if $(x + 2)(x + 3) = 0$, then either $x + 2 = 0$ or $x + 3 = 0$.

Solving these simple equations: $x = -2$ or $x = -3$

Let's try a more challenging example: $2x^2 - 8x + 6 = 0$

First, notice we can factor out the common factor of 2: $2(x^2 - 4x + 3) = 0$

This simplifies to: $x^2 - 4x + 3 = 0$

Now we need two numbers that multiply to 3 and add to -4. Those are -1 and -3.

So: $(x - 1)(x - 3) = 0$

Therefore: $x = 1$ or $x = 3$

Here's a real-world application: Imagine you're designing a rectangular garden where the length is 3 feet more than the width, and the total area is 40 square feet. If the width is $x$, then the length is $x + 3$, and the area equation becomes $x(x + 3) = 40$, which expands to $x^2 + 3x - 40 = 0$. Factoring gives us $(x + 8)(x - 5) = 0$, so $x = -8$ or $x = 5$. Since width can't be negative, the width is 5 feet and the length is 8 feet! šŸ“

Method 2: Completing the Square

Sometimes quadratics don't factor nicely with integer solutions, and that's where completing the square becomes invaluable. This method transforms the quadratic into a perfect square trinomial, making it easier to solve.

The key insight is that $(x + d)^2 = x^2 + 2dx + d^2$. So if we have $x^2 + bx$, we can complete the square by adding and subtracting $(b/2)^2$.

Let's solve $x^2 + 6x - 7 = 0$ using this method:

Step 1: Move the constant to the right side: $x^2 + 6x = 7$

Step 2: Complete the square on the left side. Take half of the coefficient of $x$ (which is 6), square it: $(6/2)^2 = 9$

Step 3: Add 9 to both sides: $x^2 + 6x + 9 = 7 + 9 = 16$

Step 4: Factor the left side as a perfect square: $(x + 3)^2 = 16$

Step 5: Take the square root of both sides: $x + 3 = ±4$

Step 6: Solve for $x$: $x = -3 + 4 = 1$ or $x = -3 - 4 = -7$

This method is particularly useful in physics problems. For instance, if an object is thrown upward with an initial velocity of 48 feet per second from a height of 6 feet, its height after $t$ seconds is given by $h = -16t^2 + 48t + 6$. To find when it hits the ground (h = 0), we solve $-16t^2 + 48t + 6 = 0$. Completing the square helps us find that the object hits the ground after approximately 3.12 seconds! ⚽

Method 3: The Quadratic Formula and Discriminant

The quadratic formula is the most reliable method because it works for every quadratic equation, even when factoring and completing the square become messy. For any quadratic equation $ax^2 + bx + c = 0$, the solutions are:

$$x = \frac{-b ± \sqrt{b^2 - 4ac}}{2a}$$

The expression under the square root, $b^2 - 4ac$, is called the discriminant, and it tells us everything about the nature of the solutions:

  • If $b^2 - 4ac > 0$: Two distinct real solutions
  • If $b^2 - 4ac = 0$: One repeated real solution
  • If $b^2 - 4ac < 0$: No real solutions (two complex solutions)

Let's solve $3x^2 - 2x - 8 = 0$ using the quadratic formula:

Here, $a = 3$, $b = -2$, and $c = -8$

First, let's check the discriminant: $b^2 - 4ac = (-2)^2 - 4(3)(-8) = 4 + 96 = 100$

Since the discriminant is positive (and a perfect square!), we have two distinct real solutions.

$$x = \frac{-(-2) ± \sqrt{100}}{2(3)} = \frac{2 ± 10}{6}$$

So: $x = \frac{2 + 10}{6} = 2$ or $x = \frac{2 - 10}{6} = -\frac{4}{3}$

The quadratic formula is essential in many real-world applications. For example, when calculating the optimal price for a product to maximize revenue, businesses often encounter quadratic equations. If a company's revenue function is $R = -2p^2 + 100p$, where $p$ is the price, they can use the quadratic formula to find the price that yields a specific revenue target! šŸ’°

Conclusion

Congratulations, students! You've now mastered three powerful methods for solving quadratic equations. Factoring is your fastest option when the equation factors nicely, completing the square gives you insight into the structure of the equation and is great for deriving other forms, and the quadratic formula is your reliable backup that always works. Remember that the discriminant is your crystal ball - it tells you exactly what type of solutions to expect before you even start solving. These skills will serve you well not just in algebra, but in calculus, physics, engineering, and countless real-world problem-solving situations! šŸŽÆ

Study Notes

• Standard Form: $ax^2 + bx + c = 0$ where $a ≠ 0$

• Zero Product Property: If $AB = 0$, then $A = 0$ or $B = 0$

• Factoring Steps: Find two numbers that multiply to $ac$ and add to $b$

• Completing the Square Formula: $x^2 + bx + (b/2)^2 = (x + b/2)^2$

• Quadratic Formula: $x = \frac{-b ± \sqrt{b^2 - 4ac}}{2a}$

• Discriminant: $\Delta = b^2 - 4ac$

• Discriminant > 0: Two distinct real solutions

• Discriminant = 0: One repeated real solution

• Discriminant < 0: No real solutions

• Solutions are also called: roots, zeros, or x-intercepts

• Graph of quadratic: Parabola (U-shaped curve)

• Real-world applications: Projectile motion, area problems, revenue optimization

Practice Quiz

5 questions to test your understanding

Solving Quadratics — High School Algebra 1 | A-Warded