Matrix Questions Examples for Exam Practice

RAVI BILOCHI | 2025-01-30 10:30:00+00:00

Matrix Questions Examples for Exam Practice

Matrices are an important part of algebra and are widely used in various fields such as physics, engineering, economics, and computer science. They are fundamental in solving linear equations, performing transformations, and handling data efficiently. Whether you are preparing for high school, college exams, or competitive tests, having a strong understanding of matrices will give you an advantage in problem-solving.

This guide simplifies matrices. It covers key concepts, important formulas, and step-by-step solutions to commonly asked matrix questions, helping you build confidence and master this topic.

What is a Matrix?

A matrix is a rectangular array of numbers arranged in rows and columns. The numbers inside the matrix are called elements. The size of a matrix is called its order and is written as m × n, where:

  • m is the number of rows

  • n is the number of columns

Matrices are used in various mathematical computations, solving equations, transformations in geometry, and even in real-world applications like cryptography and data science. Understanding matrices will help in exams and in advanced problem-solving.

Example:

A matrix AA is given as:

A=[25−3401]A = \begin{bmatrix} 2 & 5 & -3 \\ 4 & 0 & 1 \end{bmatrix}

Here, the matrix has 2 rows and 3 columns, so its order is 2 × 3.

Types of Matrices

Matrices are categorized into different types based on their structure and properties. Understanding these types will help you recognize and solve problems efficiently.

Row and Column Matrices

  • Row Matrix: A matrix with only one row and multiple columns. It has dimensions 1×n.

                                      A=[a1​​a2​​…​an​​]

  • Column Matrix: A matrix with only one column and multiple rows. It has dimensions m×1.

                           B=​b1​b2​⋮bm​​

Square and Rectangular Matrices

  • Square Matrix: A matrix where the number of rows equals the number of columns (n×n).

                           C=[c11​c21​​c12​c22​​]

  • Rectangular Matrix: A matrix with different numbers of rows and columns (m×n,m≠n).

                              D=[d11​d21​​d12​d22​​d13​d23​​]

Diagonal Matrix

A square matrix where all elements except the diagonal are zero. It is written as aij=0a_{ij} = 0 for i≠j.

                                          E=​e11​00​0e22​0​00e33​​​

Scalar and Identity Matrices

  • Scalar Matrix: A diagonal matrix where all diagonal elements are equal. 

                                F=kI=​k00​0k0​00k​​

  • Identity Matrix: A square matrix with all diagonal elements as 1, and others as 0. 

                                I=​100​010​001​​

Zero (Null) Matrix

  • A matrix where all elements are zero, regardless of their size. 

                                             Z=[00​00​]

Upper and Lower Triangular Matrices

  • Upper Triangular Matrix: A square matrix where all elements below the main diagonal are zero (aij=0a_{ij} = 0 for i>j)

                                                U=​u11​00​u12​u22​0​u13​u23​u33​​​

  • Lower Triangular Matrix: A square matrix where all elements above the main diagonal are zero (aij=0a_{ij} = 0 for i<j)

                                       L=​l11​l21​l31​​0l22​l32​​00l33​​​

Symmetric and Skew-Symmetric Matrices

  • Symmetric Matrix: A square matrix where the transpose equals the original matrix (AT=A)

                                          S=​s11​s12​s13​​s12​s22​s23​​s13​s23​s33​​​

  • Skew-Symmetric Matrix: A square matrix where the transpose is the negative of the original matrix (AT=−A)

                                            K=​0k12​k13​​−k12​0k23​​−k13​−k23​0​​

Orthogonal Matrix

  • A square matrix where its transpose is also its inverse, meaning ATA=I)

                                              ATA=I

Singular and Non-Singular Matrices

  • Singular Matrix: A square matrix with a determinant of zero (det⁡(A)=0\det(A) = 0), meaning it cannot be inverted.

  • Non-Singular Matrix: A square matrix with a nonzero determinant (det⁡(A)≠0\det(A) \neq 0), meaning it has an inverse.

Hermitian and Skew-Hermitian Matrices (for Complex Numbers)

  • Hermitian Matrix: A square matrix where the conjugate transpose is equal to the original matrix (AH=A)

                                           H=​h11​h12∗​h13∗​​h12​h22​h23∗​​h13​h23​h33​​​

  • Skew-Hermitian Matrix: A square matrix where the conjugate transpose is the negative of the original matrix (AH=−A)

                                            K=​0k12​k13​​−k12∗​0k23​​−k13∗​−k23∗​0​​

Matrix Addition and Subtraction

Concept:

  • Matrices can only be added or subtracted if they have the same order.

  • Each element is added or subtracted from the corresponding position in the other matrix.

  • Matrix addition is commutative and associative.

Formula:

(A+B)ij=Aij+Bij(A + B)_{ij} = A_{ij} + B_{ij} (A−B)ij=Aij−Bij(A - B)_{ij} = A_{ij} - B_{ij}

Example 1: Given matrices A=[3214]A = \begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix}A=[31​24​] and B=[5321]B = \begin{bmatrix} 5 & 3 \\ 2 & 1 \end{bmatrix}B=[52​31​], calculate A+BA + BA+B.
 

