Practice Problems For Completing The Square

7 min read

Practice Problems for Completing the Square: A thorough look

Completing the square is one of the most fundamental techniques in algebra that every student must master. This method transforms quadratic expressions into a perfect square trinomial plus a constant, making it easier to solve equations, graph parabolas, and understand the structure of quadratic functions. Whether you're preparing for exams or strengthening your algebra skills, working through completing the square practice problems will build your confidence and deepen your understanding of this essential mathematical concept.

Understanding Completing the Square

Before diving into practice problems, let's establish a solid foundation. Completing the square is an algebraic technique that rewrites a quadratic expression of the form ax² + bx + c into the form a(x - h)² + k, where (h, k) represents the vertex of the parabola That's the part that actually makes a difference. But it adds up..

The key insight behind this method is recognizing perfect square trinomials. Notice that the constant term (p²) is always the square of half the coefficient of the linear term. A perfect square trinomial takes the form (x + p)², which expands to x² + 2px + p². This relationship is the heart of completing the square Small thing, real impact..

The general formula for completing the square when a = 1 is:

x² + bx = (x + b/2)² - (b/2)²

When the coefficient of x² is not 1, you must first factor it out before completing the square. This creates the modified formula:

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

Step-by-Step Process for Completing the Square

Understanding the systematic approach makes solving any completing the square problem straightforward. Follow these steps:

  1. Ensure the coefficient of x² is 1 — If it's not, factor it out from the first two terms
  2. Identify the coefficient of x — This is your "b" value
  3. Take half of b — Divide the coefficient of x by 2
  4. Square the result — Square the value from step 3
  5. Add and subtract this square — Add it inside the parentheses and subtract it outside to maintain equality
  6. Factor and simplify — Write the perfect square trinomial as a binomial squared and combine like terms

Practice Problems: Level 1 — Basic Expressions

The following completing the square practice problems focus on expressions where the coefficient of x² equals 1. Work through each problem carefully before checking the solutions No workaround needed..

Problem 1: Complete the square for x² + 6x + 5

Solution:

Step 1: Identify b = 6 Step 2: Half of b = 6/2 = 3 Step 3: Square it: 3² = 9 Step 4: Add and subtract 9:

x² + 6x + 5 = (x² + 6x + 9) - 9 + 5 = (x + 3)² - 4

Answer: (x + 3)² - 4

Problem 2: Complete the square for x² - 8x + 12

Solution:

Step 1: Identify b = -8 Step 2: Half of b = -8/2 = -4 Step 3: Square it: (-4)² = 16 Step 4: Add and subtract 16:

x² - 8x + 12 = (x² - 8x + 16) - 16 + 12 = (x - 4)² - 4

Answer: (x - 4)² - 4

Problem 3: Complete the square for x² + 10x

Solution:

Since there's no constant term, treat c as 0:

x² + 10x = (x² + 10x + 25) - 25 = (x + 5)² - 25

Answer: (x + 5)² - 25

Problem 4: Complete the square for x² - 3x + 2

Solution:

Step 1: Identify b = -3 Step 2: Half of b = -3/2 Step 3: Square it: (-3/2)² = 9/4 Step 4: Add and subtract 9/4:

x² - 3x + 2 = (x² - 3x + 9/4) - 9/4 + 2 = (x - 3/2)² - 9/4 + 8/4 = (x - 3/2)² - 1/4

Answer: (x - 3/2)² - 1/4

Practice Problems: Level 2 — Coefficients Greater Than 1

These completing the square practice problems require you to factor out the coefficient of x² first.

Problem 5: Complete the square for 2x² + 8x + 10

Solution:

Step 1: Factor out 2 from the first two terms: 2(x² + 4x) + 10

Step 2: Complete the square inside parentheses: b = 4, half of b = 2, square = 4 2(x² + 4x + 4 - 4) + 10 = 2[(x + 2)² - 4] + 10

Step 3: Distribute and simplify: = 2(x + 2)² - 8 + 10 = 2(x + 2)² + 2

Answer: 2(x + 2)² + 2

Problem 6: Complete the square for 3x² - 12x + 15

