← Back to all lessons
Class 12Algebra18:32Published 23 May 2024

Matrices MCQ Questions Part I

A Class XII multiple-choice walkthrough of matrix basics, covering order and number of elements, the general form of a matrix, and the main special matrix types.

This lesson works through a set of quick MCQ questions on matrices for Class XII. It revises how the order of a matrix is written, how to count and factor its elements, and how to write a matrix in general index form. It then runs through the special matrices: row, column, square, diagonal, scalar, identity, zero, and the negative of a matrix, finishing with additive identity and the order rule for adding and subtracting matrices.

What you'll learn

  • How the order of a matrix is written and how it gives the number of elements
  • How to list the possible orders of a matrix from its number of elements
  • Writing a matrix in general form using row and column indices
  • Recognising row, column, square, diagonal, scalar, identity and zero matrices

Lesson chapters

0:00What a matrix is and its order
1:54Number of elements and possible orders
3:30General form of a matrix by index
9:26Row, column and square matrices
11:22Diagonal, scalar and identity matrices
16:09Zero matrix, negatives and adding matrices

Lesson notes

This lesson is a set of multiple-choice questions on matrices for Class XII. It revises the order of a matrix and its number of elements, the general form written with indices, and each of the standard special matrices.

Order and number of elements

A matrix is a rectangular array of elements arranged in rows and columns. If a matrix has mm rows and nn columns, its order is m×nm \times n, read as "mm by nn".

The number of elements in such a matrix is the product of the rows and columns:

number of elements=m×n.\text{number of elements} = m \times n.

If a matrix has 1212 elements, its possible orders are every factor pair of 1212:

1×12,2×6,3×4,4×3,6×2,12×1.1 \times 12,\quad 2 \times 6,\quad 3 \times 4,\quad 4 \times 3,\quad 6 \times 2,\quad 12 \times 1.

General form of a matrix

Writing a general element as aija_{ij} (row ii, column jj), a matrix of order m×nm \times n has the form

A=[a11a12a1na21a22a2nam1am2amn].A = \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix}.

Small cases. A 1×11 \times 1 matrix is [a11]\begin{bmatrix} a_{11} \end{bmatrix}; a 1×21 \times 2 matrix is [a11a12]\begin{bmatrix} a_{11} & a_{12} \end{bmatrix}; a 2×22 \times 2 matrix is

[a11a12a21a22].\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{bmatrix}.

A 2×32 \times 3 matrix and a 3×23 \times 2 matrix are

[a11a12a13a21a22a23],[a11a12a21a22a31a32],\begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \end{bmatrix}, \qquad \begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ a_{31} & a_{32} \end{bmatrix},

and a 3×33 \times 3 matrix is

[a11a12a13a21a22a23a31a32a33].\begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix}.

Row, column and square matrices

A matrix with a single row is a row matrix, for example [123]\begin{bmatrix} 1 & 2 & 3 \end{bmatrix}.

A matrix with a single column is a column matrix, for example

[123],\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix},

which has order 3×13 \times 1.

A matrix whose number of rows equals its number of columns is a square matrix.

Diagonal, scalar and identity matrices

In a diagonal matrix, every non-diagonal element is 00, for example

[1002],[100030004].\begin{bmatrix} 1 & 0 \\ 0 & 2 \end{bmatrix}, \qquad \begin{bmatrix} 1 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 4 \end{bmatrix}.

A scalar matrix is a diagonal matrix whose diagonal elements are all equal, for example

[200020002].\begin{bmatrix} 2 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 2 \end{bmatrix}.

An identity matrix is a diagonal matrix whose diagonal elements are all 11:

I1=[1],I2=[1001],I3=[100010001].I_1 = \begin{bmatrix} 1 \end{bmatrix}, \qquad I_2 = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}, \qquad I_3 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}.

Zero matrix, negative of a matrix, and addition

In a zero matrix, every element is 00, for example [000]\begin{bmatrix} 0 & 0 & 0 \end{bmatrix}. The zero matrix is denoted OO, and it is the additive identity for matrices.

The negative A-A of a matrix AA is obtained by changing the sign of every element. For

A=[120104],A=[120104].A = \begin{bmatrix} 1 & 2 \\ 0 & -1 \\ 0 & 4 \end{bmatrix}, \qquad -A = \begin{bmatrix} -1 & -2 \\ 0 & 1 \\ 0 & -4 \end{bmatrix}.

To add or subtract two matrices, their orders must be equal.

Key takeaways

  • A matrix of order m×nm \times n has m×nm \times n elements, and each factor pair of that count gives a possible order.
  • The general element aija_{ij} sits in row ii and column jj, which fixes the general form of any matrix.
  • Diagonal, scalar and identity matrices are special square matrices; the zero matrix is the additive identity, and addition requires matrices of equal order.