🏠 Home
Math Egypt Logo

Math Egypt

Mr. Ayman Hassan بوابتك للتميز في الرياضيات

Mathematics Quiz - Term 2

Quiz 1: Comprehensive Assessment

Sec 1

Welcome to Quiz 1

This comprehensive quiz covers essential topics from Term 2, including matrix operations (addition, subtraction, multiplication, transpose), vector algebra (magnitude, direction, parallel and perpendicular vectors, unit vectors), and fundamental trigonometry (identities, equations, and special angles).

📚 Quiz Topics & Review

🔢

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} \)

Common Mistake Alert

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 \).

Pro Tip

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 \).

Memory Aid

ASTC rule: All Students Take Calculus - tells you which trig functions are positive in each quadrant (I: All, II: Sin, III: Tan, IV: Cos).

Sec 1 Math Quiz Practice Questions

This quiz helps Grade 10 students review matrices, vectors and trigonometry. Practice these problems before starting the full quiz.

📝 Sample Quiz Questions with Detailed Solutions

🔢 Matrix Operations

1If \( A = \begin{pmatrix}1 & 2 \\ 3 & 4\end{pmatrix} \) and \( B = \begin{pmatrix}2 & 0 \\ 1 & 3\end{pmatrix} \), find AB.

Solution

1Multiply row 1 of A by column 1 of B: \( (1)(2) + (2)(1) = 2 + 2 = 4 \)

2Multiply row 1 of A by column 2 of B: \( (1)(0) + (2)(3) = 0 + 6 = 6 \)

3Multiply row 2 of A by column 1 of B: \( (3)(2) + (4)(1) = 6 + 4 = 10 \)

4Multiply row 2 of A by column 2 of B: \( (3)(0) + (4)(3) = 0 + 12 = 12 \)

Answer: \( AB = \begin{pmatrix} 4 & 6 \\ 10 & 12 \end{pmatrix} \)

2If \( X = \begin{pmatrix} 3 & 4 \\ 5 & 2 \end{pmatrix} \), \( Y = \begin{pmatrix} 1 & 1 \\ 0 & -1 \end{pmatrix} \), find the matrix \( X + Y + 2I \).

Solution

1First, add X and Y element-wise: \( X + Y = \begin{pmatrix} 3+1 & 4+1 \\ 5+0 & 2+(-1) \end{pmatrix} = \begin{pmatrix} 4 & 5 \\ 5 & 1 \end{pmatrix} \)

2Identity matrix \( I = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} \), so \( 2I = \begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix} \)

3Add \( 2I \) to the result: \( \begin{pmatrix} 4+2 & 5+0 \\ 5+0 & 1+2 \end{pmatrix} = \begin{pmatrix} 6 & 5 \\ 5 & 3 \end{pmatrix} \)

Answer: \( \begin{pmatrix} 6 & 5 \\ 5 & 3 \end{pmatrix} \)

3If matrix A of order \( 2 \times 3 \) and matrix B of order \( 3 \times 4 \), find the order of matrix AB.

Solution

1For matrix multiplication AB, the number of columns in A must equal the number of rows in B.

2A is \( 2 \times 3 \) (2 rows, 3 columns), B is \( 3 \times 4 \) (3 rows, 4 columns).

3Inner dimensions match: 3 = 3 ✓

4Result order = (rows of A) × (columns of B) = \( 2 \times 4 \)

Answer: \( 2 \times 4 \)

📐 Vector Algebra

4If \( \vec{A} = (2,3) \) and \( \vec{B} = (6,m) \), find m if the vectors are perpendicular.

Solution

1For perpendicular vectors, the dot product equals zero: \( \vec{A} \cdot \vec{B} = 0 \)

2Calculate dot product: \( (2)(6) + (3)(m) = 0 \)

3Simplify: \( 12 + 3m = 0 \)

4Solve for m: \( 3m = -12 \Rightarrow m = -4 \)

Answer: \( m = -4 \)

5If \( \vec{A} = (1, 3) \), \( \vec{B} = (m, 12) \), find m when \( \vec{A} \parallel \vec{B} \).

Solution

1For parallel vectors, one is a scalar multiple of the other: \( \vec{B} = k \cdot \vec{A} \)

2From y-components: \( 12 = 3k \Rightarrow k = 4 \)

3From x-components: \( m = 1 \cdot k = 4 \)

4Alternative method using ratios: \( \frac{m}{1} = \frac{12}{3} = 4 \Rightarrow m = 4 \)

Answer: \( m = 4 \)

6If \( \vec{OA} = (6, -8) \), find \( ||\vec{OA}|| \).

Solution

