MTH 101 Elementary Mathematics I: Algebra and Trigonometry
Course focus: This study material presents the core topics in elementary algebra and introductory mathematical reasoning for MTH 111. It is organized for revision, class study, and examination preparation.
Study Sections
- Elementary Set Theory
- Operations on Sets
- Venn Diagrams, Ordered Pairs, and Cartesian Products
- The Real Number System
- Sequences and Progressions
- Series
- Mathematical Induction
- Theory of Quadratic Equations
- Factorials, Combinations, and the Binomial Theorem
- Exam High-Yield Formula Sheet
- Practice Questions for Revision
- References
1. Elementary Set Theory
1.1 Meaning of a set
A set is a well-defined collection of distinct objects. The objects in a set are called elements or members.
Examples:
- A = {2, 4, 6, 8} is a set of four even numbers.
- B = {dog, book, 7, Mary} is also a set because the elements are clearly listed.
- C = {8, a, 8} is the same as {8, a} because repeated elements are counted only once.
Two basic rules govern ordinary sets:
- Repetition does not change a set.
- Order does not change a set.
Therefore, {1, 2, 3} = {3, 1, 2}.
1.2 Set notation
Common notation:
- Use capital letters such as A, B, C for sets.
- Use small letters such as x, y, z for elements.
- Write x ∈ A to mean x is an element of A.
- Write x ∉ A to mean x is not an element of A.
- Write ∅ for the empty set, the set containing no element.
A set may be described by listing its elements or by giving a defining property.
Listing method:
A = {1, 3, 5, 7}
Set-builder method:
A = {x : x is an odd natural number less than 8}
Read this as: A is the set of all x such that x is an odd natural number less than 8.
1.3 Common number sets
The most common number sets in this course are:
| Symbol | Meaning | Example elements |
| N | Natural numbers | 1, 2, 3, 4, ... |
| W | Whole numbers | 0, 1, 2, 3, ... |
| Z | Integers | ..., -3, -2, -1, 0, 1, 2, 3, ... |
| Q | Rational numbers | 1/2, -4, 0.75, 0.333... |
| R | Real numbers | All rational and irrational numbers |
Important convention: Some textbooks include 0 in N, while others do not. In this document, N = {1, 2, 3, ...}. If 0 is included, use W for whole numbers.
1.4 Equality, finite sets, infinite sets, and singleton sets
Two sets are equal if they contain exactly the same elements. The order of writing does not matter.
Example:
A = {1, 2, 3, 4} and B = {4, 3, 2, 1}. Therefore, A = B.
A finite set has a fixed number of distinct elements. If A is finite, n(A) means the number of elements in A.
Examples:
- A = {2, 4, 6}; n(A) = 3.
- B = {7, 7, 17}; n(B) = 2 because 7 is counted once.
- Z is infinite because the integers continue without end.
A singleton set is a set containing exactly one element. For example, {a} is a singleton.
1.5 Subsets and proper subsets
A set A is a subset of a set B if every element of A is also an element of B. We write this in words as A is a subset of B.
Example:
A = {1, 3} and B = {1, 2, 3, 4}. Since every element of A is in B, A is a subset of B.
Every set is a subset of itself, and the empty set is a subset of every set.
A proper subset of B is a subset of B that is not equal to B.
Example:
The proper subsets of {3, 4} are ∅, {3}, and {4}.
Exam warning: {} and {{}} are not the same. The first is the empty set. The second is a set with one element, and that element is the empty set.
1.6 Power set
The power set of A is the set of all subsets of A.
Example:
If A = {a, b}, then the power set of A is:
P(A) = {∅, {a}, {b}, {a, b}}
If a finite set has n elements, then the number of subsets is:
Number of subsets = 2n
Example:
If A = {1, 2, 3}, then n = 3, so A has 23 = 8 subsets.
Key takeaways
- A set is a collection of distinct objects.
- Order and repetition do not matter in ordinary sets.
- The empty set is a subset of every set.
- A power set contains all subsets of a set.
- A set with n elements has 2n subsets.
2. Operations on Sets
2.1 Universal set
A universal set is the larger set under discussion. Complements are always taken relative to a chosen universal set.
Example:
If the universal set is U = {1, 2, 3, 4, 5, 6} and A = {2, 4, 6}, then the complement of A is Ac = {1, 3, 5}.
2.2 Union
The ∪ of A and B is the set of all elements that belong to A, to B, or to both.
Notation in this document:
A ∪ B = {x : x ∈ A or x ∈ B}
Example:
If A = {a, b, c, d} and B = {a, c, e, f}, then:
A ∪ B = {a, b, c, d, e, f}
Repeated elements are written once.
2.3 Intersection
The intersection of A and B is the set of elements common to both A and B.
A ∩ B = {x : x ∈ A and x ∈ B}
Example:
If A = {1, 2, 3, 4} and B = {1, 4, 7, 8}, then:
A ∩ B = {1, 4}
If A ∩ B = ∅, then A and B are disjoint sets.
2.4 Difference of sets
The difference A - B is the set of elements that are in A but ∉ B.
A - B = {x : x ∈ A and x ∉ B}
Example:
If A = {1, 2, 3, 4} and B = {3, 4, 5, 6}, then:
A - B = {1, 2}
In general, A - B is not equal to B - A.
2.5 Complement
The complement of A, written Ac, is the set of all elements in the universal set that are ∉ A.
Ac = U - A
Important laws:
Example:
If U = {a, b, c, d} and A = {a, d}, then Ac = {b, c}.
2.6 Symmetric difference
The symmetric difference of A and B is the set of elements that belong to exactly one of the two sets.
A △ B = (A - B) ∪ (B - A)
Example:
If A = {1, 2, 3, 4} and B = {3, 4, 5, 6}, then:
A - B = {1, 2}
B - A = {5, 6}
A △ B = {1, 2, 5, 6}
2.7 Laws of set theory
| Law | Statement |
| Commutative law | A ∪ B = B ∪ A; A ∩ B = B ∩ A |
| Associative law | (A ∪ B) ∪ C = A ∪ (B ∪ C); same for intersection |
| Idempotent law | A ∪ A = A; A ∩ A = A |
| Distributive law | A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C) |
| Distributive law | A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C) |
| Identity law | A ∪ ∅ = A; A ∩ U = A |
| Domination law | A ∪ U = U; A ∩ ∅ = ∅ |
| De Morgan law | (A ∪ B)c = Ac ∩ Bc |
| De Morgan law | (A ∩ B)c = Ac ∪ Bc |
| Double complement | (Ac)c = A |
2.8 Counting formula for two sets
For finite sets:
n(A ∪ B) = n(A) + n(B) - n(A ∩ B)
Reason: Elements in A ∩ B are counted twice when n(A) and n(B) are added, so one copy must be subtracted.
Example:
In a class of 40 students, 20 take Chemistry, 25 take French, and 8 take both. Then:
n(Chemistry ∪ French) = 20 + 25 - 8 = 37
Students taking neither = 40 - 37 = 3.
2.9 Counting formula for three sets
For finite sets A, B, and C:
n(A ∪ B ∪ C) = n(A) + n(B) + n(C) - n(A ∩ B) - n(A ∩ C) - n(B ∩ C) + n(A ∩ B ∩ C)
The final addition is necessary because the elements common to all three sets are subtracted too many times.
Key takeaways
- Union means either or both.
- Intersection means common elements only.
- Difference means elements in the first set but not the second.
- Complement depends on the universal set.
- De Morgan's laws are high-yield exam laws.
- In counting problems, always subtract overlaps correctly.
3. Venn Diagrams, Ordered Pairs, and Cartesian Products
3.1 Venn diagrams
A Venn diagram is a visual representation of sets and their relationships. The rectangle usually represents the universal set, while circles represent subsets.
Use Venn diagrams when a problem involves:
- Two or three groups.
- Overlapping membership.
- Students taking subjects.
- Items with multiple defects.
- Survey results.
Exam method for two-set problems:
- Put the intersection in the overlap first.
- Subtract the overlap from each individual set.
- Add all occupied regions to get the ∪.
- Subtract the ∪ from the universal total to get neither.
Example:
A survey has 400 students. 100 are smokers, 150 chew gum, and 75 do both.
n(S ∪ G) = 100 + 150 - 75 = 175
Neither = 400 - 175 = 225.
3.2 Ordered pairs
An ordered pair is a pair of elements written in a fixed order, such as (a, b). The first entry is the first component, and the second entry is the second component.
In general:
(a, b) is not equal to (b, a), unless a = b.
Equality of ordered pairs:
(a, b) = (c, d) if and only if a = c and b = d.
Example:
If (x - 3, y + 2) = (4, 5), then:
x - 3 = 4, so x = 7.
y + 2 = 5, so y = 3.
3.3 Cartesian product
The Cartesian product A × B is the set of all ordered pairs (a, b), where a is in A and b is in B.
A × B = {(a, b) : a ∈ A and b ∈ B}
Example:
If A = {1, 3} and B = {a, b, c}, then:
A × B = {(1, a), (1, b), (1, c), (3, a), (3, b), (3, c)}
B × A = {(a, 1), (a, 3), (b, 1), (b, 3), (c, 1), (c, 3)}
Usually, A × B is not equal to B × A.
3.4 Number of elements in a Cartesian product
If A and B are finite sets, then:
n(A × B) = n(A) × n(B)
Example:
If n(A) = 2 and n(B) = 3, then n(A × B) = 6.
Key takeaways
- Ordered pairs depend on order.
- Cartesian product means all possible ordered pairings.
- A × B and B × A are generally different.
- If A has m elements and B has n elements, then A × B has mn elements.
4. The Real Number System
4.1 Meaning of real numbers
A real number is any number that can be located on the number line. Real numbers include positive numbers, negative numbers, zero, fractions, terminating decimals, repeating decimals, and irrational numbers.
The real number system is organized as follows:
N is contained in Z, Z is contained in Q, and Q is contained in R.
Irrational numbers are also contained in R, but they are not contained in Q.
4.2 Natural numbers and whole numbers
Natural numbers are counting numbers:
N = {1, 2, 3, 4, ...}
Whole numbers include zero:
W = {0, 1, 2, 3, 4, ...}
4.3 Integers
Integers are positive whole numbers, negative whole numbers, and zero:
Z = {..., -3, -2, -1, 0, 1, 2, 3, ...}
Integers do not have fractional or decimal parts.
Examples of integers: -5, 0, 12.
Non-examples: 2.7, 1/3, √(5).
4.4 Rational numbers
A rational number is any number that can be expressed as a/b, where a and b are integers and b ≠ 0.
Examples:
- 3 = 3/1.
- -5/7 is rational.
- 0.75 = 3/4.
- 0.333... = 1/3.
All integers are rational numbers because every integer can be written over 1.
4.5 Why repeating decimals are rational
Let x = 0.111...
Multiply by 10:
10x = 1.111...
Subtract:
10x - x = 1.111... - 0.111...
9x = 1
x = 1/9
Therefore, a repeating decimal can often be converted into a fraction and is rational.
4.6 Irrational numbers
An irrational number cannot be written as a/b where a and b are integers and b ≠ 0. Irrational decimals neither terminate nor repeat.
Examples:
Important note: A fraction with denominator zero is not an irrational number; it is undefined.
4.7 Properties of real numbers
For real numbers a, b, and c:
| Property | Rule |
| Commutative addition | a + b = b + a |
| Commutative multiplication | ab = ba |
| Associative addition | (a + b) + c = a + (b + c) |
| Associative multiplication | (ab)c = a(bc) |
| Additive identity | a + 0 = a |
| Multiplicative identity | a × 1 = a |
| Additive inverse | a + (-a) = 0 |
| Multiplicative inverse | a × (1/a) = 1, where a ≠ 0 |
| Distributive law | a(b + c) = ab + ac |
| Zero multiplication | a × 0 = 0 |
4.8 Absolute value
The absolute value of a real number is its distance from zero on the number line.
|a| = a if a ≥ 0
|a| = -a if a < 0
Examples:
|4| = 4
|-4| = 4
|7 - 14| = |-7| = 7
Distance interpretation:
The distance between x and 3 is written |x - 3|.
If the distance between x and 3 is at most 2, write:
|x - 3| ≤ 2
Key takeaways
- Real numbers are all numbers on the number line.
- Rational numbers are fractions or terminating/repeating decimals.
- Irrational numbers are non-terminating and non-repeating.
- Absolute value represents distance, so it is never negative.
- Know the real number properties by name and by formula.
5. Sequences and Progressions
5.1 Sequence
A sequence is an ordered list of numbers formed according to a rule. Each number in the list is called a term.
Notation:
u1 = first term
u2 = second term
un = nth term or general term
A finite sequence has a last term. An infinite sequence continues without end.
Example:
If un = n + 1, then:
u1 = 2, u2 = 3, u3 = 4, u4 = 5.
Therefore, the first four terms are 2, 3, 4, 5.
5.2 Finding the general term
To find a general term, observe the pattern in the sequence.
Example 1:
Sequence: -1, 1, -1, 1, ...
The sign alternates, so:
un = (-1)n
Example 2:
Sequence: 1, 1/4, 1/9, 1/16, ...
The denominators are square numbers:
un = 1/n2
5.3 Arithmetic progression
An arithmetic progression, or A.P., is a sequence in which the difference between consecutive terms is constant. This constant is called the common difference.
If the first term is a and the common difference is d, then:
A.P. = a, a + d, a + 2d, a + 3d, ...
The nth term is:
un = a + (n - 1)d
Example:
Find the 5th term of 5, 9, 13, ...
Here, a = 5 and d = 4.
u5 = 5 + (5 - 1)4 = 5 + 16 = 21.
5.4 Finding an A.P. from two terms
If the 7th term of an A.P. is 27 and the 12th term is 47, find the sequence.
Use un = a + (n - 1)d.
u7 = a + 6d = 27
u12 = a + 11d = 47
Subtract the first equation from the second:
5d = 20, so d = 4.
Substitute into a + 6d = 27:
a + 24 = 27, so a = 3.
Thus:
un = 3 + (n - 1)4 = 4n - 1.
The sequence is 3, 7, 11, 15, ...
5.5 Geometric progression
A geometric progression, or G.P., is a sequence in which the ratio of consecutive terms is constant. This constant is called the common ratio.
If the first term is a and the common ratio is r, then:
G.P. = a, ar, ar2, ar3, ...
The nth term is:
un = arn - 1
Example:
Find the 6th term of 1, 1/2, 1/4, ...
Here, a = 1 and r = 1/2.
u6 = 1 × (1/2)5 = 1/32.
5.6 Finding a G.P. from two terms
If the second term of a G.P. is 8/9 and the sixth term is 9/2, then:
u2 = ar = 8/9
u6 = ar5 = 9/2
Divide u6 by u2:
(ar5)/(ar) = r4 = (9/2)/(8/9) = 81/16.
Therefore:
r = 3/2 or r = -3/2.
If r = 3/2, then a = 16/27.
If r = -3/2, then a = -16/27.
So there are two possible geometric progressions.
Key takeaways
- A sequence is ordered; a set is not necessarily ordered.
- In an A.P., subtract consecutive terms to get d.
- In a G.P., divide consecutive terms to get r.
- A.P. nth term: un = a + (n - 1)d.
- G.P. nth term: un = arn - 1.
6. Series
6.1 Meaning of a series
A series is the sum of the terms of a sequence.
If a sequence is u1, u2, u3, ..., un, then the sum of the first n terms is:
Sn = u1 + u2 + u3 + ... + un
Summation notation writes this compactly:
∑r=1n ur = u1 + u2 + ... + un
Example:
∑r=14 r2 = 12 + 22 + 32 + 42 = 30.
6.2 Sum of an arithmetic progression
For an A.P. with first term a, common difference d, and n terms:
Sn = n/2[2a + (n - 1)d]
If the last term is l, then:
Sn = n/2(a + l)
Example:
Find the sum of the first 12 terms of 15, 12, 9, ...
Here, a = 15, d = -3, n = 12.
S12 = 12/2[2(15) + (12 - 1)(-3)]
S12 = 6[30 - 33] = 6(-3) = -18.
6.3 Number of terms in an arithmetic series
How many terms of 3, 7, 11, ... must be added to give 300?
Here, a = 3, d = 4, Sn = 300.
300 = n/2[2(3) + (n - 1)4]
300 = n/2(6 + 4n - 4)
300 = n/2(4n + 2)
300 = 2n2 + n
2n2 + n - 300 = 0
(2n + 25)(n - 12) = 0
n = 12 or n = -25/2.
Since the number of terms must be a positive integer, n = 12.
6.4 Sum of a geometric progression
For a G.P. with first term a, common ratio r, and n terms:
Sn = a(1 - rn)/(1 - r), for r ≠ 1
Equivalently:
Sn = a(rn - 1)/(r - 1), for r ≠ 1
Both forms are algebraically the same. Choose the form that keeps calculations simple.
If |r| < 1, the infinite geometric series has sum:
S∞ = a/(1 - r)
Example:
Find the sum of the first 10 terms of 8 + 4 + 2 + ...
Here, a = 8, r = 1/2, n = 10.
S10 = 8[1 - (1/2)10]/(1 - 1/2)
S10 = 16(1 - 1/1024) = 16(1023/1024) = 1023/64.
Key takeaways
- A sequence lists terms; a series adds terms.
- For A.P. sums, know Sn = n/2[2a + (n - 1)d].
- For G.P. sums, know Sn = a(1 - rn)/(1 - r), r ≠ 1.
- Infinite G.P. sums require |r| < 1.
- When solving for n, reject negative or fractional answers if n counts terms.
7. Mathematical Induction
7.1 Meaning of mathematical induction
Mathematical induction is a proof method used to show that a statement is true for all positive integers, or for all integers starting from a specified integer.
It works like a chain:
- Prove the first case is true.
- Prove that whenever one case is true, the next case must also be true.
- Conclude that all cases are true.
7.2 Standard induction steps
To prove a statement P(n) for all positive integers n:
- Base step: Show that P(1) is true.
- Inductive hypothesis: Assume P(k) is true for some positive integer k.
- Inductive step: Use the assumption P(k) to prove P(k + 1).
- Conclusion: Therefore, P(n) is true for all positive integers n.
7.3 Example: Sum of the first n odd numbers
Prove that:
1 + 3 + 5 + ... + (2n - 1) = n2
Base step:
For n = 1:
Left side = 1
Right side = 12 = 1
So the statement is true for n = 1.
Inductive hypothesis:
Assume it is true for n = k:
1 + 3 + 5 + ... + (2k - 1) = k2
Inductive step:
For n = k + 1, the next odd term is:
2(k + 1) - 1 = 2k + 1
Then:
1 + 3 + 5 + ... + (2k - 1) + (2k + 1)
Using the inductive hypothesis:
= k2 + 2k + 1
= (k + 1)2
This is exactly the required result for n = k + 1.
Conclusion:
By mathematical induction, the formula is true for all positive integers n.
7.4 Example: Sum of the first n natural numbers
Prove that:
1 + 2 + 3 + ... + n = n(n + 1)/2
Base step:
For n = 1:
Left side = 1
Right side = 1(1 + 1)/2 = 1
Inductive hypothesis:
Assume:
1 + 2 + 3 + ... + k = k(k + 1)/2
Inductive step:
1 + 2 + 3 + ... + k + (k + 1)
= k(k + 1)/2 + (k + 1)
= [k(k + 1) + 2(k + 1)]/2
= (k + 1)(k + 2)/2
This is the required formula for n = k + 1.
Key takeaways
- Do not skip the base step.
- Do not assume the result is true for all n; assume only that it is true for n = k.
- The inductive step must prove the k + 1 case.
- Induction is especially useful for sums, divisibility, inequalities, and formulas involving n.
8. Theory of Quadratic Equations
8.1 Definition
A quadratic equation is an equation that can be written in the standard form:
ax2 + bx + c = 0, where a ≠ 0
Here:
- a is the coefficient of x2.
- b is the coefficient of x.
- c is the constant term.
8.2 Methods of solving quadratic equations
Common methods include:
- Factorization.
- Completing the square.
- Quadratic formula.
8.3 Solving by factorization
If a quadratic expression can be written as a product of two linear factors, use the zero-product property.
Zero-product property:
If pq = 0, then p = 0 or q = 0.
Example:
Solve x2 - 3x - 4 = 0.
Factor:
x2 - 3x - 4 = (x - 4)(x + 1)
So:
(x - 4)(x + 1) = 0
x - 4 = 0 or x + 1 = 0
x = 4 or x = -1.
8.4 Solving by completing the square
Example:
Solve x2 - 6x - 10 = 0.
Move the constant term:
x2 - 6x = 10
Take half of -6 and square it:
(-6/2)2 = (-3)2 = 9
Add 9 to both sides:
x2 - 6x + 9 = 19
Factor the left side:
(x - 3)2 = 19
Take square roots:
x - 3 = ±√(19)
x = 3 ±√(19)
8.5 Quadratic formula
For ax2 + bx + c = 0, where a ≠ 0:
x = [-b ± √(b2 - 4ac)]/(2a)
The expression b2 - 4ac is called the discriminant.
The discriminant helps determine the type of roots:
| Discriminant | Nature of roots |
| b2 - 4ac > 0 | Two distinct real roots |
| b2 - 4ac = 0 | One repeated real root |
| b2 - 4ac < 0 | Two complex roots |
Example:
Solve 3x2 + 2x - 7 = 0.
Here, a = 3, b = 2, c = -7.
x = [-2 ± √(22 - 4(3)(-7))]/(2(3))
x = [-2 ± √(88)]/6
x = [-2 ± 2√(22)]/6
x = [-1 ± √(22)]/3
8.6 Sum and product of roots
If α and β are roots of:
ax2 + bx + c = 0
then:
α + β = -b/a
α β = c/a
Example:
For 3x2 - 4x - 1 = 0:
a = 3, b = -4, c = -1
Sum of roots = -b/a = -(-4)/3 = 4/3
Product of roots = c/a = -1/3
8.7 Forming a quadratic equation from roots
If the sum of roots is S and the product of roots is P, then the monic quadratic equation is:
x2 - Sx + P = 0
Example:
If sum of roots = 4 and product of roots = -7, then:
x2 - 4x - 7 = 0
8.8 Useful root identities
If α and β are roots, then:
α2 + β2 = (α + β)2 - 2α β
α3 + β3 = (α + β)3 - 3α β(α + β)
1/α + 1/β = (α + β)/(α β), provided α β ≠ 0
(α - β)2 = (α + β)2 - 4α β
Key takeaways
- Always put the quadratic in standard form before identifying a, b, and c.
- Factorization is fastest when the quadratic factors easily.
- The quadratic formula works for every quadratic equation.
- Sum of roots is -b/a; product of roots is c/a.
- Given sum S and product P, write x2 - Sx + P = 0.
9. Factorials, Combinations, and the Binomial Theorem
9.1 Factorial
For a positive integer n, n factorial, written n!, is the product of the positive integers from n down to 1.
n! = n(n - 1)(n - 2)...3 × 2 × 1
Also:
0! = 1
1! = 1
Examples:
4! = 4 × 3 × 2 × 1 = 24
5! = 5 × 4 × 3 × 2 × 1 = 120
7!/6! = 7
A useful identity is:
n! = n(n - 1)!
9.2 Combinations
The number of ways of choosing r objects from n objects, without regard to order, is written C(n, r) or nCr.
C(n, r) = n!/[r!(n - r)!]
where 0 ≤ r ≤ n.
Examples:
C(6, 3) = 6!/[3!3!] = 20
C(7, 2) = 7!/[2!5!] = 21
C(4, 4) = 1
C(3, 0) = 1
C(5, 1) = 5
Useful properties:
C(n, 0) = 1
C(n, n) = 1
C(n, 1) = n
C(n, r) = C(n, n - r)
9.3 Binomial theorem
A binomial is an expression with two terms, such as a + b, x + 1, or 2x - 3.
For a non-negative integer n:
(a + b)n = ∑r=0n C(n, r)an-rbr
Expanded form:
(a + b)n = C(n, 0)an + C(n, 1)an-1b + C(n, 2)an-2b2 + ... + C(n, n)bn
9.4 Pattern in binomial expansion
For (a + b)n:
- There are n + 1 terms.
- The power of a decreases from n to 0.
- The power of b increases from 0 to n.
- In every term, the sum of the powers is n.
- The coefficients are combinations: C(n, 0), C(n, 1), ..., C(n, n).
Example:
Expand (x + y)6.
(x + y)6 = x6 + 6x5y + 15x4y2 + 20x3y3 + 15x2y4 + 6xy5 + y6
9.5 Expansion with a negative term
Example:
Expand (1 - 2x)4.
Write it as [1 + (-2x)]4.
(1 - 2x)4 = 1 + 4(-2x) + 6(-2x)2 + 4(-2x)3 + (-2x)4
= 1 - 8x + 24x2 - 32x3 + 16x4
9.6 General term of a binomial expansion
The general term in (a + b)n is:
Tr+1 = C(n, r)an-rbr
where r = 0, 1, 2, ..., n.
The expression Tr+1 means that r = 0 gives the first term, r = 1 gives the second term, and so on.
Example:
Find the 4th term in the expansion of (2 - 3/x)8.
For the 4th term, r + 1 = 4, so r = 3.
Here, a = 2, b = -3/x, n = 8.
T4 = C(8, 3)(2)8-3(-3/x)3
= 56 × 32 × (-27/x3)
= -48384/x3
9.7 Finding a particular power of x
Example:
Find the term in x2 in the expansion of (x - 1/(2x))12.
General term:
Tr+1 = C(12, r)x12-r(-1/(2x))r
= C(12, r)x12-rx-r(-1/2)r
= C(12, r)x12-2r(-1/2)r
For the term in x2:
12 - 2r = 2
2r = 10
r = 5
So the required term is the 6th term:
T6 = C(12, 5)x7[-1/(2x)]5
= -99x2/4
Key takeaways
- Factorial means product down to 1.
- 0! = 1 is essential for combination formulas.
- C(n, r) = n!/[r!(n - r)!].
- The binomial expansion of (a + b)n has n + 1 terms.
- The general term is Tr+1 = C(n, r)an-rbr.
- To find a required power of x, form the general term and equate the exponent of x to the required power.
10. Exam High-Yield Formula Sheet
Set theory
n(A ∪ B) = n(A) + n(B) - n(A ∩ B)
n(A ∪ B ∪ C) = n(A) + n(B) + n(C) - n(A ∩ B) - n(A ∩ C) - n(B ∩ C) + n(A ∩ B ∩ C)
(A ∪ B)c = Ac ∩ Bc
(A ∩ B)c = Ac ∪ Bc
Number of subsets of an n-element set = 2n
n(A × B) = n(A)n(B)
Real numbers
R = rational numbers ∪ irrational numbers
A rational number can be written as a/b, where a and b are integers and b ≠ 0.
|a| is the distance of a from zero.
Sequences and series
A.P. nth term:
un = a + (n - 1)d
A.P. sum:
Sn = n/2[2a + (n - 1)d]
G.P. nth term:
un = arn - 1
Finite G.P. sum:
Sn = a(1 - rn)/(1 - r), r ≠ 1
Infinite G.P. sum:
S∞ = a/(1 - r), |r| < 1
Induction
- Prove P(1).
- Assume P(k).
- Prove P(k + 1).
- Conclude P(n) is true for all positive integers n.
Quadratic equations
Standard form:
ax2 + bx + c = 0, a ≠ 0
Quadratic formula:
x = [-b ± √(b2 - 4ac)]/(2a)
Sum of roots:
α + β = -b/a
Product of roots:
α β = c/a
Equation from sum S and product P:
x2 - Sx + P = 0
Binomial theorem
C(n, r) = n!/[r!(n-r)!]
(a + b)n = ∑r=0n C(n, r)an-rbr
Tr+1 = C(n, r)an-rbr
11. Practice Questions for Revision
Set theory
- If U = {1, 2, 3, ..., 10}, A = {1, 3, 5, 7}, and B = {3, 4, 5, 8}, find A ∪ B, A ∩ B, A - B, B - A, and Ac.
- List all subsets of {a, b, c}.
- How many subsets does a set with 7 elements have?
- In a class of 60 students, 35 study Mathematics, 28 study Physics, and 12 study both. How many study neither?
- Prove De Morgan's law for two small sets using a universal set of your choice.
Real numbers
- Classify each number as natural, integer, rational, irrational, or real: -4, 0, 2/3, √(7), 0.252525..., π.
- Convert 0.777... to a fraction.
- Simplify |5 - 12| + |-3|.
- Write in absolute value notation: the distance between x and -2 is less than 5.
Sequences and series
- Find the first five terms of un = 3n - 2.
- Find the general term of 2, 5, 8, 11, ...
- Find the 20th term of the A.P. 7, 11, 15, ...
- Find the sum of the first 15 terms of 4, 9, 14, ...
- Find the 8th term of the G.P. 3, 6, 12, ...
- Find the sum of the first 6 terms of 5, 10, 20, ...
Mathematical induction
- Prove that 1 + 2 + 3 + ... + n = n(n + 1)/2.
- Prove that 1 + 3 + 5 + ... + (2n - 1) = n2.
- Prove that 2 + 4 + 6 + ... + 2n = n(n + 1).
- Prove that 1 + 5 + 52 + ... + 5n-1 = (5n - 1)/4.
Quadratic equations
- Solve x2 - 5x + 6 = 0.
- Solve 2x2 + 3x - 2 = 0.
- Solve x2 - 4x - 1 = 0 by completing the square.
- For 5x2 - 7x + 2 = 0, find the sum and product of the roots.
- Form a quadratic equation whose roots have sum -3 and product -10.
Binomial theorem
- Evaluate 6!, 8!/6!, and C(8, 3).
- Expand (x + y)5.
- Expand (1 - 3x)4.
- Find the 5th term in the expansion of (2x - 1)7.
- Find the term independent of x in the expansion of (x2 + 1/x)9.
12. References
OpenStax. (2021). Algebra and Trigonometry 2e. Rice University.
OpenStax. (2021). College Algebra 2e. Rice University.
Mathematics LibreTexts. Basic concepts of sets and set operations.
Mathematics LibreTexts. Mathematical induction: An introduction.
Akaligwo, E. C. (2020). Lecture Notes on Elementary Mathematics I (MTH 111): Algebra and Trigonometry.