Quadratic equations are a fundamental part of algebra, representing relationships in various real-world situations such as physics, engineering, and finance. The standard form of a quadratic equation is ax2 + bx + c = 0, where a, b, and c are coefficients with a ≠ 0. Solving this equation involves finding the values of x that satisfy the given formula. There are several methods to solve quadratic equations, including factoring, completing the square, and using the quadratic formula. This guide will walk you through each method step-by-step, helping you understand how to find solutions efficiently and accurately.
How to Solve Ax2+bx+c=0
Understanding the Quadratic Equation
The quadratic equation ax2 + bx + c = 0 is a second-degree polynomial, meaning the highest power of the variable x is 2. The solutions to this equation are the values of x for which the quadratic expression equals zero. These solutions are also called roots or zeroes of the quadratic function.
Depending on the coefficients, the quadratic equation can have:
- Two real and distinct solutions
- One real repeated solution (a perfect square)
- Two complex solutions
The nature of the solutions can be determined by evaluating the discriminant, which is given by D = b2 - 4ac.
Method 1: Factoring
Factoring is often the simplest method when the quadratic trinomial can be expressed as a product of binomials. It involves rewriting the quadratic equation as:
(mx + n)(px + q) = 0
and then solving for x by setting each factor equal to zero.
Steps to Factor and Solve
- Write the quadratic equation in standard form.
- Find two numbers that multiply to ac and add to b.
- Rewrite the middle term bx using these two numbers, splitting the quadratic into four terms.
- Factor by grouping.
- Set each factor equal to zero and solve for x.
Example
Solve 2x2 + 5x - 3 = 0.
- Coefficients: a=2, b=5, c=-3.
- Find two numbers that multiply to 2 * (-3) = -6 and add to 5 — these are 6 and -1.
- Rewrite the equation: 2x2 + 6x - x - 3 = 0.
- Factor by grouping: 2x(x + 3) -1(x + 3) = 0.
- Factor out the common binomial: (2x - 1)(x + 3) = 0.
- Set each factor to zero: 2x - 1 = 0 → x = 1/2, and x + 3 = 0 → x = -3.
Solution: x = 1/2 or x = -3.
Method 2: Completing the Square
Completing the square transforms the quadratic into a perfect square trinomial, making it straightforward to solve. This method is particularly useful when factoring is difficult or impossible.
Steps to Complete the Square
- Ensure the quadratic is in the form ax2 + bx + c = 0.
- If a ≠ 1, divide the entire equation by a to normalize the coefficient of x2.
- Move the constant term to the right side: x2 + (b/a)x = -c/a.
- Calculate (b/2a)2 and add it to both sides to complete the square.
- Express the left side as a perfect square: (x + d)2.
- Solve for x by taking the square root of both sides and isolating x.
Example
Solve x2 + 6x + 5 = 0.
- Equation is already in standard form with a=1.
- Move c: x2 + 6x = -5.
- Calculate (6/2)^2 = 32 = 9.
- Add 9 to both sides: x2 + 6x + 9 = 4.
- Express as a perfect square: (x + 3)2 = 4.
- Take the square root: x + 3 = ±2.
- Solutions: x = -3 + 2 = -1 and x = -3 - 2 = -5.
Method 3: The Quadratic Formula
The quadratic formula is a universal method that works for all quadratic equations, regardless of whether they can be factored or completed the square. The formula is:
x = (-b ± √(b2 - 4ac)) / 2a
where the discriminant D = b2 - 4ac determines the nature of the solutions.
Steps to Use the Quadratic Formula
- Identify the coefficients a, b, and c in the quadratic equation.
- Calculate the discriminant D = b2 - 4ac.
- Evaluate the square root of the discriminant, noting whether it's positive, zero, or negative.
- Substitute the values into the quadratic formula and compute the solutions.
Example
Solve 3x2 - 4x + 1 = 0.
- Coefficients: a=3, b=-4, c=1.
- Discriminant: D = (-4)2 - 4*3*1 = 16 - 12 = 4.
- Square root of D: √4 = 2.
- Solutions:
- x = [ -(-4) + 2 ] / (2*3) = (4 + 2) / 6 = 6 / 6 = 1
- x = [ -(-4) - 2 ] / (2*3) = (4 - 2) / 6 = 2 / 6 = 1/3
Solutions: x = 1 or x = 1/3.
Using the Discriminant to Determine the Nature of Roots
The discriminant D = b2 - 4ac provides insight into the solutions of the quadratic equation:
- If D > 0, there are two distinct real solutions.
- If D = 0, there is exactly one real repeated solution.
- If D < 0, the solutions are complex conjugates, involving imaginary numbers.
This helps you choose the most appropriate method for solving or understanding the nature of the solutions.
Summary of Key Points
Solving quadratic equations is a fundamental skill in algebra, and there are multiple methods to do so:
- Factoring: Use when the quadratic easily factors into binomials.
- Completing the Square: Convert the quadratic into a perfect square trinomial, suitable for certain coefficients.
- The Quadratic Formula: The most versatile method, applicable to all quadratic equations regardless of their form.
Additionally, understanding the discriminant allows you to predict the nature of the solutions before solving. Practice with various types of quadratic equations will help you become proficient in choosing the most efficient solving method.