Conditional Operator

From WikiEducator
Jump to: navigation, search

Previous lesson: Logical XOR

Your Next-to-Last Operator!

The conditional operator looks like this: [math]\to[/math]

It is a diadic operator.

Perhaps I should explain conditional operators through a story. Let's suppose that Joe Lion is given a wildebeest if he beats Handsome Dan XVII. Thus, [math]p[/math] becomes "Joe Lion beats Handsome Dan" and [math]q[/math] becomes "Joe Lion is given a wildebeest." The order of p and q are important, and so p and q are given special terms when the conditional operator is used. p is the antecedent. q is the consequent.

There are four possible outcomes in this story:

1. Joe Lion beats Handsome Dan, and is given a wildebeest. (p is true and q is true)

  • [math]p[/math] [math]\to[/math] [math]q[/math] is true.

2. Joe Lion beats Handsome Dan, but is not given a wildebeest. (p is true and q is false)

  • [math]p[/math] [math]\to[/math] [math]q[/math] is false. In other words, the condition (that Joe Lion is given a wildebeest if he beats Handsome Dan) is violated.

3. Joe Lion does not beat Handsome Dan, yet is given a wildebeest. (p is false and q is true)

  • [math]p[/math] [math]\to[/math] [math]q[/math] is true. The conditional statement (that Joe Lion is given a wildebeest if he beats Handsome Dan) has not been violated, because violation only occurs if the antecedent is true.

4. Joe Lion does not beat Handsome Dan, and is not given a wildebeest. (p is false and q is false)

  • [math]p[/math] [math]\to[/math] [math]q[/math] is true. The conditional statement (that Joe Lion is given a wildebeest if he beats Handsome Dan) has not been violated, because violation only occurs if the antecedent is true.

Truth Table for the Conditional

[math]p \,\![/math] [math]q \,\![/math] [math]p \to q[/math]
T T T
T F F
F T T
F F T

Next Lesson

The next lesson is called Biconditional Operator.