Skip to main content
Вернуться к руководствам
6 min read6 Шаги

How to Calculate Roots Using the Quadratic Formula: Step-by-Step Guide

Learn to manually solve any quadratic equation (ax²+bx+c=0) using the quadratic formula. Understand the formula, follow a worked example, and avoid common pitfalls.

Оставьте математику — воспользуйтесь калькулятором

Пошаговые инструкции

1

Identify the Coefficients (a, b, c)

First, ensure your quadratic equation is in the standard form `ax² + bx + c = 0`. Then, clearly identify the values of 'a' (the coefficient of x²), 'b' (the coefficient of x), and 'c' (the constant term). Pay close attention to their signs.

2

State the Quadratic Formula

Write down the quadratic formula: `x = [-b ± sqrt(b² - 4ac)] / 2a`. This helps reinforce memory and serves as a direct reference for substitution.

3

Substitute the Coefficients into the Formula

Carefully substitute the identified values of 'a', 'b', and 'c' into the quadratic formula. Use parentheses around substituted negative numbers to avoid sign errors, especially in the `b²` and `4ac` terms.

4

Calculate the Discriminant (b² - 4ac)

Before proceeding, evaluate the expression under the square root: `b² - 4ac`. This is called the discriminant. Calculating this term first simplifies the equation and helps determine the nature of the roots (real or complex).

5

Simplify and Solve for the Roots

Now, substitute the calculated discriminant back into the formula. Compute the square root, then perform the remaining arithmetic. Remember to calculate two separate solutions: one using the '+' sign and one using the '-' sign before the square root. Simplify any fractions or radical expressions.

6

Verify Your Solutions (Optional)

To confirm accuracy, substitute each calculated root back into the original quadratic equation (`ax² + bx + c = 0`). If both sides of the equation balance (result in 0=0), your solutions are correct. This step is crucial for manual learning and error checking.

Introduction to Quadratic Equations and the Quadratic Formula

A quadratic equation is a polynomial equation of the second degree, meaning the highest power of the variable is two. It is typically written in the standard form:

ax² + bx + c = 0

where 'x' represents an unknown, and 'a', 'b', and 'c' are coefficients (constants) with 'a' not equal to zero. These equations often arise in various fields, including physics, engineering, and finance, when modeling parabolic trajectories, optimization problems, or growth curves.

Solving a quadratic equation means finding the value(s) of 'x' that satisfy the equation. These values are known as the roots or solutions. While methods like factorization and completing the square can be effective, they are not always straightforward or universally applicable. This is where the quadratic formula becomes invaluable: it provides a direct method to find the roots for any quadratic equation.

Prerequisites

Before diving into the quadratic formula, ensure you have a solid understanding of:

  • Basic Algebra: Manipulating equations, combining like terms.
  • Order of Operations (PEMDAS/BODMAS): Parentheses/Brackets, Exponents/Orders, Multiplication and Division (from left to right), Addition and Subtraction (from left to right).
  • Square Roots: Understanding how to calculate and simplify them, including the concept of positive and negative roots.
  • Integer and Rational Number Operations: Addition, subtraction, multiplication, and division of positive and negative numbers.

The Quadratic Formula

The quadratic formula is expressed as:

x = [-b ± sqrt(b² - 4ac)] / 2a

This formula will yield two potential roots for 'x' (or one repeated root, or two complex roots), corresponding to the '+' and '-' operations before the square root. The term b² - 4ac is known as the discriminant (often denoted by Δ or D), which tells us about the nature of the roots.

  • If b² - 4ac > 0, there are two distinct real roots.
  • If b² - 4ac = 0, there is exactly one real root (a repeated root).
  • If b² - 4ac < 0, there are two distinct complex (non-real) roots.

Worked Example: Solving a Quadratic Equation

Let's solve the quadratic equation 2x² + 5x - 3 = 0 using the quadratic formula.

