Truth Tables

Identity
A A
0 0
1 1


Negation
¬A A
0 1
1 0


AND - conjunction
A B A ^ B
0 0 0
0 1 0
1 0 0
1 1 1


NAND
A B A ↑ B
0 0 1
0 1 1
1 0 1
1 1 0


OR - disjunction
A B A V B
0 0 0
0 1 1
1 0 1
1 1 1


NOR
A B A ↓ B
0 0 1
0 1 0
1 0 0
1 1 0


EQUALS
A B A == B
0 0 1
0 1 0
1 0 0
1 1 1


Implication - conditional if - then
A B A → B
0 0 1
0 1 1
1 0 0
1 1 1


N Implication - conditional then - if
A B A → B
0 0 1
0 1 0
1 0 1
1 1 1


XOR - exclusive or
A B A ⊕ B
0 0 0
0 1 1
1 0 1
1 1 0


NXOR - exclusive nor - biconditional - if and only if
A B A B
0 0 1
0 1 0
1 0 0
1 1 1

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...