🎓 Prepared by students from Boğaziçi University

What is a Matrix?

A matrix is a rectangular array of numbers arranged in rows and columns, used to organize data and solve systems of equations. Matrices can be added, multiplied, and inverted following specific rules.

Short answer

A matrix is a grid of numbers with m rows and n columns (an m×n matrix). For a 2×2 matrix, the determinant det(A) = ad − bc tells you whether the matrix can be inverted.

Matrix Addition vs Matrix Multiplication
Matrix Addition
  • Add corresponding entries
  • Matrices must be the same size
  • Result has the same dimensions
  • Commutative: A + B = B + A
Matrix Multiplication
  • Multiply rows by columns
  • Columns of A must match rows of B
  • Result size = rows(A) × cols(B)
  • Not commutative: AB ≠ BA in general
01

Try it: interactive calculator

Determinant det(A)
-2
= 4*1 - 3*2
02

Step-by-step worked examples

Find the determinant of [[4,3],[2,1]].

a=4, b=3, c=2, d=1
det = ad − bc = 4×1 − 3×2
det = 4 − 6 = −2

Add matrices [[1,2],[3,4]] and [[5,6],[7,8]].

Add corresponding entries
[[1+5,2+6],[3+7,4+8]]
= [[6,8],[10,12]]

Multiply [[1,2]] (1×2) by [[3],[4]] (2×1).

Multiply row by column: 1×3 + 2×4
= 3 + 8
= 11 (a 1×1 matrix)
03

Flashcards

04

Quick quiz

Q1.What is the determinant of [[2,5],[1,3]]?

Correct answer: A. det = 2×3 − 5×1 = 6 − 5 = 1.

Q2.A 2×3 matrix has how many entries?

Correct answer: B. 2 rows × 3 columns = 6 entries.

Q3.Can a 2×3 matrix be multiplied by a 3×4 matrix?

Correct answer: B. Inner dimensions match (3=3); the result is rows(A)×cols(B) = 2×4.

Q4.If det(A) = 0, the matrix is...

Correct answer: C. A zero determinant means the matrix has no inverse.
📄Download this topic as a printable worksheet (PDF)Summary + 10 questions + answer key — print it, share it in class.
Study better with Bounlu apps
Notek
Notek

The full card deck, worked steps and AI-tutor support for “What is a Matrix?” are in Notek — study by hand before your exam.

Get it free
Notek 1Notek 2Notek 3Notek 4Notek 5
05

Common mistakes

Adding matrices of different sizes.Correct: Matrices can only be added if they have exactly the same dimensions.

Assuming AB = BA always.Correct: Matrix multiplication is generally not commutative — order matters.

Multiplying matrices entry-by-entry like addition.Correct: Matrix multiplication uses row-by-column dot products, not entry-wise multiplication.

Forgetting to check dimension compatibility before multiplying.Correct: Columns of the first matrix must equal rows of the second, or the multiplication is undefined.

06

FAQ

What is a matrix in math?

A rectangular grid of numbers arranged in rows and columns, used to represent linear systems and transformations.

What is the formula for a 2×2 determinant?

det(A) = ad − bc, using the entries of the matrix [[a,b],[c,d]].

What are examples of matrices?

A 2×2 identity matrix [[1,0],[0,1]] or a data table like [[85,90],[78,88]] of student scores.

How do you calculate matrix multiplication?

Multiply each row of the first matrix by each column of the second and sum the products.

Related topics