Matrix Definition

Algebra
definition

Also known as: matrix, rectangular array, matrix dimensions, rows and columns

Grade 9-12

View on concept map

A matrix is a rectangular array of numbers arranged in rows (horizontal) and columns (vertical). Matrices are the language of linear algebra, used in computer graphics, machine learning, physics simulations, economics, and solving systems of equations.

This concept is covered in depth in our systems of equations and matrix methods, with worked examples, practice problems, and common mistakes.

Definition

A matrix is a rectangular array of numbers arranged in rows (horizontal) and columns (vertical). An m \times n matrix has m rows and n columns. Each number in the matrix is called an entry or element, identified by its row and column position.

πŸ’‘ Intuition

Think of a spreadsheet: rows go across, columns go down, and every cell holds a number. A 2 \times 3 matrix is like a mini-spreadsheet with 2 rows and 3 columns. Matrices package multiple numbers into a single organized object so you can manipulate them all at once.

🎯 Core Idea

Matrices organize data into a grid structure that enables powerful operations on entire systems of numbers simultaneously.

Example

A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix} is a 2 \times 3 matrix. Entry a_{1,2} = 2 (row 1, column 2).

Formula

A = [a_{ij}]_{m \times n} where 1 \leq i \leq m and 1 \leq j \leq n

Notation

Matrices are denoted by capital letters (A, B, C). Entry in row i, column j is written a_{ij}. Dimensions are written m \times n (rows \times columns).

🌟 Why It Matters

Matrices are the language of linear algebra, used in computer graphics, machine learning, physics simulations, economics, and solving systems of equations. Nearly every field that uses math relies on matrices.

πŸ’­ Hint When Stuck

Count rows first (horizontal lines), then columns (vertical lines). Write the dimensions as rows x columns.

Formal View

A matrix A \in \mathbb{R}^{m \times n} is a function A: \{1,\ldots,m\} \times \{1,\ldots,n\} \to \mathbb{R}, written as a rectangular array [a_{ij}] where a_{ij} = A(i,j). The set \mathbb{R}^{m \times n} forms a vector space of dimension mn.

🚧 Common Stuck Point

Dimensions are always rows \times columns, never the reverse. A 3 \times 2 matrix has 3 rows and 2 columns, not 2 rows and 3 columns.

⚠️ Common Mistakes

  • Confusing rows and columnsβ€”rows are horizontal, columns are vertical
  • Writing dimensions as columns \times rows instead of rows \times columns
  • Mixing up a_{ij} indexingβ€”first index is always the row, second is the column

Frequently Asked Questions

What is Matrix Definition in Math?

A matrix is a rectangular array of numbers arranged in rows (horizontal) and columns (vertical). An m \times n matrix has m rows and n columns. Each number in the matrix is called an entry or element, identified by its row and column position.

Why is Matrix Definition important?

Matrices are the language of linear algebra, used in computer graphics, machine learning, physics simulations, economics, and solving systems of equations. Nearly every field that uses math relies on matrices.

What do students usually get wrong about Matrix Definition?

Dimensions are always rows \times columns, never the reverse. A 3 \times 2 matrix has 3 rows and 2 columns, not 2 rows and 3 columns.

What should I learn before Matrix Definition?

Before studying Matrix Definition, you should understand: systems of equations, variables.

How Matrix Definition Connects to Other Ideas

To understand matrix definition, you should first be comfortable with systems of equations and variables. Once you have a solid grasp of matrix definition, you can move on to matrix operations, matrix multiplication and determinant.

Want the Full Guide?

This concept is explained step by step in our complete guide:

Solving Systems of Equations: Substitution, Elimination, and Matrices β†’