|
|
Basic Logic - The Implication OperatorIn binary logic, we know about operators such as AND, OR, NOT. Another operator that is important in logic and in test design is the implies operator. A -> B (A implies B) Another way of stating the implies operator is with if…then: IF A THEN B The truth table is:
* Note that if A = 0 and A causes B, then it is valid if A=0 and B=0, therefore A -> B = 1. **Note that even if A=0, the result is True (1). This is because there may be other causes that result in B becoming True. Therefore, it is valid for A to be False and A -> B to be True. For example:IF (A) I turn the light on THEN (B) I’ll be able to see. The only contradiction is for A to be True and B to be False; therefore it is the only condition where A -> B is False. Another way of stating IF A THEN B is to say that there is a relationship between A and B. A may cause B, or it may simply occur in conjunction with B. The nature of the relationship need not be cause-effect (or as they say in statistics - correlation is not causation). The truth table is:
If it is true that the relationship A -> B exists, then only two valid conclusions can be drawn from data:
Formal Logical Fallacies:
|