Mathematical Reasoning Formulas
All key formulas grouped by subtopic. Each one has a quick reminder and common mistakes to watch for.
Negation of a Statement
#1💡 Negation flips the truth value. If p is 'x > 5', then ~p is 'x is not greater than 5' (i.e., x <= 5).
Conjunction (AND)
#2💡 AND requires both parts to be true. Even one false component makes the entire conjunction false.
Disjunction (OR)
#3💡 OR is inclusive in logic. It is true when at least one component is true.
Conditional (If-Then)
#4💡 A conditional is false ONLY when p is true and q is false. 'If it rains, the ground is wet' is false only when it rains but the ground is dry.
Contrapositive
#5💡 The contrapositive always has the same truth value as the original conditional. Converse (q -> p) and inverse (~p -> ~q) do NOT.
Biconditional (If and Only If)
#6💡 Biconditional is true when both p and q have the same truth value (both true or both false).
De Morgan's Laws for Logic
#7💡 Negation of AND becomes OR (with negated parts). Negation of OR becomes AND (with negated parts). Swap the connective and negate each component.
Negation of Quantifiers
#8💡 Negation of 'for all' becomes 'there exists ... not'. Negation of 'there exists' becomes 'for all ... not'. Swap the quantifier and negate the predicate.
Principle of Mathematical Induction
#9💡 Two steps: (1) Base case: verify P(1). (2) Inductive step: assume P(k) and prove P(k+1). Both steps are mandatory.
Strong Induction
#10💡 In strong induction, assume P(m) is true for ALL m from 1 to k, then prove P(k+1). Useful when P(k+1) depends on multiple previous cases, not just P(k).