vault backup: 2026-02-27 14:33:50

This commit is contained in:
Jan Meyer
2026-02-27 14:33:50 +01:00
parent 6b75052bf2
commit 6b78604464
5 changed files with 255 additions and 9 deletions

View File

@@ -1,4 +1,15 @@
## Operators
| Operation | Explanation | Notation |
| --------- | ----------- | -------- |
| **and** | | |
| Operation | Explanation | Notation |
| ----------------- | ------------------------------------ | --------- |
| **and**<br> | Both $p$ and $q$ must be true | $p and q$ |
| **or** | Either $p$ or $q$ (or both) are true | $p or q$ |
| **not** | Negates the statement | $not p$ |
| **Implication** | If $p$ then $q$ | $=>$ |
| **Biconditional** | $p$ if and _only_ if $q$ | $<=>$ |
| **xor** | Either $p$ or $q$ but not both | $xor$ |
### Implied Operators
| Operation | Explanion | Notation |
| --------- | --------------------------------------- | -------------- |
| **nand** | $p$ and $q$ are not both true | $not(p and q)$ |
| **nor** | neither of $p$ and $q$ are true | $not(p or q)$ |
| **xnor** | $p$ and $q$ are both false or both true | |