Skip to content
LearnTronics menu

LearnTronics

If...Then — Implication

Tutorial Index

“If this, then that”

Electrical instructions and troubleshooting are full of conditional statements:

If condition A is true, then result B should follow.

A is true “divisible by 4” implies B is true “is an even number” A → B does NOT automatically mean B → A. 6 is even, but 6 is not divisible by 4.

The arrow

A → B is read “A implies B” or “if A, then B.”

A useful example outside electronics

If a whole number is divisible by 4, then it is even.

That does not mean that every even number is divisible by 4. The number 6 is the easy counterexample.

The truth table can look odd at first

ABA → B
FFT
FTT
TFF
TTT

The only false row is the case where A is true but B is false. That is the case where the “if A, then B” promise has actually been broken.

Do not confuse implication with cause

“If A, then B” is a logical relationship. It does not automatically say that A is the physical cause of B, nor does it say that B can happen only because of A.

A little deeper — converse and contrapositive

Original: A → B
Converse: B → A — not automatically equivalent.
Contrapositive: NOT B → NOT A — logically equivalent to the original implication.

This becomes useful in troubleshooting: if a condition really guarantees an outcome, then proving that the outcome is absent can rule out that condition.

Try these yourself

For the statement “If A, then B,” which case makes the implication false?
An implication fails when the promised condition A occurs but B does not.
If “divisible by 4” implies “even,” does “even” imply “divisible by 4”? A is true “divisible by 4” implies B is true “is an even number” A → B does NOT automatically mean B → A. 6 is even, but 6 is not divisible by 4.
That would be the converse, and it is not automatically true. For example, 6 is even but not divisible by 4.
Which phrase is commonly represented by A → B?
The arrow is read as “A implies B” or “if A, then B.”