๐ŸŽ‰
CORRECT!
Great job! Keep it up!
๐Ÿ“ Pre-Calculus Study Notebook
Vectors ยท Matrices ยท Polar Graphs ยท Trigonometry
โœฆ 20 Core Problems ยท Self-Study Edition โœฆ
๐Ÿ“Š Progress:
0 / 20 answered
โžก๏ธ
VECTORS
Unit 1 ยท Problems 1โ€“5
MAGNITUDE = length of arrow = \(\sqrt{x^2+y^2}\)
DIRECTION = angle \(\theta = \tan^{-1}(y/x)\)
DOT PRODUCT = \(\vec{a}\cdot\vec{b} = |\vec{a}||\vec{b}|\cos\theta\)
PERPENDICULAR โŸน dot product = 0
Given \(\vec{v} = \langle 3, 4 \rangle\), find its magnitude:
Step 1: \(|\vec{v}| = \sqrt{3^2 + 4^2} = \sqrt{9+16} = \sqrt{25}\)
Step 2: \(|\vec{v}| = \mathbf{5}\) โœ”
๐Ÿ’ก 3-4-5 is a Pythagorean triple โ€” memorize it!
1
VECTORS โ€” Magnitude
Find the magnitude of the vector \(\vec{u} = \langle -5,\; 12 \rangle\).
๐Ÿ’ก Hint: Remember โ€” negative signs disappear when you square!
๐Ÿ’ก EXPLANATION
\(|\vec{u}| = \sqrt{(-5)^2 + 12^2} = \sqrt{25 + 144} = \sqrt{169} = \mathbf{13}\)
Key: 5-12-13 is a Pythagorean triple! Add it to your memory bank. ๐Ÿง 
2
VECTORS โ€” Dot Product
Are vectors \(\vec{a} = \langle 3,\; -4 \rangle\) and \(\vec{b} = \langle 8,\; 6 \rangle\) perpendicular?
๐Ÿ’ก Hint: Compute \(\vec{a} \cdot \vec{b}\) first. If it equals 0, they're perpendicular!
๐Ÿ’ก EXPLANATION
\(\vec{a}\cdot\vec{b} = (3)(8) + (-4)(6) = 24 - 24 = \mathbf{0}\)
Since the dot product is 0, the vectors ARE perpendicular! โœ”
Trick: "Perpendicular = Product is ZERO" โ€” P.P.Z! ๐ŸŽฏ
3
VECTORS โ€” Component Form
A vector has magnitude \(10\) and direction angle \(60ยฐ\). What are its component form coordinates \(\langle x,\; y \rangle\)?
๐Ÿ’ก Hint: \(x = r\cos\theta\), \(y = r\sin\theta\)
๐Ÿ’ก EXPLANATION
\(x = 10\cos 60ยฐ = 10 \cdot \tfrac{1}{2} = 5\)
\(y = 10\sin 60ยฐ = 10 \cdot \tfrac{\sqrt{3}}{2} = 5\sqrt{3}\)
Memory: cos60ยฐ = ยฝ, sin60ยฐ = โˆš3/2. Think: "cosine comes first, sine is bigger at 60ยฐ" ๐Ÿ“
4
VECTORS โ€” Angle Between
Find the angle between \(\vec{p} = \langle 1,\; 0 \rangle\) and \(\vec{q} = \langle 0,\; 1 \rangle\) using the dot product formula.
๐Ÿ’ก EXPLANATION
\(\vec{p}\cdot\vec{q} = (1)(0)+(0)(1) = 0\)
\(\cos\theta = \dfrac{0}{|\vec{p}||\vec{q}|} = 0 \Rightarrow \theta = \cos^{-1}(0) = 90ยฐ\)
These are just the x and y unit vectors โ€” obviously perpendicular! ๐Ÿ˜„
5
VECTORS โ€” Vector Addition
If \(\vec{u} = \langle 2,\; -3 \rangle\) and \(\vec{v} = \langle -5,\; 7 \rangle\), what is \(2\vec{u} - \vec{v}\)?
๐Ÿ’ก Hint: Scale first, THEN subtract component by component.
๐Ÿ’ก EXPLANATION
\(2\vec{u} = \langle 4, -6 \rangle\)
\(2\vec{u} - \vec{v} = \langle 4-(-5),\; -6-7 \rangle = \langle 9,\; -13 \rangle\) โœ”
Watch out! Subtracting a negative: \(4 - (-5) = 4 + 5 = 9\) โ€” don't drop the sign! โš ๏ธ
๐Ÿ”ฒ
MATRICES
Unit 2 ยท Problems 6โ€“10
ROW ร— COLUMN = rule for multiplication
DETERMINANT 2ร—2: \(ad - bc\)
IDENTITY = \(I\), like multiplying by 1
INVERSE EXISTS only if \(\det \neq 0\)
Find det of \(A = \begin{pmatrix} 3 & 2 \\ 1 & 4 \end{pmatrix}\):
det(A) = \((3)(4) - (2)(1) = 12 - 2 = \mathbf{10}\)
๐Ÿ’ก "ad minus bc" โ€” diagonal down MINUS diagonal up!
6
MATRIX โ€” Determinant
Calculate \(\det\begin{pmatrix} 5 & -2 \\ 3 & 4 \end{pmatrix}\).
๐Ÿ’ก EXPLANATION
\(\det = (5)(4) - (-2)(3) = 20 - (-6) = 20 + 6 = \mathbf{26}\)
Trap alert! \((-2)(3) = -6\), and then \(-(-6) = +6\). Double negatives trip everyone up! โš ๏ธ
7
MATRIX โ€” Multiplication
Find \(AB\) where \(A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\) and \(B = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}\).
๐Ÿ’ก Hint: \(B\) is a "swap matrix" โ€” it swaps the columns of \(A\)!
๐Ÿ’ก EXPLANATION
Row 1: \([1ยท0+2ยท1,\; 1ยท1+2ยท0] = [2,\; 1]\)
Row 2: \([3ยท0+4ยท1,\; 3ยท1+4ยท0] = [4,\; 3]\)
Result: \(\begin{pmatrix} 2 & 1 \\ 4 & 3 \end{pmatrix}\) โœ” โ€” the columns of A are swapped!
8
MATRIX โ€” Inverse
Find the inverse of \(M = \begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}\).
๐Ÿ’ก Formula: \(M^{-1} = \dfrac{1}{\det M}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}\)
๐Ÿ’ก EXPLANATION
\(\det M = (2)(2)-(3)(1) = 4-3 = 1\)
\(M^{-1} = \frac{1}{1}\begin{pmatrix} 2 & -3 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 2 & -3 \\ -1 & 2 \end{pmatrix}\) โœ”
Memory trick: Swap main diagonal, negate off-diagonal, divide by det. "Swap-Negate-Divide!" ๐Ÿ”„
9
MATRIX โ€” System of Equations
Use matrices to solve: \(\begin{cases} 2x + y = 5 \\ x + 3y = 10 \end{cases}\)
๐Ÿ’ก Set up \(AX = B\), then \(X = A^{-1}B\). Or just substitute!
๐Ÿ’ก EXPLANATION
From eq1: \(y = 5 - 2x\). Sub into eq2:
\(x + 3(5-2x) = 10 \Rightarrow x + 15 - 6x = 10 \Rightarrow -5x = -5 \Rightarrow x = 1\)
Then \(y = 5 - 2(1) = 3\). So \(\mathbf{(1,\; 3)}\) โœ”
10
MATRIX โ€” Properties
Which of the following is TRUE about matrix multiplication?
๐Ÿ’ก EXPLANATION
โœ… D is correct: Matrix multiplication IS associative: \((AB)C = A(BC)\)
โŒ A: \(AB \neq BA\) in general โ€” order matters!
โŒ B: The correct identity rule is \(A \cdot I = A\), not \(I\)
โŒ C: You can only multiply if columns of A = rows of B
Remember: "MATRICES ARE NOT COMMUTATIVE!" โ€” This trips up almost everyone! ๐Ÿšจ
๐ŸŒ€
POLAR GRAPHS
Unit 3 ยท Problems 11โ€“14
POLAR โ†’ RECT \(x = r\cos\theta\), \(y = r\sin\theta\)
RECT โ†’ POLAR \(r = \sqrt{x^2+y^2}\), \(\theta = \tan^{-1}(y/x)\)
ROSE \(r = a\cos(n\theta)\): n even โ†’ 2n petals, n odd โ†’ n petals
CARDIOID \(r = a(1 \pm \cos\theta)\) โ€” heart shape โค๏ธ
Convert polar \((r,\theta) = (4, 30ยฐ)\) to rectangular:
\(x = 4\cos30ยฐ = 4 \cdot \frac{\sqrt{3}}{2} = 2\sqrt{3}\)
\(y = 4\sin30ยฐ = 4 \cdot \frac{1}{2} = 2\)
Rectangular: \(\mathbf{(2\sqrt{3},\; 2)}\) โœ”
11
POLAR โ€” Conversion
Convert the polar point \(\left(6,\; \dfrac{\pi}{4}\right)\) to rectangular coordinates.
๐Ÿ’ก \(\frac{\pi}{4}\) radians = 45ยฐ, and \(\cos45ยฐ = \sin45ยฐ = \frac{\sqrt{2}}{2}\)
๐Ÿ’ก EXPLANATION
\(x = 6\cos\!\frac{\pi}{4} = 6 \cdot \frac{\sqrt{2}}{2} = 3\sqrt{2}\)
\(y = 6\sin\!\frac{\pi}{4} = 6 \cdot \frac{\sqrt{2}}{2} = 3\sqrt{2}\)
Since \(\frac{\pi}{4} = 45ยฐ\), both components are equal โ€” the point lies on the line \(y = x\)! ๐ŸŽฏ
12
POLAR โ€” Graph Identification
The polar equation \(r = 3\cos(2\theta)\) produces which type of graph?
๐Ÿ’ก Hint: Look at the coefficient of \(\theta\). Is it \(n\) even or odd?
๐Ÿ’ก EXPLANATION
\(r = a\cos(n\theta)\) is a rose curve.
Here \(n = 2\) (even), so petals = \(2n = 4\). โœ”
RULE: "Even n โ†’ 2n petals, Odd n โ†’ n petals." Write this on your wrist! โœ๏ธ
13
POLAR โ€” Rectangular to Polar
Convert the rectangular point \((-\sqrt{3},\; 1)\) to polar form \((r,\;\theta)\) where \(r > 0\) and \(0 \le \theta < 2\pi\).
๐Ÿ’ก Careful! The point is in Quadrant II. Adjust your angle!
๐Ÿ’ก EXPLANATION
\(r = \sqrt{3+1} = 2\)
Reference angle: \(\tan^{-1}\!\left(\frac{1}{\sqrt{3}}\right) = \frac{\pi}{6} = 30ยฐ\)
But point is in Q2 (x<0, y>0): \(\theta = \pi - \frac{\pi}{6} = \frac{5\pi}{6}\) โœ”
Always identify the quadrant FIRST before finding the angle! ๐Ÿงญ
14
POLAR โ€” Equation Recognition
Which polar equation represents a circle centered at the origin with radius 5?
๐Ÿ’ก EXPLANATION
\(r = 5\) means: every point is exactly 5 units from the origin, at ANY angle. That's a circle! โœ”
โ€” \(r = 5\sin\theta\) is a circle shifted up
โ€” \(\theta = 5\) is a straight ray (line through origin)
โ€” \(r = 5\cos\theta + 5\) is a cardioid-like shape
Simple rule: "\(r = \text{const}\) = CIRCLE centered at origin" ๐Ÿ”ต
๐Ÿ“
TRIGONOMETRY
Unit 4 ยท Problems 15โ€“18
SOH-CAH-TOA sin=Opp/Hyp, cos=Adj/Hyp, tan=Opp/Adj
ALL STUDENTS TAKE CALCULUS Q1:All+, Q2:Sin+, Q3:Tan+, Q4:Cos+
PYTHAGOREAN ID \(\sin^2\theta + \cos^2\theta = 1\)
DOUBLE ANGLE \(\sin2\theta = 2\sin\theta\cos\theta\)
If \(\sin\theta = \frac{3}{5}\) and \(\theta\) is in Q1, find \(\cos\theta\):
Step 1: \(\cos^2\theta = 1 - \sin^2\theta = 1 - \frac{9}{25} = \frac{16}{25}\)
Step 2: \(\cos\theta = \frac{4}{5}\) (positive in Q1) โœ”
15
TRIG โ€” Exact Values
What is the exact value of \(\tan\!\left(\dfrac{2\pi}{3}\right)\)?
๐Ÿ’ก \(\frac{2\pi}{3} = 120ยฐ\) โ€” reference angle is \(60ยฐ\), located in Q2!
๐Ÿ’ก EXPLANATION
Reference angle = 60ยฐ, \(\tan60ยฐ = \sqrt{3}\)
In Q2: sine is +, cosine is โˆ’, so tangent is negative.
\(\tan\!\frac{2\pi}{3} = -\sqrt{3}\) โœ”
"All Students Take Calculus" โ€” In Q2, only Sin is positive, so Tan is negative! ๐ŸŽ“
16
TRIG โ€” Identity
Simplify: \(\dfrac{\sin^2\theta + \cos^2\theta}{\cos\theta}\)
๐Ÿ’ก EXPLANATION
\(\sin^2\theta + \cos^2\theta = 1\) (Pythagorean identity!)
So the expression becomes: \(\dfrac{1}{\cos\theta} = \sec\theta\) โœ”
Step 1 always: Look for \(\sin^2+\cos^2\) โ€” replace it with 1 instantly! ๐Ÿ”ฅ
17
TRIG โ€” Equation Solving
Solve for \(\theta\) in \([0, 2\pi)\): \(2\sin\theta - \sqrt{3} = 0\)
๐Ÿ’ก Isolate \(\sin\theta\), find reference angle, then check which quadrants have positive sine!
๐Ÿ’ก EXPLANATION
\(2\sin\theta = \sqrt{3} \Rightarrow \sin\theta = \dfrac{\sqrt{3}}{2}\)
Reference angle: \(\sin^{-1}\!\frac{\sqrt{3}}{2} = \frac{\pi}{3}\)
Sine is positive in Q1 and Q2: \(\theta = \frac{\pi}{3}\) and \(\pi - \frac{\pi}{3} = \frac{2\pi}{3}\) โœ”
Always find 2 answers when solving trig equations! (unless restricted) ๐Ÿ“
18
TRIG โ€” Double Angle
If \(\sin\theta = \dfrac{1}{3}\) and \(\theta\) is in Q1, find \(\sin(2\theta)\).
๐Ÿ’ก Use \(\sin2\theta = 2\sin\theta\cos\theta\). You need to find \(\cos\theta\) first!
๐Ÿ’ก EXPLANATION
\(\cos\theta = \sqrt{1-\frac{1}{9}} = \sqrt{\frac{8}{9}} = \frac{2\sqrt{2}}{3}\) (Q1: positive)
\(\sin2\theta = 2 \cdot \frac{1}{3} \cdot \frac{2\sqrt{2}}{3} = \frac{4\sqrt{2}}{9}\) โœ”
Two-step process: Find missing trig value โ†’ Apply double angle formula ๐Ÿ”
๐Ÿ”—
MIXED โ€” Connections
Unit 5 ยท Problems 19โ€“20
These final problems connect multiple topics. Think carefully about which tool to use! ๐Ÿ› ๏ธ
19
MIXED โ€” Vectors + Trig
A force vector \(\vec{F}\) has magnitude \(20\) N and makes an angle of \(150ยฐ\) with the positive x-axis. What is the x-component of \(\vec{F}\)?
๐Ÿ’ก Use components: \(F_x = |\vec{F}|\cos\theta\). Remember: \(150ยฐ = 180ยฐ - 30ยฐ\) is in Q2!
๐Ÿ’ก EXPLANATION
\(F_x = 20\cos150ยฐ = 20 \cdot (-\frac{\sqrt{3}}{2}) = -10\sqrt{3}\) N โœ”
In Q2: cosine is NEGATIVE, so the x-component is negative (pointing left).
Always check the sign! A negative x-component means the force points leftward. ๐ŸŽฏ
20
MIXED โ€” Polar + Matrix
A rotation matrix is given by \(R = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}\). If you rotate the point \((1, 0)\) by \(\theta = 90ยฐ\), what is the new point?
๐Ÿ’ก Multiply the matrix by the column vector \(\begin{pmatrix}1\\0\end{pmatrix}\). What are \(\cos90ยฐ\) and \(\sin90ยฐ\)?
๐Ÿ’ก EXPLANATION
\(\cos90ยฐ = 0,\; \sin90ยฐ = 1\)
\(R = \begin{pmatrix}0 & -1\\1 & 0\end{pmatrix}\)
\(R\begin{pmatrix}1\\0\end{pmatrix} = \begin{pmatrix}0\cdot1+(-1)\cdot0\\1\cdot1+0\cdot0\end{pmatrix} = \begin{pmatrix}0\\1\end{pmatrix}\) โœ”
Rotating the x-axis point 90ยฐ gives the y-axis point โ€” beautiful geometry! ๐ŸŒŸ
๐Ÿ“Š Score Board
0 / 20
Answer questions to see your score!