๐Ÿ“ Mathematics โ€” Class XI ยท Logic

Mathematical Reasoning

The foundation of logical thinking โ€” statements, negations, compound statements, and proofs

๐Ÿ“– Chapter 15 โฑ ~40 min read ๐Ÿท Logic

In this chapter

  1. Statements
  2. Negation
  3. Compound Statements
  4. Implications
  5. Validating Statements
  6. Summary

15.1 Statements

"Mathematics is the science of drawing necessary conclusions." โ€” Benjamin Peirce

Mathematical reasoning is about making logical arguments and proving things rigorously. It starts with statements โ€” sentences that are either true or false, but not both.

What is a Statement?

๐Ÿ“– Definition

A statement (or proposition) is a sentence that is either true or false, but not both.

Examples of statements:
โ€ข "2 + 2 = 4" โ†’ TRUE
โ€ข "The Earth is flat" โ†’ FALSE
โ€ข "7 is a prime number" โ†’ TRUE

NOT statements:
โ€ข "x + 1 = 5" โ†’ depends on x (open sentence)
โ€ข "Is it raining?" โ†’ question, not true/false
โ€ข "Close the door!" โ†’ command, not true/false

๐Ÿ’ก Truth Value

Every statement has a truth value โ€” either TRUE (T) or FALSE (F). We cannot have both or neither.

15.2 Negation

The negation of a statement is its opposite. If the original is true, the negation is false, and vice versa.

๐Ÿ“ How to Negate

Statement p: "It is raining"
Negation ~p: "It is NOT raining"

Statement p: "2 + 3 = 5"
Negation ~p: "2 + 3 โ‰  5"

Rule: If p is TRUE, then ~p is FALSE. If p is FALSE, then ~p is TRUE.

โš ๏ธ Common Negation Patterns

โ€ข "All are" โ†’ "Some are not"
โ€ข "None are" โ†’ "Some are"
โ€ข "Some are" โ†’ "None are"
โ€ข "Always" โ†’ "Sometimes not"
โ€ข "Sometimes" โ†’ "Never"

15.3 Compound Statements

We can combine simple statements using AND (โˆง) and OR (โˆจ) to create compound statements.

AND (โˆง)

๐Ÿ“ Conjunction

p โˆง q is TRUE only when BOTH p and q are TRUE.

Example: "It is raining AND it is cold"
True only if both conditions are met.

OR (โˆจ)

๐Ÿ“ Disjunction

p โˆจ q is TRUE when AT LEAST ONE of p or q is TRUE.

Example: "You can have cake OR ice cream"
True if you get cake, ice cream, or both.

Truth tables for AND, OR, and negation
Figure 15.1 โ€” Truth tables showing how AND, OR, and negation work

15.4 Implications

An implication is an "if-then" statement. It's one of the most important structures in mathematics.

๐Ÿ“ If p, then q

p โ†’ q means "if p is true, then q must be true"

Example: "If it rains, then the ground gets wet"
โ€ข p: It rains
โ€ข q: Ground gets wet

p โ†’ q is FALSE only when p is TRUE and q is FALSE.

Contrapositive

๐Ÿ“ Contrapositive

The contrapositive of p โ†’ q is: ~q โ†’ ~p

Example:
โ€ข Original: "If it rains, then ground gets wet"
โ€ข Contrapositive: "If ground doesn't get wet, then it didn't rain"

A statement and its contrapositive always have the same truth value!

Converse

๐Ÿ“ Converse

The converse of p โ†’ q is: q โ†’ p

Example:
โ€ข Original: "If it rains, then ground gets wet"
โ€ข Converse: "If ground gets wet, then it rains"

Warning: A statement and its converse do NOT always have the same truth value! (Ground could get wet from a sprinkler)

Biconditional (If and Only If)

๐Ÿ“ If and Only If (iff)

p โ†” q means both p โ†’ q AND q โ†’ p

Example: "A number is even if and only if it's divisible by 2"
This means: If even โ†’ divisible by 2, AND if divisible by 2 โ†’ even

15.5 Validating Statements

How do we prove a statement is true? There are several methods:

Direct Method

๐Ÿ“ Direct Proof

To prove p โ†’ q:
Assume p is true, then show q must be true.

Example: Prove "If n is even, then nยฒ is even"
Assume n is even โ†’ n = 2k for some integer k
Then nยฒ = (2k)ยฒ = 4kยฒ = 2(2kยฒ) โ†’ even โœ“

Contrapositive Method

๐Ÿ“ Proof by Contrapositive

To prove p โ†’ q:
Instead prove ~q โ†’ ~p (the contrapositive)

Example: Prove "If nยฒ is even, then n is even"
Contrapositive: "If n is odd, then nยฒ is odd"
Assume n is odd โ†’ n = 2k+1
Then nยฒ = (2k+1)ยฒ = 4kยฒ + 4k + 1 = 2(2kยฒ+2k) + 1 โ†’ odd โœ“

Contradiction Method

๐Ÿ“ Proof by Contradiction

Assume the statement is false, then show this leads to a contradiction.

Example: Prove โˆš2 is irrational
Assume โˆš2 is rational = p/q (in lowest terms)
Then 2 = pยฒ/qยฒ โ†’ pยฒ = 2qยฒ โ†’ p is even โ†’ p = 2k
Then 4kยฒ = 2qยฒ โ†’ qยฒ = 2kยฒ โ†’ q is even
But if both p and q are even, the fraction isn't in lowest terms โ€” contradiction!

Three methods of proof
Figure 15.2 โ€” Three methods of mathematical proof

15.6 Summary

โœ… Key Takeaways

โ€ข Statement: A sentence that is either TRUE or FALSE, not both

โ€ข Negation (~p): Opposite truth value of p

โ€ข AND (p โˆง q): True only when both are true

โ€ข OR (p โˆจ q): True when at least one is true

โ€ข Implication (p โ†’ q): False only when p is true and q is false

โ€ข Contrapositive (~q โ†’ ~p): Same truth value as original

โ€ข Converse (q โ†’ p): May have different truth value

โ€ข Proof methods: Direct, Contrapositive, Contradiction

Ch 14 โ€” Probability Home