2022-12-17 15:30:04 +00:00
|
|
|
---
|
2023-02-10 18:22:04 +00:00
|
|
|
tags: [propositional-logic, nand-to-tetris]
|
2022-12-17 15:30:04 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Boolean functions
|
|
|
|
|
|
|
|
An example of a Boolean function:
|
|
|
|
|
|
|
|
$$
|
|
|
|
f(x,y,z) = (x \land y) \lor (\lnot(x) \land z )
|
|
|
|
$$
|
|
|
|
|
|
|
|
Here is a work through where $f(1, 0, 1)$:
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
- The first disjunction : $\lnot(x) \land z$ is false because $x$ is 1 and $z$
|
|
|
|
is 0
|
2022-12-18 13:00:05 +00:00
|
|
|
- The second disjunction: $x \land y$ is false because $x$ is 1 and $y$ is 1
|
2024-02-02 15:58:13 +00:00
|
|
|
- The overall function returns false because the main connective is disjunction
|
|
|
|
and both of its disjuncts are false
|
2022-12-17 15:30:04 +00:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
We can compute all possible outputs of the function by constructing a
|
2024-02-17 11:57:44 +00:00
|
|
|
[trkjuth table](Truth-tables.md) with each possible
|
2024-02-02 15:58:13 +00:00
|
|
|
variable as the truth conditions and the output of the function as the truth
|
|
|
|
value:
|
2022-12-17 16:30:05 +00:00
|
|
|
|
|
|
|
| $x$ | $y$ | $z$ | $f(x,y,z) = (x \land y) \lor (\lnot(x) \land z )$ |
|
|
|
|
| --- | --- | --- | ------------------------------------------------- |
|
|
|
|
| 0 | 0 | 0 | 0 |
|
|
|
|
| 0 | 0 | 1 | 1 |
|
|
|
|
| 0 | 1 | 0 | 0 |
|
|
|
|
| 0 | 1 | 1 | 1 |
|
|
|
|
| 1 | 0 | 0 | 0 |
|
|
|
|
| 1 | 0 | 1 | 0 |
|
|
|
|
| 1 | 1 | 0 | 1 |
|
|
|
|
| 1 | 1 | 1 | 1 |
|