Conditional and Biconditional Statements
Conditional and Biconditional Statements
Conditional and Biconditional Statements
Biconditional statements
Conditional Statements
Conditional statements can be written in if p, then q form or in if p, q
form.
For instance, all of the following are conditional statements.
a. If we order pizza, then we can have it delivered.
b. If you go to the movie, you will not be able to meet us for dinner.
c. If n is a prime number greater than 2, then n is an odd number.
p q [p ^ (q ˅ ~ p )] → ~p
T T T T T T F F F
T F T F F F F T F
F T F F T T T T T
F F F F F T T T T
1 6 2 5 3 7 4
Equivalent form of Conditional Statement
p→q≡~pvq
Write a Conditional in its Equivalent Disjunctive Form
The Negation of p → q
~ (p → q) ≡ p ^ ~ q
Write the Negation of each conditional statement.
a. If they pay me the money, I will sign the contract.
b. If the lines are parallel, then they do not intersect.
Solution:
a. They paid me the money and I did not sign the contract.
b. The lines are parallel and they intersect.
Biconditional Statement
The statement ( p → q ) ^ ( q → p ) is called a Biconditional and is
denoted by p ↔ q, which is read as “ p if and only if q.”
p q p↔q
T T T
T F F
F T F
F F T
Determine the truth value of a Biconditional
a. x + 4 = 7 if and only if x = 3.
b. x² = 36 if and only if x = 6.
Solution:
a. True
b. False