Elementary Logic: Kinds of Reasoning, Logical Statements, and Proof Techniques

Kinds of Reasoning

  • Inductive Reasoning

    • Definition: Inductive reasoning is the process of reaching a general conclusion by examining specific examples, patterns, or observations. The conclusion reached through this method is referred to as a conjecture.

    • Nature of Conclusion: A conjecture may or may not be true; it is based on evidence seen so far. It moves from the specific to the general.

    • Example: Observing the sequence 2,4,6,8,...2, 4, 6, 8, \text{...} and concluding that the next term is 1010 because the previous terms followed the pattern of adding 22.

    • Counterexamples: To prove a conjecture is false, one only needs to find a single case where it does not hold, known as a counterexample.

  • Deductive Reasoning

    • Definition: Deductive reasoning is the process of reaching a specific, logical conclusion by applying general assumptions, procedures, principles, or rules. It moves from the general to the specific.

    • Nature of Conclusion: If the premises and the logic used are true and valid, the conclusion is guaranteed to be true.

    • Example: All mammals have lungs (general premise). A dolphin is a mammal (specific case). Therefore, a dolphin has lungs (deductive conclusion).

Conditional, Converse, Inverse, Contrapositive, and Biconditional Statements

  • Conditional Statements

    • Form: An "If-then" statement, symbolically represented as PQP \rightarrow Q.

    • Components:

      • Antecedent (Hypothesis): The part following "if" (represented by PP).

      • Consequent (Conclusion): The part following "then" (represented by QQ).

    • Truth Value: A conditional statement is only considered false when the antecedent (PP) is true and the consequent (QQ) is false.

  • Converse Statement

    • Form: Formed by switching the hypothesis and the conclusion of the original conditional statement.

    • Symbolic Form: QPQ \rightarrow P

  • Inverse Statement

    • Form: Formed by negating both the hypothesis and the conclusion of the original conditional statement.

    • Symbolic Form: ¬P¬Q\neg P \rightarrow \neg Q

  • Contrapositive Statement

    • Form: Formed by both switching and negating the hypothesis and the conclusion.

    • Symbolic Form: ¬Q¬P\neg Q \rightarrow \neg P

    • Logical Equivalence: The contrapositive is always logically equivalent to the original conditional statement. If PQP \rightarrow Q is true, then ¬Q¬P\neg Q \rightarrow \neg P is also true.

  • Biconditional Statements

    • Form: An "if and only if" statement, symbolically represented as PQP \rightleftharpoons Q or P iff QP \text{ iff } Q.

    • Definition: It represents the conjunction of a conditional and its converse: (PQ) and (QP)(P \rightarrow Q) \text{ and } (Q \rightarrow P).

    • Truth Value: A biconditional is true only when both PP and QQ have the same truth value (both true or both false).

Mathematical Induction and Indirect Proof

  • Mathematical Induction

    • Purpose: A method of mathematical proof typically used to establish that a given statement is true for all natural numbers (n=1,2,3,...n = 1, 2, 3, \text{...}).

    • The Principle of Mathematical Induction (PMI): Consists of two essential steps:

      1. Basis Step (Base Case): Prove that the statement P(n)P(n) is true for the first natural number, usually n=1n = 1. Showing P(1)P(1) is true.

      2. Inductive Step: Prove that if the statement is true for some arbitrary integer kk, then it must also be true for the next integer k+1k+1.

        • Inductive Hypothesis: Assume P(k)P(k) is true for some kk.

        • Goal: Show that P(k)P(k+1)P(k) \rightarrow P(k+1).

    • Analogy: Often compared to falling dominoes; if the first domino falls (Base Case), and every domino that falls causes the next one to fall (Inductive Step), then all dominoes will eventually fall.

  • Indirect Proof (Proof by Contradiction)

    • Logic: Based on the law of non-contradiction, which states that a proposition cannot be both true and false at the same time (¬(R and ¬R)\neg (R \text{ and } \neg R)).

    • Procedure:

      1. Assume the negation of the conclusion you are trying to prove. If you want to prove PP, assume ¬P\neg P (not PP).

      2. Use logical reasoning and rules of inference to show that this assumption leads to a contradiction (e.g., 1=01 = 0 or a statement that contradicts a known axiom/given information).

      3. Since the assumption (¬P\neg P) leads to an impossible result, the assumption must be false. Therefore, the original statement (PP) must be true.