Let p and q be propositions.
The conjunction of p and q, denoted by p∧q, is the proposition that "$p$ and $q$".
v(A∧B)={1,0,if v(A)=1 and v(B)=1if v(A)=0 or v(B)=0
p
q
p∧q
T
T
T
T
F
F
F
T
F
F
F
F
For example:
Let p be that “Today is Tuesday”.
Let q be that “It is raining today”.
p∧q is that “Today is Tuesday and it is raining today”.
But in English, $p \wedge q$ and $q \wedge p$ do not always mean the same thing.- "Bob became sick and he visited the doctor."- "Bob visited the doctor and he became sick."This can be handled by dynamic conjunctions.
Let p and q be propositions.
The conditional statement p→q, is the proposition that "if $p$ then $q$". This is also called an implication.
v(A→B)={1,0,if v(A)=0 or v(B)=0if v(A)=1 and v(B)=0
p
q
p→q
T
T
T
T
F
F
F
T
T
F
F
T
For example:
If it is sunny today, we will go to the beach.
If I am elected, I’ll lower taxes.
You may encounter some weird statements which are still true.- "If the Moon is made of green cheese then $2\times2=5$." $(F \rightarrow F)$.- "If the Moon is made of green cheese then $2\times2=4$." $(F \rightarrow T)$.- "If London is in the UK then $2\times2=4$." $(T \rightarrow T)$. This is also known as irrelevant logic.
Let p and q be propositions.
The biconditional statement p⟺q, is the proposition that "$p$ if and only if $q$". This is also called an bi-implication or an equivalence.
v(A⟺B)={1,0,if v(A)=v(B)if v(A)=v(B)
p
q
p⟺q
T
T
T
T
F
F
F
T
F
F
F
T
There are some implicit uses of biconditional statements in English, for example:- If you finish your meal then you can have desert, $p \rightarrow q$.But we actually mean $p \iff q$:- You can have desert if and only if you finish your meal.