lesson

Updated 6 days ago
Imagine a switch wired to do the exact opposite of what you tell it: turn it ON and the light goes OFF, turn it OFF and the light snaps ON.
In digital electronics, this fundamental building block is an inverter (or NOT gate), a device that takes a single binary state and flips it to its opposite.
How do we map out every single output this gate can ever produce?
The Inversion Truth Table
A truth table is a complete breakdown showing the output state a logic circuit produces for every possible input combination.
In Boolean algebraβthe mathematical system of binary logic created by George Boole in 1847βthe NOT operation on an input variable A is written with an overbar: Q=A.
πCreate an interactive Truth Table card for the NOT Gate. Display the Boolean equation Q = NOT A (Q = A-bar) at the top. Below, show a modern truth table with two columns: Input (A) and Output (Q). Row 1: A = 0, Q = 1 (LOW -> HIGH). Row 2: A = 1, Q = 0 (HIGH -> LOW). Below the table, include an interactive toggle button where clicking toggles input A between 0 and 1, with a glowing logic state indicator showing the live output Q flipping in real time.
Because binary logic allows only two discrete values (0 and 1), a single-input gate has only 21=2 possible rows in its table.
How do engineers draw this gate on official circuit schematics around the world?
ANSI vs. BS/IEC Symbols
Exam boards require you to recognize two official drawing standards: the distinctive-shape ANSI/IEEE symbol (common in the US) and the rectangular BS/IEC symbol (standardized internationally and in the UK).
πCreate a clear visual side-by-side comparison diagram showing the two NOT gate symbols. Left card: 'ANSI / IEEE Standard' showing a clean right-pointing triangle with a small inversion bubble at the right output tip, input wire labeled 'A' on left, output labeled 'Q' on right. Right card: 'BS / IEC 60617 Standard' showing a clean rectangle with the numeral '1' centered inside and an inversion bubble (or small qualifying circle) on the output lead. Label the inversion bubble on both symbols with an accent callout.
In the ANSI symbol, the triangle represents a buffer amplifier, while the small circleβknown as the inversion bubbleβis the specific element that performs the logical negation.