Skip to main content
Logo image

Section 6.5 Statements involving disjunction

First, let’s consider a conditional statement with a disjunction on the hypothesis side. To prove a statement of the form (P1∨P2)β‡’Q, we can use Fact 6.4.1 to decompose into two conditionals:
(P1∨P2)β†’Q⇔(P1β†’Q)∧(P2β†’Q).
Appealing to the properties of conjunction, as in our discussion of reduction to cases, we see that we can prove P1β‡’Q and P2β‡’Q by separate proofs.
What about a conditional with a disjunction on the conclusion side? To prove a statement of the form Pβ‡’(Q1∨Q2), we can again reduce to cases, but in a sort of tricky way. For any statement, there are only two possibilities β€” either the statement is true or it is false. (See Basic Tautology 3 in Example 1.4.1. Apply this fact to one of the statements we are trying to prove.

Note 6.5.3.

  • Of course, you can swap the roles of Q1 and Q2 above: you could also start by assuming that P is true and Q2 is false, then try to show that this leads to Q1 being true.
  • Another strategy is to attempt a proof by contradiction (discussed in Section 6.9 below). By DeMorgan, Β¬(Q1∨Q2)⇔¬Q1∧¬Q2, so for this strategy, you should start by assuming that P is true and both Q1 and Q2 are false. Then, try to arrive at a contradiction.

Worked Example 6.5.4.

Prove: Every odd number is either 1 more or 3 more than a multiple of 4.
Solution.
Let P(n) represent the predicate β€œn is odd”, let Q1(n) represent the predicate β€œn is 1 more than a multiple of 4”, and let Q2(n) represent the predicate β€œn is 3 more than a multiple of 4”, each with domain the integers.
Start by assuming that n is an odd number that is not 1 more than a multiple of 4. We must now try to show that n is 3 more than a multiple of 4. We know that n is odd, so there exists a number m such that n=2m+1. However, since n is not 1 more than a multiple of 4, 2m cannot be a multiple of 4, and so m cannot be a multiple of 2. Therefore, m is also odd, and so there exists another number β„“ such that m=2β„“+1. Then
n=2m+1=2(2β„“+1)+1=4β„“+3,
which says that n is 3 more than a multiple of 4, as desired.