feat: added argument

This commit is contained in:
Nick 2024-09-22 00:18:44 -05:00
parent 6afc244c09
commit 0fe545c254
24 changed files with 153 additions and 50 deletions

View file

@ -2,9 +2,9 @@
| <font color="CC6600">**Symbol**</font> | <font color="CC6600">**Operation**</font> | <font color="CC6600">**Example**</font> | <font color="CC6600">**Description**</font> |
|:--------------------------------------:|:-----------------------------------------:|:---------------------------------------:|:-------------------------------------------------------------------------------------------------------- |
| → | Implies | P→Q | A proposition that is only false if either Q is false or both P and Q are false. |
| → | Implies | P→Q | A proposition that is only false if Q is false. |
| ↔ | Biconditional | P↔Q | A proposition that denotes logic equivalence, and is true when both predicates are either true or false. |
| ¬ | Negation | ¬P | A proposition that is true if and only if P is false. |
| ¬ | Negation | ¬P | A proposition that is true if and only if P is false. |
| ∧ | Conjunction | P∧Q | A proposition that is true if and only if both P and Q are true. |
| | Disjunction | PQ | A proposition that is false if and only if both P and Q are false. |
| ⊻ | Exclusive Or | P⊻Q | A proposition that is true if and only if either only P or only Q are true. |