Lesson 1 โข 40 min read
Sets & Integers
In This Lesson
1Types of Sets
Finite Set
A set with a countable number of elements. You can list all members.
Infinite Set
A set with unlimited elements that go on forever.
Empty Set (Null Set)
A set with no elements. Denoted as โ or { }.
Subsets
Set A is a subset of B if every element of A is also in B. Written as A โ B.
Universal Set
The set that contains all elements under consideration for a particular problem. Denoted as U.
2Set Operations
Union (โช)
All elements in either set (combine both)
A = {1, 2, 3}
B = {3, 4, 5}
A โช B = {1, 2, 3, 4, 5}
Intersection (โฉ)
Elements common to both sets
A = {1, 2, 3}
B = {3, 4, 5}
A โฉ B = {3}
Difference (A - B)
Elements in A but not in B
A = {1, 2, 3}
B = {3, 4, 5}
A - B = {1, 2}
Complement (A')
Elements not in set A (from Universal set)
U = {1, 2, 3, 4, 5}
A = {1, 2, 3}
A' = {4, 5}
3The Number Line
Negative Integers
Numbers less than zero. Located to the left of zero on the number line.
Positive Integers
Numbers greater than zero. Located to the right of zero on the number line.
Absolute Value |x|
The distance from zero on the number line. Always positive or zero.
|5| = 5, |-5| = 5, |0| = 0
4Integer Operation Rules
Addition Rules
Same Signs: Add and keep the sign
(+5) + (+3) = +8
(-5) + (-3) = -8
Different Signs: Subtract and take the sign of the larger absolute value
(+5) + (-3) = +2 (|5| > |3|, so positive)
(-5) + (+3) = -2 (|-5| > |3|, so negative)
Multiplication/Division Rules
Same Signs = POSITIVE
(+) ร (+) = (+)
(-) ร (-) = (+)
Different Signs = NEGATIVE
(+) ร (-) = (-)
(-) ร (+) = (-)
Quick Memory Trick
"Same sign = Positive, Different sign = Negative"
Think: Friends (+,+) or (-,-) agree. Enemies (+,-) disagree.
5Order of Operations (PEMDAS/GEMDAS)
PEMDAS Steps
Parentheses / Grouping Symbols
( ), [ ], { }, fraction bars
Exponents
Powers like 2ยณ, 5ยฒ
Multiplication and Division
Left to right (equal priority)
Addition and Subtraction
Left to right (equal priority)
Example Problem
Solve: 3 + 4 ร 2ยฒ - (6 รท 2)
Step 1 (P): 3 + 4 ร 2ยฒ - 3
Step 2 (E): 3 + 4 ร 4 - 3
Step 3 (M): 3 + 16 - 3
Step 4 (AS): 19 - 3 = 16