Matrix Definition Formula

Matrix definition is a matrix is a rectangular array of numbers arranged in rows (horizontal) and columns (vertical).

The Formula

A=[aij]mร—nA = [a_{ij}]_{m \times n} where 1โ‰คiโ‰คm1 \leq i \leq m and 1โ‰คjโ‰คn1 \leq j \leq n

When to use: Think of a spreadsheet: rows go across, columns go down, and every cell holds a number. A 2ร—32 \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.

Quick Example

A=[123456]A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix} is a 2ร—32 \times 3 matrix. Entry a1,2=2a_{1,2} = 2 (row 1, column 2).

Notation

Matrices are denoted by capital letters (AA, BB, CC). Entry in row ii, column jj is written aija_{ij}. Dimensions are written mร—nm \times n (rows ร—\times columns).

What This Formula Means

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

Think of a spreadsheet: rows go across, columns go down, and every cell holds a number. A 2ร—32 \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.

Formal View

A matrix AโˆˆRmร—nA \in \mathbb{R}^{m \times n} is a function A:{1,โ€ฆ,m}ร—{1,โ€ฆ,n}โ†’RA: \{1,\ldots,m\} \times \{1,\ldots,n\} \to \mathbb{R}, written as a rectangular array [aij][a_{ij}] where aij=A(i,j)a_{ij} = A(i,j). The set Rmร—n\mathbb{R}^{m \times n} forms a vector space of dimension mnmn.

Worked Examples

Example 1

easy
Given A=[3โˆ’17052]A = \begin{bmatrix} 3 & -1 & 7 \\ 0 & 5 & 2 \end{bmatrix}, what are the dimensions of AA and what is a2,3a_{2,3}?

Answer

AA is 2ร—32 \times 3; a2,3=2a_{2,3} = 2

First step

1
Step 1: Count rows: 2. Count columns: 3. Dimensions: 2ร—32 \times 3.

Full solution

  1. 2
    Step 2: a2,3a_{2,3} means row 2, column 3. That entry is 22.
  2. 3
    Step 3: Verify: row 2 is [0,5,2][0, 5, 2], third element is 22 โœ“
A matrix's dimensions are always given as rows ร— columns. The notation ai,ja_{i,j} refers to the entry in row ii and column jj.

Example 2

medium
Write a 3ร—13 \times 1 column matrix where ai,1=2iโˆ’1a_{i,1} = 2i - 1.

Example 3

challenge
Show how any nร—nn\times n matrix AA decomposes uniquely as a sum S+KS + K where SS is symmetric and KK is skew-symmetric.

Common Mistakes

  • Stating dimensions columns-first โ€” always write mร—nm\times n as rows ร—\times columns.
  • Mixing up the entry subscript order โ€” aija_{ij} is row ii then column jj, not the reverse.
  • Calling a non-rectangular set of numbers a matrix โ€” every row must have the same number of entries.

Why This Formula Matters

Matrices are the container for systems of equations, transformations, and data tables, and every matrix operation depends first on reading dimensions correctly โ€” mร—nm\times n controls what you are even allowed to do. Recognizing it by "Are the numbers arranged in a fixed rectangle of rows and columns with a stated size?" โ€” rather than by familiar numbers โ€” is what lets a student tell it apart from vector and determinant and coordinate point in a mixed problem set.

Frequently Asked Questions

What is the Matrix Definition formula?

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

How do you use the Matrix Definition formula?

Think of a spreadsheet: rows go across, columns go down, and every cell holds a number. A 2ร—32 \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.

What do the symbols mean in the Matrix Definition formula?

Matrices are denoted by capital letters (AA, BB, CC). Entry in row ii, column jj is written aija_{ij}. Dimensions are written mร—nm \times n (rows ร—\times columns).

Why is the Matrix Definition formula important in Math?

Matrices are the container for systems of equations, transformations, and data tables, and every matrix operation depends first on reading dimensions correctly โ€” mร—nm\times n controls what you are even allowed to do. Recognizing it by "Are the numbers arranged in a fixed rectangle of rows and columns with a stated size?" โ€” rather than by familiar numbers โ€” is what lets a student tell it apart from vector and determinant and coordinate point in a mixed problem set.

What do students get wrong about Matrix Definition?

The procedure for matrix definition is the easy part; the trap is stating dimensions columns-first. Asking "Are the numbers arranged in a fixed rectangle of rows and columns with a stated size?" first is what keeps a correct-looking calculation from being attached to the wrong concept.

What should I learn before the Matrix Definition formula?

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

Want the Full Guide?

This formula is covered in depth in our complete guide:

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