// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

Solving Quadratic Equations by 'Completing the Square'

Updated: May 21

Simply Maths


'Completing the Square': A Step-by-Step Guide


Quadratic equations are fundamental in algebra. While there are several ways to solve them, one of the most elegant and instructive techniques is through 'completing the square'. This method transforms the quadratic equation into a perfect square trinomial, making it easier to solve.


Before diving into the steps, let's recall a few important concepts:


Quadratic Equation:

An equation of the form

Perfect Square Trinomial: A trinomial that can be written as

where d is a constant.


Our goal is to rewrite the quadratic equation in the form

where d and e are constants.


Step-by-Step Process

Let's solve the following quadratic equation:

using the method of completing the square.


1. Move the constant term to the other side:

Start with the equation. Subtract the value for the constant, in this case 5, from both sides to isolate the quadratic and linear terms:





2. Identify the coefficient of 𝑥x and find half of it:

The coefficient of x is 6. Half of 6 is 3. We will need this


3. Square the half-coefficient and add it to both sides:

Square the half-coefficient:

Add 9 to both sides of the equation:

Simplifying the right side...

4. Rewrite the left side as a perfect square trinomial:

Using our half-coefficient from earlier, the left side of the equation can be written as:

So, the equation now becomes:

5. Solve for 𝑥x by taking the square root of both sides:

Take the square root of both sides to solve for x:

This results in two possible solutions:

So, the solutions are x = −1 and x = −5.


Practice this with lots of quadratic equations (there is a worksheet for you to download below) until you are comfortable with the process - it does get easier!


 

For those interested, we can use the general form of completing the square to derive the Quadratic Formula...

This method not only provides a pathway to solving quadratic equations but also gives insight into the derivation of the quadratic formula. By mastering completing the square, you gain a deeper understanding of the algebraic structures underlying quadratic equations.


 

Completing the square
.pdf
Download PDF • 140KB


Maths logo

5 views0 comments

Recent Posts

See All
bottom of page