Chapter 1 Notations
Last updated on March 4, 2026 pm
Logic Operations
There are 4 operators, they are , , , , the outcome of the operation is the Truth Table.
For proposition
| A | 0 | 1 |
|---|---|---|
| A | 1 | 0 |
For compound proposition
| 0 | 1 | |
|---|---|---|
| 0 | 0 | 0 |
| 1 | 0 | 1 |
For compound proposition
| 0 | 1 | |
|---|---|---|
| 0 | 0 | 1 |
| 1 | 1 | 1 |
For compound proposition
| 0 | 1 | |
|---|---|---|
| 0 | 1 | 1 |
| 1 | 0 | 1 |
It might be confused for , when , no matter what the value of B is, the outcome of the operation is 1. This is because when precondition A is false, B will never violate A.
: If it rains today (A), I will bring an umbrella (B)
When , which means it doesn’t rain today, then if I take the umbrella (B=1), I don’t violate the promise, because we cannot verify whether I will take it when it rains. Also, if I didn’t take the umbrella (B=0), I still don’t violate.
When , we say, B is a necessary condition of A (because when B=0 then A=0, we cannot go without B), A is an adequate condition of B (because A alone will decide B), and means A is both necessary and adequate for B and vice versa.
Exercises
- pass
- Solve
(1)
We can write the truth table
For
| 0 | 1 | |
|---|---|---|
| 0 | 1 | 0 |
| 1 | 0 | 0 |
For
| 0 | 1 | |
|---|---|---|
| 0 | 1 | 0 |
| 1 | 0 | 0 |
Q.E.D.