first little proofs

This commit is contained in:
2026-07-30 18:02:13 +02:00
parent 00e0f60646
commit d95031e04c
3 changed files with 79 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
### Basic logic
| Name | Mathlib equivalent | Proposition |
|---------------|--------------------|-------------|
|`basicLogic.and_commutative` | `and_comm` | $$a\land b \iff b \land a$$ |
|`basicLogic.or_commutative` | `or_comm` | $$a\lor b \iff b \lor a$$ |
|`basicLogic.double_negation` | `not_not_intro`| $$a\to\neg\neg a$$ |
|`basicLogic.and_associative` | `and_assoc`| $$a\land (b\land c) \iff (a\land b) \land c$$|
|`basicLogic.contrapositive` | `contrapose` | $$(a \to b) \to (\neg b \to \neg a)$$|