1Use the magnitude formula: \( ||\vec{v}|| = \sqrt{x^2 + y^2} \)

2Substitute values: \( ||\vec{OA}|| = \sqrt{6^2 + (-8)^2} \)

3Calculate: \( \sqrt{36 + 64} = \sqrt{100} \)

Answer: \( 10 \)

7Express using fundamental unit vectors a displacement of magnitude 20 cm in the direction Western North.

Solution

1Western North = 45° North of West = \( 180° - 45° = 135° \) from positive x-axis

2Use formula: \( \vec{v} = |\vec{v}|(\cos\theta \vec{i} + \sin\theta \vec{j}) \)

3\( \cos 135° = -\frac{\sqrt{2}}{2} \), \( \sin 135° = \frac{\sqrt{2}}{2} \)

4\( \vec{v} = 20(-\frac{\sqrt{2}}{2} \vec{i} + \frac{\sqrt{2}}{2} \vec{j}) = -10\sqrt{2} \vec{i} + 10\sqrt{2} \vec{j} \)

Answer: \( -10\sqrt{2} \vec{i} + 10\sqrt{2} \vec{j} \) cm

📏 Trigonometry

8Solve \( \sin \theta = \frac{1}{2} \) for \( 0 \le \theta < 2\pi \).

Solution

1Reference angle: \( \sin^{-1}(\frac{1}{2}) = \frac{\pi}{6} \) (30°)

2Sine is positive in Quadrant I and Quadrant II

3Q1 solution: \( \theta = \frac{\pi}{6} \)

4Q2 solution: \( \theta = \pi - \frac{\pi}{6} = \frac{5\pi}{6} \)

Answer: \( \theta = \frac{\pi}{6} \) or \( \frac{5\pi}{6} \)

9Find the general solution of the equation \( 2 \sin \theta - 1 = 0 \).

Solution

1Rearrange: \( \sin \theta = \frac{1}{2} \)

2Reference angle: \( \frac{\pi}{6} \)

3Sine is positive in Q1 and Q2, so principal solutions are \( \frac{\pi}{6} \) and \( \frac{5\pi}{6} \)

4Add period \( 2n\pi \) for general solution (n is any integer)

Answer: \( \theta = \frac{\pi}{6} + 2n\pi \) or \( \theta = \frac{5\pi}{6} + 2n\pi \), \( n \in \mathbb{Z} \)

10Simplest form: \( \frac{1}{\cos^2 \theta} - \frac{1}{\cot^2 \theta} \).

Solution

1Convert to basic trig functions: \( \frac{1}{\cos^2 \theta} = \sec^2 \theta \), \( \frac{1}{\cot^2 \theta} = \tan^2 \theta \)

2Expression becomes: \( \sec^2 \theta - \tan^2 \theta \)

3Use identity: \( 1 + \tan^2 \theta = \sec^2 \theta \), therefore \( \sec^2 \theta - \tan^2 \theta = 1 \)

Answer: \( 1 \)

11Simplify: \( (\sin \theta + \cos \theta)^2 - 2 \sin \theta \cos \theta \).

Solution

1Expand the square: \( (\sin \theta + \cos \theta)^2 = \sin^2 \theta + 2\sin \theta \cos \theta + \cos^2 \theta \)

2Substitute back: \( \sin^2 \theta + 2\sin \theta \cos \theta + \cos^2 \theta - 2\sin \theta \cos \theta \)

3The \( 2\sin \theta \cos \theta \) terms cancel out

4Use identity: \( \sin^2 \theta + \cos^2 \theta = 1 \)

Answer: \( 1 \)

12Polar form of \( \vec{OA} = (-4, 4) \).

Solution

1Find magnitude: \( r = \sqrt{(-4)^2 + 4^2} = \sqrt{16 + 16} = \sqrt{32} = 4\sqrt{2} \)

2Find reference angle: \( \alpha = \tan^{-1}|\frac{4}{-4}| = \tan^{-1}(1) = 45° \)

3Point (-4, 4) is in Quadrant II (x negative, y positive)

4Q2 angle: \( \theta = 180° - 45° = 135° \) or \( \frac{3\pi}{4} \) radians

Answer: \( (4\sqrt{2}, 135°) \) or \( (4\sqrt{2}, \frac{3\pi}{4}) \)

💡 Study these solutions carefully before attempting the full quiz. Understanding the step-by-step process is key to success!

Ready to test your knowledge?

🎯 Start Quiz Now

Good luck! 🍀

انضموا لقناة التليجرام ليصلكم كل جديد

Telegram Channel | قناة التليجرام
لتحميل نماذج إضافية اضغط هنا