Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
avipars authored Sep 5, 2024
1 parent fbf17de commit c10da01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions math/logic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ Here are some stuff worth knowing (on top of the basic gates/symbols)

- Called If then, implies, or conditional

* A ↔ B = A ⊙ B
* A ↔ B = A ⊙ B ≡ (A ⇒ B) ∧ (B ⇒ A)

- if and only if = xnor

- (A ⇒ B) ∧ (B ⇒ A)
* A ⊕ B ≡ (A ∧ ¬B) ∨ (¬A ∧ B)

### English to Logic

Expand Down Expand Up @@ -311,4 +311,4 @@ Edge = Arc

Python and programming aren't required for the course but its a good way to check your work!
and view my sample program for testing logic * [here](/math/logic/program.py)
using the SymPy library
using the SymPy library

0 comments on commit c10da01

Please sign in to comment.