Matrices Made Simple: Order, Types, Operations & Symmetry

A from-scratch guide to Class 12 Matrices — what a matrix is, its order and types, how to add, scale, multiply and transpose them, and how symmetric and skew-symmetric matrices work, with every step shown.

By the PadhoDost Team · 📖 8 min read · Updated 4 August 2026

Part of Class 12 (CBSE) prep

🧠 A matrix is just a smart table

Picture the scoreboard at a gully-cricket match written in a notebook: the rows are the players and the columns are 'runs' and 'balls'. You never read a number alone — its meaning comes from WHERE it sits, that is, which row and which column. A matrix is exactly this: numbers arranged in a rectangular grid of rows and columns, where position carries the information. Padho, dost — once you see a matrix as a well-organised table, the whole chapter turns friendly.

What is a matrix, and what is its 'order'?

A matrix is a rectangular arrangement of numbers in rows (horizontal lines) and columns (vertical lines), written inside square brackets. We name matrices with capital letters like A, B, C. Each number inside is called an element or entry. The size of a matrix is called its ORDER, and it is always written as (number of rows) x (number of columns) — rows first, columns second. Always.

A matrix of order m x n has m rows and n columns, and m x n elements in total. A general element is written a(ij), where i = the row number and j = the column number. So a(23) is the element in row 2, column 3.
⚠️ Common mistake: writing the order as columns x rows. It is ALWAYS rows first. A matrix with 2 rows and 3 columns has order 2 x 3, never 3 x 2. Getting this backwards quietly breaks addition and multiplication later.
Type of matrixConditionExample
Row matrixOnly one row (order 1 x n)[ 2 5 7 ]
Column matrixOnly one column (order m x 1)[3; 8; 1] (written vertically)
Square matrixRows = columns (order n x n)2 x 2, 3 x 3, ...
Diagonal matrixSquare; every non-diagonal element is 0diag(4, 9)
Scalar matrixDiagonal matrix with all diagonal entries equaldiag(5, 5)
Identity matrix (I)Scalar matrix with each diagonal entry = 1diag(1, 1)
Zero / null matrix (O)Every element is 0[0 0; 0 0]

Adding matrices and multiplying by a number

Two matrices can be added ONLY if they have the same order. You simply add the elements sitting in the same position. Multiplying a matrix by an ordinary number k (called a scalar) is even easier: multiply every single element by k. Subtraction A - B just means A + (-1)B.

If A = [a(ij)] and B = [b(ij)] have the same order, then A + B = [a(ij) + b(ij)]. For a scalar k, kA = [k * a(ij)].

📝 Worked example: addition and scalar multiplication

Let A = [1 2 3 ; 4 5 6] and B = [7 8 9 ; 1 2 3], both of order 2 x 3.

Add position by position: A + B = [1+7 2+8 3+9 ; 4+1 5+2 6+3].

So A + B = [8 10 12 ; 5 7 9].

Now find 2A: multiply every element by 2, giving 2A = [2 4 6 ; 8 10 12].

Check the order: A + B and 2A are both still 2 x 3. Scaling and adding never change the order.

Matrix multiplication: the row-times-column rule

This is the part that feels new. The product AB exists only when the number of COLUMNS of A equals the number of ROWS of B. If A is m x n and B is n x p, then AB has order m x p. To find the element in row i, column j of AB, walk along row i of A and column j of B together, multiply the matching numbers, and add them all up.

How to multiply two matrices

  1. 1Check compatibility: columns of A must equal rows of B, otherwise the product is not defined.
  2. 2The answer's order is (rows of A) x (columns of B).
  3. 3For each output position (i, j): take row i of A and column j of B.
  4. 4Multiply first-with-first, second-with-second, and so on, then add all these products.
  5. 5Place that single number in position (i, j). Repeat for every position.

📝 Worked example: PQ, QP, and why order matters

Let P = [1 2 ; 3 4] and Q = [5 6 ; 7 8], both 2 x 2, so PQ is 2 x 2.

Row 1, Col 1: (1)(5) + (2)(7) = 5 + 14 = 19.

Row 1, Col 2: (1)(6) + (2)(8) = 6 + 16 = 22.

Row 2, Col 1: (3)(5) + (4)(7) = 15 + 28 = 43.

Row 2, Col 2: (3)(6) + (4)(8) = 18 + 32 = 50.

So PQ = [19 22 ; 43 50].

Now reverse the order and compute QP: Row 1 gives (5)(1)+(6)(3)=23 and (5)(2)+(6)(4)=34; Row 2 gives (7)(1)+(8)(3)=31 and (7)(2)+(8)(4)=46.

So QP = [23 34 ; 31 46]. Since PQ is NOT equal to QP, matrix multiplication is not commutative.

⚠️ Two big traps in multiplication: (1) AB and BA are usually NOT equal, so never swap the order. (2) AB can be a zero matrix even when neither A nor B is a zero matrix — so AB = O does NOT let you conclude that A = O or B = O.

Transpose, symmetric and skew-symmetric matrices

The transpose of A, written A' (or A^T), is what you get by turning every row into a column. A matrix of order m x n becomes n x m. Using the transpose we define two special square matrices: a matrix is SYMMETRIC if it equals its own transpose (A' = A), and SKEW-SYMMETRIC if its transpose is its own negative (A' = -A). A neat consequence: the diagonal of every skew-symmetric matrix is all zeros, because each diagonal element must equal its own negative.

Transpose rules: (A')' = A, (kA)' = kA', (A + B)' = A' + B', and (AB)' = B'A' (the order reverses!). Symmetric: A' = A. Skew-symmetric: A' = -A, giving a(ij) = -a(ji) and every a(ii) = 0.

📝 Worked example: split any square matrix into symmetric + skew-symmetric

Theorem: every square matrix can be written as A = (1/2)(A + A') + (1/2)(A - A'). The first part is symmetric, the second is skew-symmetric.

Take A = [2 3 ; 5 4]. Its transpose is A' = [2 5 ; 3 4].

Symmetric part S = (1/2)(A + A') = (1/2)[4 8 ; 8 8] = [2 4 ; 4 4]. Check: S' = S, so it is symmetric.

Skew part K = (1/2)(A - A') = (1/2)[0 -2 ; 2 0] = [0 -1 ; 1 0]. Check: the diagonal is zero and K' = -K, so it is skew-symmetric.

Add them back: S + K = [2+0 4+(-1) ; 4+1 4+0] = [2 3 ; 5 4] = A. It works perfectly.

Quick revision checklist

  • Order = rows x columns, always in that order; element a(ij) sits in row i, column j.
  • Add or subtract only when the orders match; a scalar k multiplies every element.
  • The product AB needs columns of A = rows of B; the result is (rows of A) x (columns of B).
  • AB is generally not equal to BA — matrix multiplication is non-commutative.
  • Transpose flips rows and columns; (AB)' = B'A', with the order reversed.
  • Symmetric: A' = A. Skew-symmetric: A' = -A with a zero diagonal.
  • Every square matrix = a symmetric part + a skew-symmetric part.
💡 Exam tip: before multiplying, write the two orders side by side, like (2 x 3)(3 x 4). If the inner numbers match (3 and 3), the product exists, and the outer numbers (2 and 4) give its order. This single habit prevents most matrix-multiplication errors under pressure.

⚡ Quick check

If A is a matrix of order 2 x 3 and B is a matrix of order 3 x 4, what is the order of the product AB?

Ready to test yourself? 🎯

Lock it in with the practice test for this chapter.

Take the practice test →

Keep studying

See all Class 12 (CBSE) study material →