Skip to content

Logical Connective

Definition

A logical connective is an operator that combines propositions to form new propositions.

Basic Connectives

ConnectiveSymbolMeaning
Negation\(\neg P\)NOT \(P\)
Conjunction\(P \land Q\)\(P\) AND \(Q\)
Disjunction\(P \lor Q\)\(P\) OR \(Q\)
Implication\(P \implies Q\)IF \(P\) THEN \(Q\)
Biconditional\(P \iff Q\)\(P\) IF AND ONLY IF \(Q\)

Truth Tables

Negation

\(P\)\(\neg P\)
TF
FT

Conjunction

\(P\)\(Q\)\(P \land Q\)
TTT
TFF
FTF
FFF

Disjunction

\(P\)\(Q\)\(P \lor Q\)
TTT
TFT
FTT
FFF

Implication

\(P\)\(Q\)\(P \implies Q\)
TTT
TFF
FTT
FFT

Note: \(P \implies Q\) is false only when \(P\) is true and \(Q\) is false.

Properties

De Morgan's Laws

\[\neg(P \land Q) \iff \neg P \lor \neg Q$$ $$\neg(P \lor Q) \iff \neg P \land \neg Q\]

Contrapositive

\[P \implies Q \iff \neg Q \implies \neg P\]