A truth table lists all possible **truth values** of a proposition, containing independent **statement variables**.
!!! example
| p | q | p and q |
| --- | --- | --- |
| T | T | T |
| T | F | F |
| F | T | F |
| F | F | F |
## Logical operators
!!! definition
- A **compound statement** is composed of **component statements** joined by logical operators AND and OR.
The **negation** operator is equivalent to logical **NOT**.
$$\neg p$$
The **conjunction** operaetor is equivalent to logical **AND**.
$$p\wedge q$$
The **disjunction** operator is equivalent to logical **OR**.
$$p\vee q$$
The **implication** sign requires that if $p$ is true, $q$ is true, such that *$p$ implies $q$*. The first symbol is the **hypothesis** and the second symbol is the **conclusion**.