๐ŸŽ‰ Correct!

๐Ÿ“ Pre-Calculus Study Notebook

20 Key Problems ยท Self-Study Edition ยท Write & Learn โœ๏ธ
Score: 0 / 20  |  Answered: 0
๐Ÿ“˜ UNIT 1 โ€” Functions & Their Graphs Ch. 1
VERTICAL LINE TEST โ†’ If a vertical line hits the graph MORE than once โ†’ NOT a function!
DOMAIN = all valid x-values  |  RANGE = all valid y-values
โœ๏ธ EXAMPLE
Is \( f(x) = x^2 \) a function? โ†’ YES โœ“ (each x gives exactly one y)
Is \( x^2 + y^2 = 9 \) a function? โ†’ NO โœ— (one x can give two y values)
Q1.
What is the domain of \( f(x) = \dfrac{1}{\sqrt{x - 3}} \) ? โš ๏ธ COMMON TRAP
โ†’ Remember: sqrt needs โ‰ฅ 0, denominator needs โ‰  0!
๐Ÿ’ก EXPLANATION
For \( \sqrt{x-3} \): need \( x - 3 \geq 0 \) โ†’ \( x \geq 3 \)
BUT the denominator \( \sqrt{x-3} \neq 0 \) โ†’ \( x \neq 3 \)
Combining: \( x > 3 \) โœ“
Trap: Many pick โ‰ฅ 3, forgetting denominator can't be 0!
- - - - - - - - - - - - - - -
Q2.
If \( f(x) = 2x + 1 \) and \( g(x) = x^2 \), find \( (f \circ g)(3) \).
โ†’ fโˆ˜g means f(g(x)). Do INSIDE first!
๐Ÿ’ก EXPLANATION
\( (f \circ g)(3) = f(g(3)) \)
Step 1: \( g(3) = 3^2 = 9 \)
Step 2: \( f(9) = 2(9) + 1 = \mathbf{19} \) โœ“
Trap: Don't do f(3) first! Always start INSIDE.
๐Ÿ“— UNIT 2 โ€” Polynomial & Rational Functions Ch. 2-3
REMAINDER THEOREM: Divide \(f(x)\) by \((x-c)\) โ†’ remainder = \(f(c)\)
FACTOR THEOREM: \(f(c) = 0\) โ†” \((x-c)\) is a FACTOR
End Behavior: Even degree โ†’ same ends | Odd degree โ†’ opposite ends
โœ๏ธ EXAMPLE
\( f(x) = x^3 - 2x^2 - 5x + 6 \). Is \((x-1)\) a factor?
โ†’ \( f(1) = 1 - 2 - 5 + 6 = 0 \) โœ“ โ†’ YES, \((x-1)\) is a factor!
Q3.
When \( f(x) = x^3 - 3x^2 + 2x - 5 \) is divided by \( (x - 2) \), the remainder is:
๐Ÿ’ก EXPLANATION
Remainder Theorem: plug in \(x = 2\)
\( f(2) = 8 - 12 + 4 - 5 = \mathbf{-5} \) โœ“
No long division needed! Just substitute the zero of the divisor.
- - - - - - - - - - - - - - -
Q4.
The polynomial \( p(x) = x^4 - 5x^2 + 4 \). How many real zeros does it have? โš ๏ธ TRICKY
โ†’ Treat as a quadratic! Let u = xยฒ
๐Ÿ’ก EXPLANATION
Let \(u = x^2\): \( u^2 - 5u + 4 = (u-1)(u-4) = 0 \)
โ†’ \(u = 1\) or \(u = 4\)
โ†’ \(x^2 = 1 \Rightarrow x = \pm 1\) and \(x^2 = 4 \Rightarrow x = \pm 2\)
โ†’ 4 real zeros: \(-2, -1, 1, 2\) โœ“
- - - - - - - - - - - - - - -
Q5.
Find the vertical asymptote(s) of \( f(x) = \dfrac{x+2}{x^2 - x - 6} \). โš ๏ธ HOLE vs ASYMPTOTE
โ†’ Factor denominator first! Cancel = hole, leftover = asymptote
๐Ÿ’ก EXPLANATION
Factor: \( x^2 - x - 6 = (x-3)(x+2) \)
\( f(x) = \dfrac{(x+2)}{(x-3)(x+2)} = \dfrac{1}{x-3} \) (with hole at \(x = -2\))
โ†’ Vertical asymptote: \(x = 3\) only โœ“
\(x = -2\) creates a HOLE (cancelled factor), NOT an asymptote!
๐Ÿ“™ UNIT 3 โ€” Exponential & Logarithmic Functions Ch. 4
LOG โ†” EXP: \( \log_b x = y \) โ†” \( b^y = x \)
LOG RULES: Product โ†’ +, Quotient โ†’ โˆ’, Power โ†’ ร—
CHANGE OF BASE: \( \log_b x = \dfrac{\ln x}{\ln b} \)
โœ๏ธ EXAMPLE
Solve: \( 2^{x+1} = 16 \)
โ†’ \( 2^{x+1} = 2^4 \) โ†’ \( x + 1 = 4 \) โ†’ \( x = 3 \) โœ“
Q6.
Solve: \( \log_2(x+3) + \log_2(x-1) = 5 \) โš ๏ธ CHECK DOMAIN!
โ†’ Combine logs using Product Rule, then convert to exponential
๐Ÿ’ก EXPLANATION
\( \log_2[(x+3)(x-1)] = 5 \) โ†’ \( (x+3)(x-1) = 2^5 = 32 \)
\( x^2 + 2x - 3 = 32 \) โ†’ \( x^2 + 2x - 35 = 0 \) โ†’ \( (x+7)(x-5) = 0 \)
\(x = 5\) or \(x = -7\) โ€” but check domain:
\(x = -7\): \(\log_2(-4)\) is undefined! โ†’ Reject
Answer: \(x = 5\) โœ“
- - - - - - - - - - - - - - -
Q7.
Simplify: \( \log_3 \dfrac{27\sqrt{3}}{9} \)
โ†’ Convert everything to powers of 3!
๐Ÿ’ก EXPLANATION
\( \dfrac{27\sqrt{3}}{9} = \dfrac{3^3 \cdot 3^{1/2}}{3^2} = 3^{3 + 1/2 - 2} = 3^{3/2} \)
\( \log_3 3^{3/2} = \mathbf{\dfrac{3}{2}} \) โœ“
Key: Convert radicals to fractional exponents first!
- - - - - - - - - - - - - - -
Q8.
A bacteria doubles every 3 hours. Starting with 500, how many after 12 hours?
โ†’ Formula: \(A = A_0 \cdot 2^{t/d}\) where d = doubling time
๐Ÿ’ก EXPLANATION
\( A = 500 \cdot 2^{12/3} = 500 \cdot 2^4 = 500 \cdot 16 = \mathbf{8{,}000} \) โœ“
In 12 hours: doubles 4 times (3โ†’6โ†’9โ†’12 hrs) โ†’ 500 ร— 16 = 8,000
๐Ÿ“• UNIT 4 โ€” Trigonometry Ch. 5-6
SOH-CAH-TOA for right triangles
ALL STUDENTS TAKE CALCULUS (Quadrant signs: All, Sin, Tan, Cos = +)
Unit Circle: \((\cos\theta, \sin\theta)\) | Radius = 1
โœ๏ธ EXAMPLE โ€” Special Angles
\(\sin 30ยฐ = \dfrac{1}{2}\)  |  \(\cos 45ยฐ = \dfrac{\sqrt{2}}{2}\)  |  \(\tan 60ยฐ = \sqrt{3}\)
Q9.
If \( \sin\theta = \dfrac{3}{5} \) and \(\theta\) is in Quadrant II, find \(\cos\theta\). โš ๏ธ SIGN TRAP
โ†’ Use Pythagorean identity + check the quadrant sign!
๐Ÿ’ก EXPLANATION
\( \cos^2\theta = 1 - \sin^2\theta = 1 - \dfrac{9}{25} = \dfrac{16}{25} \)
โ†’ \( |\cos\theta| = \dfrac{4}{5} \)
In QII: cos is NEGATIVE โ†’ \( \cos\theta = \mathbf{-\dfrac{4}{5}} \) โœ“
In QII: sin(+), cos(โˆ’), tan(โˆ’)
- - - - - - - - - - - - - - -
Q10.
The period of \( f(x) = 3\sin(2x - \pi) + 1 \) is: โš ๏ธ COMMON MISTAKE
โ†’ Period = 2ฯ€ รท |B| where B is coefficient of x
๐Ÿ’ก EXPLANATION
For \(y = A\sin(Bx + C) + D\): Period \(= \dfrac{2\pi}{|B|}\)
Here \(B = 2\): Period \(= \dfrac{2\pi}{2} = \mathbf{\pi}\) โœ“
The \(-\pi\) shifts the phase, NOT the period! Don't confuse C with B.
- - - - - - - - - - - - - - -
Q11.
Simplify: \( \dfrac{\sin^2\theta + \cos^2\theta}{\tan\theta} \cdot \sec\theta \)
โ†’ Pythagorean identity first, then convert to sin/cos
๐Ÿ’ก EXPLANATION
\( \sin^2\theta + \cos^2\theta = 1 \) (Pythagorean identity)
\( = \dfrac{1}{\tan\theta} \cdot \sec\theta = \dfrac{\cos\theta}{\sin\theta} \cdot \dfrac{1}{\cos\theta} = \dfrac{1}{\sin\theta} = \mathbf{\csc\theta} \) โœ“
๐Ÿ”ด UNIT 5 โ€” Trig Identities & Equations Ch. 6-7
DOUBLE ANGLE: \(\sin 2\theta = 2\sin\theta\cos\theta\)  |  \(\cos 2\theta = \cos^2\theta - \sin^2\theta\)
RANGE of Inverse: \(\arcsin\): \(\left[-\dfrac{\pi}{2}, \dfrac{\pi}{2}\right]\)  |  \(\arccos\): \([0, \pi]\)
โœ๏ธ EXAMPLE
Solve \(2\sin x - 1 = 0\) on \([0, 2\pi)\):
โ†’ \(\sin x = \dfrac{1}{2}\) โ†’ \(x = \dfrac{\pi}{6}\) or \(x = \dfrac{5\pi}{6}\)
Q12.
Solve: \( 2\cos^2 x - 3\cos x + 1 = 0 \) on \([0, 2\pi)\) โš ๏ธ QUADRATIC IN DISGUISE
โ†’ Let u = cos x, solve quadratic, then find angles
๐Ÿ’ก EXPLANATION
Factor: \((2\cos x - 1)(\cos x - 1) = 0\)
โ†’ \(\cos x = \dfrac{1}{2}\) โ†’ \(x = \dfrac{\pi}{3}, \dfrac{5\pi}{3}\)
โ†’ \(\cos x = 1\) โ†’ \(x = 0\)
All solutions: \(x = 0, \dfrac{\pi}{3}, \dfrac{5\pi}{3}\) โœ“
- - - - - - - - - - - - - - -
Q13.
\( \arcsin\!\left(\sin\!\left(\dfrac{5\pi}{6}\right)\right) = \) ? โš ๏ธ RANGE RESTRICTION TRAP
โ†’ arcsin's output range is only [โˆ’ฯ€/2, ฯ€/2]!
๐Ÿ’ก EXPLANATION
\(\sin\!\left(\dfrac{5\pi}{6}\right) = \dfrac{1}{2}\)
Now: \(\arcsin\!\left(\dfrac{1}{2}\right) = \dfrac{\pi}{6}\) โœ“ (must be in \(\left[-\dfrac{\pi}{2}, \dfrac{\pi}{2}\right]\))
arcsin NEVER returns \(\dfrac{5\pi}{6}\) โ€” that's outside its range!
๐Ÿ““ UNIT 6 โ€” Sequences, Series & Conics Ch. 8-9
ARITHMETIC: \(a_n = a_1 + (n-1)d\)  |  \(S_n = \dfrac{n}{2}(a_1 + a_n)\)
GEOMETRIC: \(a_n = a_1 r^{n-1}\)  |  Infinite Sum: \(S = \dfrac{a_1}{1-r}\) if \(|r| < 1\)
CONIC HINT: \(x^2 + y^2\) โ†’ circle | \(x^2 - y^2\) โ†’ hyperbola
โœ๏ธ EXAMPLE โ€” Geometric Series
Sum of \(1 + \dfrac{1}{2} + \dfrac{1}{4} + \cdots\) = \(\dfrac{1}{1 - \frac{1}{2}} = 2\) (infinite geometric, \(r = \dfrac{1}{2}\))
Q14.
Find the sum of the first 20 terms of the arithmetic sequence: 5, 8, 11, 14, ...
โ†’ d = 3, use Sโ‚™ formula
๐Ÿ’ก EXPLANATION
\(a_1 = 5,\ d = 3,\ n = 20\)
\(a_{20} = 5 + 19(3) = 62\)
\(S_{20} = \dfrac{20}{2}(5 + 62) = 10 \times 67 = \mathbf{670}\) โœ“
- - - - - - - - - - - - - - -
Q15.
The infinite geometric series \( 3 + 1 + \dfrac{1}{3} + \cdots \) converges to:
๐Ÿ’ก EXPLANATION
\(r = \dfrac{1}{3},\ a_1 = 3\)
\(S = \dfrac{a_1}{1-r} = \dfrac{3}{1 - \frac{1}{3}} = \dfrac{3}{\frac{2}{3}} = \dfrac{9}{2}\) โœ“
- - - - - - - - - - - - - - -
Q16.
Identify the conic: \( \dfrac{x^2}{9} - \dfrac{y^2}{4} = 1 \) โš ๏ธ ELLIPSE vs HYPERBOLA
โ†’ Key: What sign is between the fractions?
๐Ÿ’ก EXPLANATION
Minus sign between the two fraction terms โ†’ Hyperbola โœ“
\(x^2\) term is positive โ†’ opens left and right (horizontal hyperbola)
Ellipse uses PLUS: \(\dfrac{x^2}{a^2} + \dfrac{y^2}{b^2} = 1\)
๐Ÿ”ต UNIT 7 โ€” Intro to Limits & Vectors Ch. 10-11
LIMIT: "What value does f(x) approach as xโ†’c?" (doesn't matter what f(c) is!)
DOT PRODUCT: \(\vec{u} \cdot \vec{v} = |\vec{u}||\vec{v}|\cos\theta\)
PERPENDICULAR: \(\vec{u} \cdot \vec{v} = 0\)
Q17.
Evaluate: \( \displaystyle\lim_{x \to 2} \dfrac{x^2 - 4}{x - 2} \) โš ๏ธ INDETERMINATE FORM
โ†’ Factor! Never just substitute first when you get 0/0
๐Ÿ’ก EXPLANATION
Direct sub: \(\dfrac{4-4}{2-2} = \dfrac{0}{0}\) โ†’ indeterminate!
Factor: \(\dfrac{(x+2)(x-2)}{x-2} = x + 2\)
\(\lim_{x\to 2}(x+2) = \mathbf{4}\) โœ“
The function is UNDEFINED at x=2, but the LIMIT is 4. These are different things!
- - - - - - - - - - - - - - -
Q18.
Vectors \(\vec{u} = \langle 3, 4 \rangle\) and \(\vec{v} = \langle -4, 3 \rangle\). Are they perpendicular?
โ†’ Compute dot product. If = 0, they're perpendicular!
๐Ÿ’ก EXPLANATION
\( \vec{u} \cdot \vec{v} = (3)(-4) + (4)(3) = -12 + 12 = \mathbf{0} \) โœ“
Since the dot product equals 0 โ†’ Perpendicular!
Note: \(|\vec{u}| = |\vec{v}| = 5\). These are perpendicular unit-scaled vectors.
- - - - - - - - - - - - - - -
Q19.
\( \displaystyle\lim_{x \to \infty} \dfrac{4x^3 - 2x + 1}{6x^3 + 5} = \) ?
โ†’ Same degree? Ratio of leading coefficients!
๐Ÿ’ก EXPLANATION
Both numerator and denominator are degree 3 (same highest power).
โ†’ Limit = ratio of leading coefficients = \(\dfrac{4}{6} = \mathbf{\dfrac{2}{3}}\) โœ“
Rules: Higher degree top โ†’ โˆž | Higher degree bottom โ†’ 0 | Same degree โ†’ ratio of coefficients
- - - - - - - - - - - - - - -
Q20.
Which expression is equivalent to \( \cos^2\theta - \sin^2\theta \)? โš ๏ธ IDENTITY CHALLENGE
โ†’ Double angle identities! You must memorize these.
๐Ÿ’ก EXPLANATION
\(\cos 2\theta\) has three equivalent forms:
1. \(\cos^2\theta - \sin^2\theta\)
2. \(1 - 2\sin^2\theta\)
3. \(2\cos^2\theta - 1\)
So Both B and C are correct! โœ“
This is a very common exam question โ€” know all three forms of cos 2ฮธ!

๐ŸŽ“ Quiz Complete!

0 / 20
Keep studying!