Define Completing the Square- Algebra Method Explained

What Is Completing the Square?

Completing the square is a technique that converts a quadratic expression from standard form into a perfect square binomial plus a constant. It sounds fancy, but it's just algebra manipulation.

The basic idea: take x² + bx and add a value that makes it factorable as (x + something)². That "something" is always (b/2)².

You use this when you need to:

The Formula

For any quadratic ax² + bx + c, completing the square gives you:

ax² + bx + c = a(x + b/2a)² - (b/2a)² + c

That's the general form. Most textbooks teach the simpler case where a = 1 first, then build up from there.

How to Complete the Square (Step-by-Step)

When a = 1 (Simple Case)

Example: x² + 6x + 5

Step 1: Move the constant to the other side.

x² + 6x = -5

Step 2: Take half of the coefficient of x, then square it.

Half of 6 is 3. 3² = 9.

Step 3: Add that value to both sides.

x² + 6x + 9 = -5 + 9

Step 4: Factor the left side.

(x + 3)² = 4

Done. The completed square form is (x + 3)² = 4.

When a ≠ 1 (Harder Case)

Example: 2x² + 8x - 10 = 0

Step 1: Divide everything by the coefficient of x².

x² + 4x - 5 = 0

Step 2: Move the constant to the other side.

x² + 4x = 5

Step 3: Complete the square.

Half of 4 is 2. 2² = 4.

x² + 4x + 4 = 5 + 4

(x + 2)² = 9

Step 4: Solve if needed.

x + 2 = ±3

x = 1 or x = -5

Why Bother With This Method?

Factoring works sometimes. The quadratic formula works every time but requires memorizing the formula and doing messy calculations. Completing the square sits in the middle.

It works every time for any quadratic. No guessing. No special cases. Just follow the steps.

It's also how the quadratic formula gets derived. If you complete the square on ax² + bx + c = 0, you end up with:

x = (-b ± √(b² - 4ac)) / 2a

That's the formula everyone memorizes. Now you know where it comes from.

Quick Reference Table

Original ExpressionCompleted Square Form
x² + 4x + 4(x + 2)²
x² - 10x + 25(x - 5)²
x² + 2x - 3(x + 1)² - 4
2x² + 12x + 72(x + 3)² - 11

Common Mistakes

Practice Problem

Complete the square for: x² - 7x + 6

Answer: (x - 3.5)² - 6.25

Check: Expand (x - 3.5)² = x² - 7x + 12.25. Subtract 6.25 gives x² - 7x + 6. ✓

The fractions look ugly, but they're correct. This is why completing the square sometimes produces ugly answers. That's reality.