kitControl-Not

  The Not out simply inverts the Boolean logic value currently at the (single) object input. It is available in the Logic folder of the kitControl palette.

You often link Not objects with other logic objects to make different logic gates. As simple examples, Table 3 shows NAND logic, Table 4 shows NOR logic, and Table 5 shows EQUIV gate logic.

See also Alphabetical list of kitControl components

Table 3. NAND logic using And and Not

In A In B Out
false false true
false true true
true false true
true true false

Table 4. NOR logic using Or and Not

In A In B Out
false false true
false true false
true false false
true true false

Table 5. EQUIV logic using Xor and Not

In A In B Out
false false true
false true false
true false false
true true true