In short

Factoring is the inverse of multiplication. So whenever you write a factorisation, multiply it back in your head and compare to the original — same coefficients, same signs, same number of terms? If yes, you are done. If even one coefficient is off, you have caught the mistake while it still costs you ten seconds, not ten marks. The check is mechanical (FOIL or the box method), takes about as long as cracking your knuckles, and converts factoring from a guess-and-pray exercise into a closed loop with verification.

You factored x^2 + x - 6 as (x + 3)(x - 2). Are you sure? You did the work, you got something — but the sign on the middle term in your bracket and the sign in the original have a habit of crossing wires. The fastest way to know is not to redo the factoring. It is to multiply your answer back out and check it lands on the original polynomial.

This is the single most undervalued habit in school algebra. Treat factoring as a closed loop: the moment you write down the factored form, expand it back. If it matches, sign and move on. If it does not, you know immediately you have a sign slip or a missing factor — before the question is marked, before the next part of the problem propagates the error, before you waste ten more minutes on a wrong base.

The cost is about ten seconds. The saving is everything from one careless mark to a whole question.

Why this works — factoring is division

When you factor x^2 + x - 6 into (x + 3)(x - 2), what you have actually done is rewrite the polynomial as a product. The reverse operation — multiplying (x + 3)(x - 2) — must give you back exactly x^2 + x - 6. No new terms, no missing terms, every sign in place.

Why this is reliable: factoring is the inverse of multiplication, the same way division is the inverse of multiplication for numbers. If 12 \div 3 = 4, you can check by multiplying 3 \times 4 = 12. If x^2 + x - 6 = (x + 3)(x - 2), you can check by multiplying (x + 3)(x - 2) back out. The forward operation (factoring) is hard — guesswork, pattern recognition, sign tracking. The inverse operation (multiplying) is mechanical — distribute, collect, done. So you let the easy direction police the hard one.

The whole loop fits on a postcard.

Factor verify loop — factor, multiply back, compare, then either ship or re-factorA circular flow with four nodes. Start at the top with a box labelled original polynomial. An arrow going clockwise to the right labelled factor leads to a box labelled factored form. From factored form a downward arrow labelled multiply back FOIL leads to a box labelled product. From product an arrow going left labelled compare leads to a diamond shaped decision node. From the diamond a yes arrow goes up to a green box labelled done sign and ship. A no arrow loops back up to the original polynomial via a curved arrow labelled re-factor catch the slip. original polynomial factor factored form multiply back (FOIL) product compare match? yes — done no — re-factor
The verify loop. Factor → multiply back → compare. If the product matches the original, you are finished. If not, your factoring has an error — usually a sign or a dropped factor — and you re-enter the loop.

How to multiply back in your head

For a quadratic that factored into two binomials, FOIL is the standard mnemonic — First, Outer, Inner, Last. For (x + 3)(x - 2):

Add them: x^2 - 2x + 3x - 6 = x^2 + x - 6. Why FOIL: the distributive law says you multiply every term in the first bracket by every term in the second. With two terms each, that gives four products. FOIL is just a fixed order so you do not forget any.

For three or more factors, expand two at a time, or use the box method (a small grid where rows and columns are the bracketed terms and each cell holds the product). The box method is harder to skip a term in, because every cell is visible.

Worked example 1 — clean match, ship it

You are asked to factor x^2 + 7x + 12. You spot the pair 3, 4 (multiply to 12, add to 7) and write:

x^2 + 7x + 12 = (x + 3)(x + 4)

Verify

FOIL (x + 3)(x + 4):

  • F: x \cdot x = x^2.
  • O: x \cdot 4 = 4x.
  • I: 3 \cdot x = 3x.
  • L: 3 \cdot 4 = 12.

Sum: x^2 + 4x + 3x + 12 = x^2 + 7x + 12. Match.

Box method check for x plus 3 times x plus 4A two by two grid. The top edge is labelled x and 4, the left edge is labelled x and 3. The four cells contain x squared, 4x, 3x, and 12 in reading order. A note below says the cells sum to x squared plus 7x plus 12 — match. x 4 x 3 4x 3x 12 sum: x² + 7x + 12 ✓
Box method: each cell is the product of its row and column header. The four cells sum to the original polynomial — match confirmed.

Took about eight seconds. Move on.

Worked example 2 — the sign-slip rescue

You are factoring x^2 + x - 6. You think for a moment, jot down two numbers that multiply to -6 and add to +1, and write:

x^2 + x - 6 \overset{?}{=} (x - 3)(x + 2)

It looks right. Both signs are in there, the numbers 3 and 2 multiply to 6. But you developed the habit, so before moving on you multiply back.

Verify

FOIL (x - 3)(x + 2):

  • F: x \cdot x = x^2.
  • O: x \cdot 2 = 2x.
  • I: -3 \cdot x = -3x.
  • L: -3 \cdot 2 = -6.