Answer: A+B=[3+52+31+24+1]=[8535]A + B = \begin{bmatrix} 3+5 & 2+3 \\ 1+2 & 4+1 \end{bmatrix} = \begin{bmatrix} 8 & 5 \\ 3 & 5 \end{bmatrix}A+B=[3+51+2​2+34+1​]=[83​55​]

Example 2: Given A=[1723]A = \begin{bmatrix} 1 & 7 \\ 2 & 3 \end{bmatrix}A=[12​73​] and C=[4615]C = \begin{bmatrix} 4 & 6 \\ 1 & 5 \end{bmatrix}C=[41​65​], find A−CA - CA−C.

Answer: A−C=[1−47−62−13−5]=[−311−2]A - C = \begin{bmatrix} 1-4 & 7-6 \\ 2-1 & 3-5 \end{bmatrix} = \begin{bmatrix} -3 & 1 \\ 1 & -2 \end{bmatrix}A−C=[1−42−1​7−63−5​]=[−31​1−2​]

Matrix Multiplication

Concept:

  • Matrices can be multiplied if the number of columns in the first matrix equals the number of rows in the second matrix.

  • The result is a matrix where each element is obtained by multiplying and summing the corresponding row elements with column elements.

  • Matrix multiplication is not commutative, meaning AB≠BAAB \neq BA in general.

Formula:

Cij=∑k=1nAikBkjC_{ij} = \sum_{k=1}^{n} A_{ik} B_{kj}

Example: Find ABAB if:

A=[1234],B=[2013]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}, \quad B = \begin{bmatrix} 2 & 0 \\ 1 & 3 \end{bmatrix}

Solution: AB=[(1×2+2×1)(1×0+2×3)(3×2+4×1)(3×0+4×3)]AB = \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} =[461012]= \begin{bmatrix} 4 & 6 \\ 10 & 12 \end{bmatrix}

Determinants and Inverses

Determinant of a Matrix

  • Only square matrices have determinants.

  • The determinant of a 2 × 2 matrix is found using:

∣A∣=ad−bc|A| = a d - b c

Example: Find the determinant of AA:

A=[3425]A = \begin{bmatrix} 3 & 4 \\ 2 & 5 \end{bmatrix}

Solution: ∣A∣=(3×5)−(4×2)=15−8=7|A| = (3 \times 5) - (4 \times 2) = 15 - 8 = 7

Inverse of a Matrix

The inverse of a 2 × 2 matrix is given by:

A−1=1∣A∣[d−b−ca]A^{-1} = \frac{1}{|A|} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}

Example: Find A−1A^{-1} if: A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}

Solution: ∣A∣=(1×4)−(2×3)=−2|A| = (1 \times 4) - (2 \times 3) = -2 A−1=1−2[4−2−31]=[−211.5−0.5]A^{-1} = \frac{1}{-2} \begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix} = \begin{bmatrix} -2 & 1 \\ 1.5 & -0.5 \end{bmatrix}

Solving Systems of Equations Using Matrices

Concept:

  • A system of equations can be written in matrix form as AX = B.

  • If A−1A^{-1} exists, then the solution is X=A−1BX = A^{-1} B.

Example:

Solve the system:

2x+3y=82x + 3y = 8 5x+7y=195x + 7y = 19

Find A−1A^{-1}, multiply both sides by A−1A^{-1}, and solve for xx and yy.

Eigenvalues and Eigenvectors

Eigenvalues and eigenvectors are crucial in matrix analysis and many applications, like principal component analysis (PCA). The eigenvalue equation is Av=λvA \mathbf{v} = \lambda \mathbf{v}Av=λv, where λ\lambdaλ is the eigenvalue and v\mathbf{v}v is the eigenvector.
 

Example: Given A=[4123]A = \begin{bmatrix} 4 & 1 \\ 2 & 3 \end{bmatrix}A=[42​13​], find the eigenvalues.
 

Answer: Solve the characteristic equation:

det(A−λI)=0\text{det}(A - \lambda I) = 0det(A−λI)=0 ∣4−λ123−λ∣=(4−λ)(3−λ)−2(1)=0\begin{vmatrix} 4-\lambda & 1 \\ 2 & 3-\lambda \end{vmatrix} = (4-\lambda)(3-\lambda) - 2(1) = 0​4−λ2​13−λ​​=(4−λ)(3−λ)−2(1)=0 λ2−7λ+10=0\lambda^2 - 7\lambda + 10 = 0λ2−7λ+10=0

Solving the quadratic equation,

λ1=5,λ2=2\lambda_1 = 5, \quad \lambda_2 = 2λ1​=5,λ2​=2

Conclusion

To sum it up, matrices are super useful in both exams and real-life situations. By understanding the basics like types of matrices, how to add, subtract, and multiply them, and finding things like determinants, you'll be ready to tackle any matrix question that comes your way. The more you practice, the easier it gets! So, keep going, and don’t stress, matrices will become a lot simpler as you work through more problems. Good luck, and keep practicing!

MATRIX QUESTIONS

MATRIX QUESTIONS EXAMPLES

REQUEST A
DEMO

REQUEST