Step 1: Identify the Coefficients (a, b, c)

First, compare our equation 2x² + 5x - 3 = 0 to the standard form ax² + bx + c = 0.

  • a = 2
  • b = 5
  • c = -3

Step 2: Write Down the Quadratic Formula

It's good practice to write the formula every time to help memorize it and reduce errors:

x = [-b ± sqrt(b² - 4ac)] / 2a

Step 3: Substitute the Coefficients into the Formula

Carefully substitute the values of a, b, and c into the formula:

x = [-(5) ± sqrt((5)² - 4 * (2) * (-3))] / (2 * (2))

Step 4: Calculate the Discriminant (b² - 4ac)

Always calculate the term under the square root first. This is the discriminant.

Discriminant = (5)² - 4 * (2) * (-3) Discriminant = 25 - (-24) Discriminant = 25 + 24 Discriminant = 49

Since the discriminant (49) is greater than 0, we expect two distinct real roots.

Step 5: Simplify and Solve for the Roots

Now substitute the discriminant back into the formula and continue simplifying:

x = [-5 ± sqrt(49)] / 4 x = [-5 ± 7] / 4

Now, calculate the two possible roots:

For x1 (using the '+'): x1 = (-5 + 7) / 4 x1 = 2 / 4 x1 = 1/2

For x2 (using the '-'): x2 = (-5 - 7) / 4 x2 = -12 / 4 x2 = -3

So, the roots of the equation 2x² + 5x - 3 = 0 are x = 1/2 and x = -3.

Step 6: Verify Your Solutions (Optional but Recommended)

To ensure accuracy, plug each root back into the original equation 2x² + 5x - 3 = 0.

For x = 1/2: 2(1/2)² + 5(1/2) - 3 = 0 2(1/4) + 5/2 - 3 = 0 1/2 + 5/2 - 3 = 0 6/2 - 3 = 0 3 - 3 = 0 0 = 0 (Correct)

For x = -3: 2(-3)² + 5(-3) - 3 = 0 2(9) - 15 - 3 = 0 18 - 15 - 3 = 0 3 - 3 = 0 0 = 0 (Correct)

Both solutions are verified.

Common Pitfalls to Avoid

  • Sign Errors: This is the most frequent mistake. Pay close attention to negative signs, especially when b or c are negative, and within the 4ac term. Remember is always positive, even if b is negative.
  • Order of Operations: Incorrectly calculating b² - 4ac or forgetting to multiply 2a in the denominator before dividing. Always calculate the discriminant first.
  • Square Root of Negative Numbers: If b² - 4ac is negative, the roots are complex. Do not stop; express the square root in terms of i (where i = sqrt(-1)).
  • Not Simplifying: Always simplify fractions and square roots to their lowest terms.
  • Forgetting Both Roots: Remember the ± sign means there are generally two distinct roots. Don't stop after finding just one.
  • Incorrectly Identifying Coefficients: Ensure the equation is in standard form ax² + bx + c = 0 before identifying a, b, and c. If a term is missing (e.g., 2x² - 3 = 0), then b=0.

When to Use a Calculator for Convenience

While understanding manual calculation is crucial, calculators can be incredibly useful for:

  • Complex or Large Coefficients: When a, b, or c are large numbers, fractions, or decimals, manual arithmetic can become tedious and error-prone.
  • Checking Your Work: After a manual calculation, a calculator can quickly verify your roots, especially for high-stakes problems.
  • Finding Decimal Approximations: If the roots involve non-perfect square roots (e.g., sqrt(7)), a calculator is necessary to get decimal approximations.
  • Speed: In timed situations or when dealing with many equations, a calculator significantly speeds up the process.

Even when using a calculator, understanding the underlying formula and steps will help you interpret the results correctly and catch potential input errors.

Готовы рассчитать?

Откажитесь от ручной работы и получите мгновенные результаты.

Открыть калькулятор

Настройки