Solution:

Step 1: Factor out 3: 3(x² - 4x) + 15

Step 2: Complete the square: b = -4, half = -2, square = 4 3(x² - 4x + 4 - 4) + 15 = 3[(x - 2)² - 4] + 15

Step 3: Simplify: = 3(x - 2)² - 12 + 15 = 3(x - 2)² + 3

Answer: 3(x - 2)² + 3

Problem 7: Complete the square for -x² + 4x - 1

Solution:

When the coefficient is negative, factor out -1:

Step 1: Factor out -1: -(x² - 4x) - 1

Step 2: Complete the square: b = -4, half = -2, square = 4 -(x² - 4x + 4 - 4) - 1 = -[(x - 2)² - 4] - 1

Step 3: Simplify: = -(x - 2)² + 4 - 1 = -(x - 2)² + 3

Answer: -(x - 2)² + 3

Practice Problems: Level 3 — Solving Quadratic Equations

Completing the square becomes particularly useful when solving quadratic equations that cannot be easily factored.

Problem 8: Solve x² + 6x - 7 = 0 by completing the square

Solution:

Step 1: Move the constant to the right side: x² + 6x = 7

Step 2: Complete the square: x² + 6x + 9 = 7 + 9 (x + 3)² = 16

Step 3: Take the square root of both sides: x + 3 = ±4

Step 4: Solve for x: x = 4 - 3 = 1 or x = -4 - 3 = -7

Answer: x = 1 or x = -7

Problem 9: Solve 2x² + 5x - 3 = 0 by completing the square

Solution:

Step 1: Divide by 2 to make the coefficient 1: x² + (5/2)x = 3/2

Step 2: Complete the square: b = 5/2, half = 5/4, square = 25/16 x² + (5/2)x + 25/16 = 3/2 + 25/16 (x + 5/4)² = 24/16 + 25/16 (x + 5/4)² = 49/16

Step 3: Take the square root: x + 5/4 = ±7/4

Step 4: Solve: x = 7/4 - 5/4 = 2/4 = 1/2 or x = -7/4 - 5/4 = -12/4 = -3

Answer: x = 1/2 or x = -3

Common Mistakes to Avoid

When working through completing the square practice problems, watch out for these frequent errors:

  • Forgetting to balance the equation — Whatever you add inside the parentheses must be accounted for outside
  • Not factoring out the coefficient first — This leads to incorrect solutions when a ≠ 1
  • Making arithmetic errors when squaring fractions or half-terms
  • Forgetting the ± symbol when taking square roots in equation-solving problems

Frequently Asked Questions

Why is completing the square important?

Completing the square serves multiple purposes: it provides a method for solving quadratic equations, helps convert quadratic functions to vertex form for graphing, and is essential for deriving the quadratic formula. It's also foundational for understanding conic sections in advanced mathematics.

What's the difference between factoring and completing the square?

Factoring works only when quadratic expressions have integer roots that can be easily identified. Completing the square works for all quadratic expressions, including those with irrational or complex roots, making it a more universal method.

How do I check my completed square answer?

Expand your result using FOIL (First, Outer, Inner, Last) and verify it equals the original expression. To give you an idea, if you got (x + 3)² - 4, expand to get x² + 6x + 9 - 4 = x² + 6x + 5, which should match your original expression Turns out it matters..

Conclusion

Mastering completing the square requires consistent practice with problems of increasing difficulty. In practice, the practice problems in this guide progress from basic expressions with coefficient 1 to more complex equations involving coefficients greater than 1 and negative terms. Work through each level systematically, checking your answers and understanding where mistakes occur.

This technique becomes invaluable as you advance in mathematics, appearing in calculus (completing the square helps with certain integrals), statistics (normal distributions), and physics (projectile motion). By building strong skills now with these completing the square practice problems, you're preparing yourself for success in higher-level mathematics. Keep practicing, and this method will become second nature in your problem-solving toolkit.

Out Now

Straight from the Editor

Kept Reading These

Familiar Territory, New Reads

Thank you for reading about Practice Problems For Completing The Square. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home