1. State the problem: Create a quiz with matrix problems suitable for grade 10 students.
2. Problem 1: Find the sum of matrices $$A = \begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}$$ and $$B = \begin{bmatrix}5 & 6 \\ 7 & 8\end{bmatrix}$$.
3. Solution 1: Add corresponding elements:
$$A + B = \begin{bmatrix}1+5 & 2+6 \\ 3+7 & 4+8\end{bmatrix} = \begin{bmatrix}6 & 8 \\ 10 & 12\end{bmatrix}$$
4. Problem 2: Multiply matrix $$C = \begin{bmatrix}2 & 0 \\ 1 & 3\end{bmatrix}$$ by scalar 4.
5. Solution 2: Multiply each element by 4:
$$4C = \begin{bmatrix}4 \times 2 & 4 \times 0 \\ 4 \times 1 & 4 \times 3\end{bmatrix} = \begin{bmatrix}8 & 0 \\ 4 & 12\end{bmatrix}$$
6. Problem 3: Find the product of matrices $$D = \begin{bmatrix}1 & 2 \\ 3 & 4\end{bmatrix}$$ and $$E = \begin{bmatrix}2 & 0 \\ 1 & 3\end{bmatrix}$$.
7. Solution 3: Multiply matrices using row by column multiplication:
$$DE = \begin{bmatrix}1 \times 2 + 2 \times 1 & 1 \times 0 + 2 \times 3 \\ 3 \times 2 + 4 \times 1 & 3 \times 0 + 4 \times 3\end{bmatrix} = \begin{bmatrix}4 & 6 \\ 10 & 12\end{bmatrix}$$
8. Problem 4: Find the transpose of matrix $$F = \begin{bmatrix}1 & 2 & 3 \\ 4 & 5 & 6\end{bmatrix}$$.
9. Solution 4: Swap rows and columns:
$$F^T = \begin{bmatrix}1 & 4 \\ 2 & 5 \\ 3 & 6\end{bmatrix}$$
10. Problem 5: Determine if matrix $$G = \begin{bmatrix}1 & 2 \\ 2 & 4\end{bmatrix}$$ is invertible.
11. Solution 5: Calculate determinant:
$$\det(G) = 1 \times 4 - 2 \times 2 = 4 - 4 = 0$$
Since determinant is zero, matrix $$G$$ is not invertible.
These problems cover addition, scalar multiplication, matrix multiplication, transpose, and invertibility concepts suitable for grade 10.
Matrices Quiz
Step-by-step solutions with LaTeX - clean, fast, and student-friendly.