Review the key concepts, formulae, and examples before starting your quiz.
🔑Concepts
A Mathematical Statement is a declarative sentence which is either definitely true or definitely false, but not both. For example, 'The square of 4 is 16' is a statement, while 'Give me that book' is a command and not a mathematical statement. Visually, imagine a binary switch that can only be in the 'ON' (True) or 'OFF' (False) position, never in between.
Negation of a statement is denoted by . If is true, is false; if is false, is true. This can be visualized as a simple two-column Truth Table where the input column lists values and the output column flips them to .
Compound Statements are formed by combining two or more simple statements using logical connectives like 'and' (), 'or' (), 'if...then' (), and 'if and only if' (). Visually, this creates a branching structure or a Truth Table with rows, where is the number of simple statements.
Conjunction () is true only when both component statements and are true. In a Venn Diagram representation, this corresponds to the intersection of two sets, where the shaded area represents only the region shared by both and .
Disjunction () is false only when both component statements and are false. In all other cases, it is true. Visually, in a Venn Diagram, this is the union of two sets, covering all regions belonging to , , or both.
A Conditional Statement (read as 'If , then ') is false only in one specific case: when the antecedent is true and the consequent is false (). Visually, think of a contract: the contract is broken (False) only if the first party fulfills their duty ( is ) but the second party does not deliver ( is ).
Biconditional Statement (read as ' if and only if ') is true when both and have the same truth value (both True or both False). In a Truth Table, the resulting column shows 'True' for the and rows and 'False' otherwise.
Tautology and Contradiction: A compound statement that is always true regardless of the truth values of its components is a Tautology. Conversely, a statement that is always false is a Contradiction. Visually, a Tautology is a Truth Table column filled entirely with 'T', while a Contradiction is a column filled entirely with 'F'.
📐Formulae
Negation of Conjunction (De Morgan's Law):
Negation of Disjunction (De Morgan's Law):
Conditional as Disjunction:
Negation of Conditional:
Contrapositive: The contrapositive of is (Logically Equivalent)
Converse: The converse of is
Inverse: The inverse of is
Biconditional Identity:
💡Examples
Problem 1:
Construct a truth table for the statement and determine if it is a tautology.
Solution:
- List all combinations of and : \n Row 1: \n Row 2: \n Row 3: \n Row 4: \n 2. Evaluate : \n Row 1: \n Row 2: \n Row 3: \n Row 4: \n 3. Evaluate : \n Row 1: \n Row 2: \n Row 3: \n Row 4:
Explanation:
Since the final column of the truth table consists only of 'T' (True) values for all possible combinations of and , the statement is a Tautology.
Problem 2:
Write the negation of the statement: 'If it rains, then the match will be cancelled.'
Solution:
- Identify component statements: \n : It rains. \n : The match will be cancelled. \n 2. Represent the original statement: . \n 3. Use the negation formula: . \n 4. Translate back to English: 'It rains and the match will not be cancelled.'
Explanation:
To negate a conditional statement 'If p then q', we state that 'p' occurs but 'q' does not. This follows the logical equivalence .