Topic 1: Matrix Operations
Key Concepts: Matrix addition/subtraction (element-wise), scalar multiplication, matrix multiplication (row × column), transpose, and identity matrix.
Quick Review:
- To add/subtract: matrices must have the same order
- To multiply AB: columns of A = rows of B
- Result order: (rows of A) × (columns of B)
- Transpose: convert rows to columns
Topic 2: Vector Algebra
Key Concepts: Vector magnitude, direction, polar form, unit vectors, parallel vectors (scalar multiple), and perpendicular vectors (dot product = 0).
Essential Formulas:
- Magnitude: \( ||\vec{v}|| = \sqrt{x^2 + y^2} \)
- Unit vector: \( \hat{v} = \frac{\vec{v}}{||\vec{v}||} \)
- Parallel: \( \vec{A} = k \cdot \vec{B} \) or \( \frac{x_1}{x_2} = \frac{y_1}{y_2} \)
- Perpendicular: \( \vec{A} \cdot \vec{B} = x_1x_2 + y_1y_2 = 0 \)
Topic 3: Trigonometry
Key Concepts: Trigonometric identities, solving equations, general solutions, and special angles.
Important Identities:
- \( \sin^2 \theta + \cos^2 \theta = 1 \)
- \( 1 + \tan^2 \theta = \sec^2 \theta \)
- \( 1 + \cot^2 \theta = \csc^2 \theta \)
- Special angles: \( \sin 30^\circ = \frac{1}{2} \), \( \cos 45^\circ = \frac{\sqrt{2}}{2} \), \( \tan 60^\circ = \sqrt{3} \)
Detailed Study Guide
01 Mastering Matrix Multiplication
Step-by-Step Multiplication
To multiply two matrices, the element in row i, column j of the product is the dot product of row i of the first matrix and column j of the second matrix.
Example: \( \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} \times \begin{pmatrix} 5 & 6 \\ 7 & 8 \end{pmatrix} \)
Top-left: \( (1)(5) + (2)(7) = 5 + 14 = 19 \)
Top-right: \( (1)(6) + (2)(8) = 6 + 16 = 22 \)
Bottom-left: \( (3)(5) + (4)(7) = 15 + 28 = 43 \)
Bottom-right: \( (3)(6) + (4)(8) = 18 + 32 = 50 \)
Result: \( \begin{pmatrix} 19 & 22 \\ 43 & 50 \end{pmatrix} \)
Matrix multiplication is NOT commutative! \( AB \neq BA \) in general. Always check if the product is defined first.
02 Vector Relationships Explained
Parallel vs Perpendicular
Parallel vectors point in the same or opposite direction. One is a scalar multiple of the other.
Check: \( \frac{x_1}{x_2} = \frac{y_1}{y_2} \) or find k such that \( (x_1, y_1) = k(x_2, y_2) \).
Perpendicular vectors meet at 90°. Their dot product equals zero.
Check: \( x_1x_2 + y_1y_2 = 0 \).
Example: Finding Parallel Vectors
Given \( \vec{A} = (4, 6) \) and \( \vec{B} = (2, m) \) are parallel.
\( \frac{4}{2} = \frac{6}{m} \Rightarrow 2 = \frac{6}{m} \Rightarrow m = 3 \).
Or: \( (4, 6) = k(2, m) \Rightarrow 4 = 2k \Rightarrow k = 2 \), so \( 6 = 2m \Rightarrow m = 3 \).
For perpendicular vectors, if \( \vec{A} = (a, b) \), then a perpendicular vector can be \( (-b, a) \) or \( (b, -a) \).
03 Trigonometric Identities & Equations
Proving Identities Strategy
1. Start with the more complex side.
2. Convert everything to sine and cosine if needed.
3. Use fundamental identities: \( \sin^2 + \cos^2 = 1 \), \( \tan = \frac{\sin}{\cos} \), etc.
4. Factor or combine fractions as needed.
5. Simplify to match the other side.
Solving Trig Equations
For \( \sin \theta = \frac{1}{2} \) in \( [0, 2\pi) \):
Reference angle: \( \frac{\pi}{6} \) (30°)
Sine is positive in Q1 and Q2.
Solutions: \( \theta = \frac{\pi}{6} \) or \( \theta = \pi - \frac{\pi}{6} = \frac{5\pi}{6} \).
General solution: \( \theta = \frac{\pi}{6} + 2n\pi \) or \( \theta = \frac{5\pi}{6} + 2n\pi \).
ASTC rule: All Students Take Calculus - tells you which trig functions are positive in each quadrant (I: All, II: Sin, III: Tan, IV: Cos).