Boolean Operations
A table of inputs and result of boolean operations is called the Truth Table
AND
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
OR
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
NOT |
0 | 1 |
1 | 0 |
Boolean Expressions
Boolean operations can be combined.
Boolean Functions
Boolean functions have finate input, so a truth table can be listed.