تعليمات خطوة بخطوة
Identify Coefficients a, b, c
First, ensure your quadratic equation is in the standard form `ax² + bx + c = 0`. Then, identify the values of `a`, `b`, and `c`, including their signs. For the example `2x² + 5x - 3 = 0`: * `a = 2` * `b = 5` * `c = -3`
State the Quadratic Formula
Write down the quadratic formula to serve as a template for substitution and to help prevent errors. `x = [-b ± sqrt(b² - 4ac)] / 2a`
Substitute Coefficients into the Formula
Carefully replace `a`, `b`, and `c` in the formula with their identified numerical values. Pay close attention to negative signs. Substituting for `2x² + 5x - 3 = 0`: `x = [-5 ± sqrt(5² - 4 * 2 * -3)] / (2 * 2)`
Calculate the Discriminant (Δ = b² - 4ac)
Compute the value inside the square root first. This value, the discriminant, determines the nature of the roots and simplifies subsequent calculations. For our example: `Δ = 5² - 4 * 2 * -3` `Δ = 25 - (-24)` `Δ = 25 + 24` `Δ = 49`
Compute the Square Root of the Discriminant
Calculate `sqrt(Δ)`. If `Δ` is negative, the roots will involve complex numbers (e.g., `sqrt(-4) = 2i`). For `Δ = 49`: `sqrt(Δ) = sqrt(49)` `sqrt(Δ) = 7`
Calculate the Two Roots (x1 and x2)
Separate the `±` operation into two distinct calculations to find both roots of the equation. Using the calculated values: * **For x1 (using +):** `x1 = [-5 + 7] / 4` `x1 = 2 / 4` `x1 = 1/2` * **For x2 (using -):** `x2 = [-5 - 7] / 4` `x2 = -12 / 4` `x2 = -3` Therefore, the roots of the equation `2x² + 5x - 3 = 0` are `x = 1/2` and `x = -3`.
How to Calculate Roots Using the Quadratic Formula: Step-by-Step Guide
Introduction to Quadratic Equations
A quadratic equation is a polynomial equation of the second degree, meaning it contains at least one term where the variable is squared. The general form of a quadratic equation is:
ax² + bx + c = 0
where x represents an unknown variable, and a, b, and c are coefficients representing known numbers, with a ≠ 0. If a were 0, the equation would reduce to a linear equation. Solving a quadratic equation means finding the values of x (called roots or zeros) that satisfy the equation.
Prerequisites
To effectively follow this guide, you should have a foundational understanding of:
- Basic algebraic operations (addition, subtraction, multiplication, division).
- Working with positive and negative numbers.
- Calculating square roots.
- Order of operations (PEMDAS/BODMAS).
The Quadratic Formula
The quadratic formula is a direct method to find the roots of any quadratic equation. It is derived by completing the square on the general form ax² + bx + c = 0. The formula is:
x = [-b ± sqrt(b² - 4ac)] / 2a
Here, the ± symbol indicates that there are generally two distinct solutions: one where sqrt(b² - 4ac) is added, and one where it is subtracted.
The Discriminant (Δ)
The expression b² - 4ac within the square root is known as the discriminant, often denoted by Δ. The value of the discriminant determines the nature of the roots:
- If
Δ > 0: There are two distinct real roots. - If
Δ = 0: There is exactly one real root (a repeated root). - If
Δ < 0: There are two distinct complex conjugate roots.
Common Pitfalls
- Incorrectly Identifying Coefficients: Ensure
a,b, andcare correctly identified, paying close attention to their signs. For example, inx² - 3x = 0,a=1,b=-3,c=0. - Order of Operations: Follow PEMDAS/BODMAS strictly, especially when calculating
b² - 4ac. Remember that(-b)²is always positive, but-(b²)would be negative. - Sign Errors: A common mistake is mismanaging negative signs, particularly with
-band-4ac. - Dividing by
2a: Ensure the entire numerator[-b ± sqrt(b² - 4ac)]is divided by2a, not just thesqrtpart. - Simplifying Square Roots: Simplify
sqrt(Δ)where possible (e.g.,sqrt(12) = 2sqrt(3)).
When to Use a Calculator
While understanding the manual process is crucial, a calculator is invaluable for:
- Large Coefficients: When
a,b, orcare large numbers, manual calculation ofb²,4ac, and the square root can be tedious and error-prone. - Non-perfect Square Discriminants: If
b² - 4acis not a perfect square, a calculator is necessary to find its decimal approximation. - Checking Work: After a manual calculation, a calculator can quickly verify your results.
Worked Example: Solving 2x² + 5x - 3 = 0
Let's apply the quadratic formula to find the roots of the equation 2x² + 5x - 3 = 0.