Math Fundamentals18 sections · 814 units
Open in Course

NOT Truth Table

Simple flip

For NOT with input AA:


A     | !A
----- | -----
false | true
true  | false

This is the simplest truth table. NOT has no surprises: it inverts the input. You'll use NOT to reverse conditions, like checking if (!found) after a search loop.