Apply propositional logic to solve real-world problems.
Notes:
A Proposition is a declarative sentence that is either true or false (lecture notes)
Use Connectives (Logical Operators)to create compound propositions.
Negation ¬ | ¬ p == "not p"
Conjunction ∧ | p ∧ q == "p and q"
Disjunction ∨ | p ∨ q == "p or q"
Or gets interesting, the "inclusive or" [P=T ∨ Q=T == T] is where at least one of the two is true and they are both true, but it doesn't have to be this way. "Exclusive or" (⊕, XOR) ... one or the other but not both... (soup or salad)