The solutions to the quadratic equation ax² + bx + c = 0 are: x₁ = {{ solution1 !== null ? solution1.toFixed(2) : 'N/A' }} and x₂ = {{ solution2 !== null ? solution2.toFixed(2) : 'N/A' }}.

Calculation Process:

1. Start with the quadratic equation: ax² + bx + c = 0

2. Divide through by a (if a ≠ 1): x² + (b/a)x + (c/a) = 0

3. Move c/a to the other side: x² + (b/a)x = -(c/a)

4. Add (b/2a)² to both sides: x² + (b/a)x + (b/2a)² = -(c/a) + (b/2a)²

5. Simplify the left-hand side: (x + b/2a)² = -(c/a) + (b/2a)²

6. Take the square root of both sides: x + b/2a = ±√(-(c/a) + (b/2a)²)

7. Solve for x: x = -b/2a ± √(-(c/a) + (b/2a)²)

Share
Embed

Completing the Square Calculator

Created By: Neo
Reviewed By: Ming
LAST UPDATED: 2025-03-23 06:22:31
TOTAL CALCULATE TIMES: 156
TAG:

Completing the square is a powerful mathematical technique used to rewrite a quadratic equation in vertex form. This guide provides a comprehensive overview of the method, including step-by-step instructions, real-world applications, and practical examples.


Why Completing the Square Matters: Unlocking the Power of Quadratic Equations

Essential Background

Quadratic equations take the general form:

\[ ax^2 + bx + c = 0 \]

Where:

  • \(a\), \(b\), and \(c\) are constants.
  • \(a \neq 0\).

By completing the square, we can transform this equation into vertex form:

\[ a(x-h)^2 + k = 0 \]

This transformation reveals key insights about the parabola, such as its vertex (\(h, k\)), axis of symmetry, and direction of opening.


The Formula Behind Completing the Square: A Step-by-Step Breakdown

To complete the square for any quadratic equation \(ax^2 + bx + c = 0\):

  1. Normalize the equation: If \(a \neq 1\), divide every term by \(a\). \[ x^2 + \frac{b}{a}x + \frac{c}{a} = 0 \]

  2. Isolate the \(x^2\) and \(x\) terms: Move the constant term to the right-hand side. \[ x^2 + \frac{b}{a}x = -\frac{c}{a} \]

  3. Add a perfect square trinomial: Add \(\left(\frac{b}{2a}\right)^2\) to both sides. \[ x^2 + \frac{b}{a}x + \left(\frac{b}{2a}\right)^2 = -\frac{c}{a} + \left(\frac{b}{2a}\right)^2 \]

  4. Factor the left-hand side: Rewrite it as a squared binomial. \[ \left(x + \frac{b}{2a}\right)^2 = -\frac{c}{a} + \left(\frac{b}{2a}\right)^2 \]

  5. Solve for \(x\): Take the square root of both sides and isolate \(x\).


Practical Examples: Solving Real Quadratic Equations

Example 1: Basic Equation

Scenario: Solve \(x^2 + 6x + 8 = 0\).

  1. Normalize: Already normalized (\(a = 1\)).
  2. Isolate: \(x^2 + 6x = -8\).
  3. Add \(\left(\frac{6}{2}\right)^2 = 9\) to both sides: \(x^2 + 6x + 9 = -8 + 9\).
  4. Factor: \((x + 3)^2 = 1\).
  5. Solve: \(x + 3 = \pm 1\). Thus, \(x = -2\) or \(x = -4\).

Example 2: Complex Coefficients

Scenario: Solve \(2x^2 - 4x - 6 = 0\).

  1. Normalize: Divide by 2: \(x^2 - 2x - 3 = 0\).
  2. Isolate: \(x^2 - 2x = 3\).
  3. Add \(\left(\frac{-2}{2}\right)^2 = 1\) to both sides: \(x^2 - 2x + 1 = 3 + 1\).
  4. Factor: \((x - 1)^2 = 4\).
  5. Solve: \(x - 1 = \pm 2\). Thus, \(x = 3\) or \(x = -1\).

FAQs About Completing the Square

Q1: When should I use completing the square instead of the quadratic formula?

While the quadratic formula provides direct solutions, completing the square offers additional insights into the structure of the parabola. It's particularly useful when graphing or analyzing the vertex.

Q2: What happens if the discriminant is negative?

If the discriminant (\(b^2 - 4ac\)) is negative, the solutions will involve imaginary numbers. For example, solving \(x^2 + x + 1 = 0\) yields complex roots.

Q3: Can completing the square be applied to higher-degree polynomials?

No, completing the square is specific to quadratic equations. For higher-degree polynomials, alternative techniques like factoring or synthetic division are required.


Glossary of Terms

  • Quadratic equation: An equation of the form \(ax^2 + bx + c = 0\).
  • Vertex form: A rewritten version of the quadratic equation that highlights the vertex of the parabola.
  • Discriminant: The value \(b^2 - 4ac\), which determines the nature of the roots.
  • Perfect square trinomial: A polynomial that can be expressed as the square of a binomial.

Interesting Facts About Completing the Square

  1. Historical significance: The method dates back to ancient Babylonian mathematicians, who solved quadratic equations geometrically.
  2. Modern applications: Completing the square is widely used in physics, engineering, and computer science for optimization problems and curve fitting.
  3. Connection to circles: By completing the square for both \(x\) and \(y\) variables, you can rewrite the equation of a circle in standard form.