You started the proof the right way. "Suppose, for contradiction, that …" You ran the algebra carefully. Twenty minutes in, you have half a page of derivations and no wall. Every line follows cleanly from the last one. No collision with the assumption, no collision with any theorem. The proof refuses to close.
Eight times out of ten, the problem is not the algebra — it is the first line. Your negation was too weak. It did not capture the full denial of the original claim, and so the algebra had no real target to hit. This article is about how to notice a weak negation and how to strengthen it.
Why weak negations stall
Proof by contradiction works because the negation of the claim is logically incompatible with the rest of the world. Your algebra is supposed to exploit that incompatibility by producing a consequence that collides with something you already know.
If the negation is too weak — if it is almost the denial but misses a quantifier or flips the wrong connective — then it is not actually incompatible. The algebra can run forever and never hit a wall, because nothing is forcing one to appear.
Why a weak negation is indistinguishable from a correct negation on the surface: in natural English, both often sound like they say the same thing. "There is no x with property P" is easy to confuse with "Not every x has property P," but the second is much weaker. Contradiction needs the full denial; the half-denial does not generate collisions.
The three common failure modes
Failure mode 1: missing a quantifier flip. The claim says "for all x, property P(x) holds." A correct negation is "there exists some x for which P(x) fails." A weak negation is "P is not always true," written without a specific x. The weak version does not give you a concrete object to manipulate, so no algebra engages.
Failure mode 2: negating only part of the statement. The claim is "if P then Q." A correct negation is "P is true and Q is false." A weak negation is "if P then not Q," which is a different implication, not a denial. You are proving a different theorem when you do this.
Failure mode 3: negating a composite claim shallowly. The claim is "x is rational and positive." A correct negation is "x is irrational or x is non-positive." A weak negation might be "x is irrational and non-positive" — a stronger condition than the denial, which may not hold in the actual counterexample. You will then fail to derive a contradiction because the situation you assumed does not match the denial.
The diagnostic
When the proof stalls, run this three-part check on your first line:
Check 1 — Did you flip every quantifier? For all becomes there exists. There exists becomes for all. If the original claim has nested quantifiers ("\forall x \exists y \ldots"), the negation flips every layer ("\exists x \forall y \lnot \ldots"). Missing a flip produces a weak negation.
Check 2 — Did you turn "if–then" into "and"? The denial of "if P then Q" is "P and not Q." Not "if P then not Q." This is the single most frequent source of stalled contradiction proofs.
Check 3 — Did you use De Morgan's laws on conjunctions and disjunctions? The denial of "A and B" is "not A or not B" — a disjunction. The denial of "A or B" is "not A and not B" — a conjunction. Forgetting to flip the connective gives a weaker negation that does not cover all cases.
If any of these checks fails, rewrite the first line and try again. Often the proof closes in a few more steps.
The negation-strengthener
A worked recovery
Suppose you are trying to prove: "For every positive real x, if x^2 + 1 > 0 then x > 0 or x = 0 or x < 0."
Your first line reads: "Suppose, for contradiction, there is some x > 0 with x^2 + 1 > 0 but x is not positive."
You run the algebra: x > 0 and x is not positive. Already you have a contradiction with your own first line — but the claim you set out to prove is true and trivial, so this can't be right. What happened?
The original claim is a universal statement with an empty conclusion (every real is positive, zero, or negative, so the "or" is vacuous). Your negation should have been: "There exists a real x with x^2 + 1 > 0 but x is neither positive nor zero nor negative." That is impossible by trichotomy — contradiction.
But the weak version — "x > 0 and x is not positive" — contradicts itself trivially, which is not the proof. The correct negation needs to flip all the quantifiers and handle the full conclusion. When you do, the proof closes instantly and for the right reason.
When the algebra really is wrong
Occasionally the stall is not the negation — it is the derivation. If you have rewritten the negation, strengthened it, and the algebra still produces no wall, check:
- Is the claim actually true? Sometimes students try to prove false statements. Test the claim on a small example.
- Is there a required theorem you have not cited? The contradiction may need a fact you have not placed in the known-facts box — see Keep a Running List of Assumed Facts.
- Is a case-split hiding the wall? The contradiction may only appear in one branch of a case analysis. Split on parity, sign, or size and re-check each branch.
If all three pass and the proof still does not close, the technique may be wrong for this problem — contradiction is not the right approach. Try direct or contrapositive.
Strengthening the negation in a stalled proof
Claim. If n^2 is even, then n is even.
Weak first attempt. "Suppose n^2 is even. Then if n is not even, ..." — this is the contrapositive structure, but written as a conditional, not a denial. You end up proving a different statement.
Correct negation. The claim is "if P then Q," so the denial is "P and not Q." Write: "Suppose, for contradiction, n^2 is even and n is odd." Now both halves are concrete facts you can manipulate.
Derivation. n is odd means n = 2k + 1 for some integer k. So n^2 = 4k^2 + 4k + 1 = 2(2k^2 + 2k) + 1. This is odd.
Flag. We have n^2 is even (by assumption) and n^2 is odd (just derived). Contradiction. \blacksquare
Notice: with the weak negation, the algebra had nowhere to land. With the correct negation, it produced a clean wall in two lines.
The habit in one line
Whenever a proof by contradiction refuses to close, the first suspect is the first line. Rewrite the negation: flip every quantifier, convert "if–then" to "and," apply De Morgan's laws to every "and" and "or." Nine times out of ten the proof then closes itself.
Related: Proof by Contradiction · Negate-This-Statement Drill — Flip Quantifiers, Swap Words · How Do I Negate 'For All x, There Exists y Such That P(x, y)'? · When Is It Really a Contradiction (vs Just Something Weird)? · First Move: 'Suppose, for Contradiction, That...'