1. Conditional Statements
Sign In
Identify what comes after if
and then
in the statement. Which is the hypothesis, and which is the conclusion?
We are given the following conditional statement.
|
If a polygon is a pentagon, then it has five sides. |
if-then. p→ q ⇒ If p, then q Therefore, whatever comes after
ifin our statement is the hypothesis, and what comes after
thenis the conclusion.
| Related Conditionals | ||
|---|---|---|
| Name | Words | Symbol |
| Converse | If p, then q. | p → q |
| Inverse | If q, then p. | ~ p → ~ q |
| Contrapositive | If not q, then not p. | ~ q → ~ p |
A conditional statement can be true unless a true hypothesis leads to a false conclusion. To see all the possibles cases, we can use a true table.
| Conditional Statement | ||
|---|---|---|
| p | q | p ⇒ q |
| T | T | T |
| T | F | F |
| F | T | T |
| F | F | T |
Notice from the table that a conditional statement is false only when the hypothesis is true and the conclusion false. In any other case, a conditional statement is true.