Distribute: 3x โ 7 = 2x + 8
Subtract 2x: x โ 7 = 8
Add 7: x = 15 โ TRAP: Don't forget to distribute the 2!
2
A line passes through (2, 5) and (6, 13). What is the slope of the line?EASY
SLOPE = RISE over RUN = (yโ โ yโ) / (xโ โ xโ)
"Change in Y รท Change in X" โ always Y first!
m = (13 โ 5) / (6 โ 2) = 8 / 4 = 2 โ TRAP: Never flip โ it's (yโโyโ)/(xโโxโ), not (xโโxโ)/(yโโyโ)!
3
Which value of x satisfies |2x โ 4| = 10?โ ๏ธ TRAP
ABSOLUTE VALUE = TWO CASES!
|A| = B means โ A = B OR A = โB
Always solve both equations!
Case 1: 2x โ 4 = 10 โ 2x = 14 โ x = 7
Case 2: 2x โ 4 = โ10 โ 2x = โ6 โ x = โ3
Both are valid answers!
|2x โ 4| = 10 gives TWO cases:
โ 2x โ 4 = 10 โ x = 7
โก 2x โ 4 = โ10 โ x = โ3 Both x = 7 and x = โ3 โ CLASSIC TRAP: Forgetting the negative case!
Quadratics
๐ Unit 2 ยท Quadratic Equations & Parabolas
4
What are the solutions of xยฒ โ 5x + 6 = 0?EASY
FACTOR: find two numbers that MULTIPLY to +6 AND ADD to โ5
โ think: โ2 ร โ3 = 6 โ and โ2 + (โ3) = โ5 โ
Factor: (x โ 2)(x โ 3) = 0
x โ 2 = 0 โ x = 2
x โ 3 = 0 โ x = 3 x = 2 or x = 3 โ Check: 2ยฒ โ 5(2) + 6 = 4 โ 10 + 6 = 0 โ
5
The quadratic y = xยฒ โ 6x + 5 has its vertex at which point?MEDIUM
VERTEX X-coordinate = โb / (2a)
Then plug back in to find Y
Formula: vertex = (โb/2a, f(โb/2a))
a = 1, b = โ6, c = 5
x = โ(โ6) / (2ร1) = 6/2 = 3
y = 3ยฒ โ 6(3) + 5 = 9 โ 18 + 5 = โ4
Vertex = (3, โ4)
x = โb/2a = 6/2 = 3
y = 9 โ 18 + 5 = โ4 Vertex = (3, โ4) โ TRAP: Sign error โ b = โ6, so โb = +6!
6
The discriminant of 2xยฒ + 3x + 5 = 0 is:โ ๏ธ TRAP
DISCRIMINANT = bยฒ โ 4ac
>0 โ two real roots | =0 โ one root | <0 โ no real roots
"BIG-FOUR-AC"
a = 2, b = 3, c = 5
ฮ = bยฒ โ 4ac = 9 โ 4(2)(5) = 9 โ 40 = โ31 โ
Since ฮ < 0 โ no real solutions! TRAP: Many pick +31 by forgetting the minus sign in 4ac!
Functions
๐ Unit 3 ยท Functions & Graphs
7
If f(x) = 3xยฒ โ 2x + 1, what is f(โ2)?EASY
SUBSTITUTION: replace every x with (โ2)
Use parentheses! Write: 3(โ2)ยฒ โ 2(โ2) + 1
"PLUG IN WITH PARENS"
INVERSE: SWAP x and y, then SOLVE for y
y = 2x+3 โ swap: x = 2y+3 โ solve: y = (xโ3)/2
"SWITCH AND SOLVE"
Let y = 2x + 3. Swap x โ y: x = 2y + 3
Solve: 2y = x โ 3 โ y = (xโ3)/2 gโปยน(x) = (x โ 3)/2 โ TRAP: รท 2 applies to ALL of (xโ3), not just x!
9
Which transformation moves y = xยฒ to y = (x โ 3)ยฒ + 5?โ ๏ธ TRAP
TRANSFORMATION RULE:
y = (x โ h)ยฒ + k โ shifts RIGHT by h, UP by k INSIDE parens: OPPOSITE direction! (xโ3) โ move RIGHT +3
(x โ 3)ยฒ โ horizontal shift RIGHT 3 (opposite of โ3)
+ 5 โ vertical shift UP 5 Right 3, Up 5 โ TRAP: (xโ3) looks like left, but it's RIGHT! Inside = opposite!
Exponents
๐ Unit 4 ยท Exponents, Radicals & Exponential Growth
10
Simplify: xยณ ยท xโต / xโดEASY
EXPONENT RULES:
Multiply โ ADD exponents | Divide โ SUBTRACT
"SAME BASE: add to multiply, subtract to divide"
P = (4/10) ร (3/9) = 12/90 = 2/15 โ TRAP: (4/10)ร(4/10) = 4/25 is WITH replacement! Wrong here!
Systems
๐ Unit 7 ยท Systems of Equations & Inequalities
17
Solve the system: 2x + y = 10 and x โ y = 2EASY
ELIMINATION: Add or subtract equations to CANCEL one variable
Here: ADD both equations โ y cancels โ solve x โ back-substitute
"ADD TO CANCEL, THEN SUBSTITUTE"
Add: (2x+y) + (xโy) = 10+2 โ 3x = 12 โ x = 4
Sub: 4 โ y = 2 โ y = 2 (x, y) = (4, 2) โ Verify: 2(4)+2=10 โ and 4โ2=2 โ