Sum: x^2 + 2x - 3x - 6 = x^2 - x - 6.

Compare: original was x^2 + x - 6, your product is x^2 - x - 6. Mismatch on the middle sign. The constant term is right, the squared term is right, but the middle is off by a sign.

Why the sign flipped: in (x - 3)(x + 2) the bigger absolute value (3) carries the negative sign. The middle term in the product picks up the difference of the two outer-and-inner contributions, and the bigger one wins the sign. So the trinomial gets a -x, not a +x.

You now know: swap the signs in the brackets. Try (x + 3)(x - 2):

  • F: x^2. O: -2x. I: 3x. L: -6. Sum: x^2 + x - 6. Match.

So the correct factoring is

x^2 + x - 6 = (x + 3)(x - 2).

The whole loop — first guess, FOIL check, sign correction, second FOIL check — took about thirty seconds. Without the check, you would have walked away with the wrong factorisation and propagated it into whatever came next (solving for roots, simplifying a fraction, computing a derivative).

This is the most common single mistake students make in factoring — the sign of the middle term in (x \pm a)(x \pm b) when a and b have opposite signs. The verify-by-multiplying-back check catches it every single time, because it is impossible to multiply (x - 3)(x + 2) and not notice the middle term comes out to -x.

Worked example 3 — the dropped-factor rescue

You are asked to factor 2x^2 + 4x. You spot the common factor x (you forget the 2) and write:

2x^2 + 4x \overset{?}{=} x(x + 2)

You always pull the GCF first, but in the rush you grabbed only part of it. Multiply back to check.

Verify

Distribute x over (x + 2):

  • x \cdot x = x^2.
  • x \cdot 2 = 2x.

Sum: x^2 + 2x.

Compare: original was 2x^2 + 4x, your product is x^2 + 2x. Off by a factor of 2 in every term.

Why a missing constant factor shows up in the check: every term in the original was double what your product gives. That is the signature of a missing scalar factor. The shape is right (both have an x^2 term and an x term in the same proportions), but the magnitude is wrong by exactly 2. So you forgot to pull a 2 out — your GCF should have been 2x, not x.

Correct it: GCF is 2x, not x. Rewrite:

2x^2 + 4x = 2x(x + 2).

Verify again: 2x \cdot x = 2x^2, 2x \cdot 2 = 4x, sum 2x^2 + 4x. Match.

This kind of slip — pulling out a partial GCF — is invisible to your eye when you stare at the original. But the moment you multiply back, the ratio of every coefficient to its original is exactly the missing factor, and you spot it instantly.

What the check catches, in order of frequency

After grading enough Class 9 papers, the most common factoring slips fall into four buckets — and the multiply-back check catches all four:

  1. Sign of the middle term wrong (x + 1 instead of x - 1 in one bracket). The product's middle coefficient flips sign or magnitude. Always shows up.
  2. Forgot a constant factor (x(x+2) for 2x^2 + 4x). Every term in your product is off by the same multiplicative ratio.
  3. Forgot a variable factor (treating x^3 - x as (x-1)(x+1) instead of x(x-1)(x+1)). Your product has the wrong degree.
  4. Wrong split of the middle term in the ac-method, giving brackets that multiply to a quadratic with the wrong middle coefficient. Caught at FOIL.

The unifying observation is that when factoring is wrong, the wrongness always surfaces in the product. There is no slip that hides from a careful redistribution. So if you make checking automatic, you make wrong factorisations into a vanishing problem.

The cricket-net analogy

Think of it like batting in the nets. After every shot, you look at where the ball went — did it travel along the ground in front of square, or did it pop up off the edge? The look-back takes a fraction of a second and tells you whether the shot was clean. You do not skip it because then you never know which shots are working.

Multiplying back after factoring is the same look-back. You hit the shot (factored), now check where the ball went (multiplied back). Match? Clean shot. Mismatch? Adjust your grip, try again. Over a few hundred reps the loop becomes invisible — you are factoring and verifying in one motion, the way a good batter plays and looks up at the same instant.

Common confusions

The bottom line

Every factorisation has a built-in check: multiply it back. The check takes ten seconds, costs nothing, and catches almost every common error — sign slips, dropped factors, miscounted terms. Make it a reflex. The moment you write the factored form, your hand should already be moving to FOIL the brackets back into a polynomial.

Factoring is division; multiplying back is the inverse check. Run the inverse every single time, and you stop submitting wrong factorisations.

References

  1. FOIL method — Wikipedia
  2. Factorization — Wikipedia
  3. Khan Academy — Multiplying binomials
  4. NCERT Class 9 Maths, Chapter 2 — Polynomials
  5. Distributive property — Wikipedia