Visual Tools
Calculators
Tables
Mathematical Keyboard
Converters
Other Tools

Matrix






Introduction to Matrices

In this section, we will explore the concept of matrices, which are fundamental structures in linear algebra. Linear Algebrs is often referred to as "matrix algebra" due to their significance in the field. The primary goal of linear algebra is to organize data into matrices and perform various operations on them.



Definition and Notation

A matrix is a rectangular structure consisted of elements (numbers or variables) arranged in m rows and n columns, denoted as a matrix of order m × n.
By convention,we use english capital letters (A, B, C, ...) to denote matrices.
Matrices are typically written using one of three types of brackets: square brackets [ ], parentheses ( ), or vertical bars | |.
The elements within the matrix are denoted with lowercase letters and two indices representing their position in the matrix.
Using different capital letters:
A=(1234),B=(5678),C=(9101112)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}, \quad B = \begin{pmatrix} 5 & 6 \\ 7 & 8 \end{pmatrix}, \quad C = \begin{pmatrix} 9 & 10 \\ 11 & 12 \end{pmatrix}
Same matrices using different bracket types:
A=(1234),B=[1234],C=1234A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}, \quad B = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}, \quad C = \begin{vmatrix} 1 & 2 \\ 3 & 4 \end{vmatrix}
There are more notations we use for special types of matrices which we will get familiar with in later sections.

Elements, Structure and Indexing

The horizontal lines in a matrix are called rows, and vertical lines are columns. By convention, rows are enumerated from top to bottom, starting with 1, and this number becomes the first index of matrix elements.
Row example:
A=(251386547)A = \begin{pmatrix} \textcolor{red}{2} & \textcolor{red}{5} & \textcolor{red}{1} \\ 3 & 8 & 6 \\ 5 & 4 & 7 \end{pmatrix}
Elements in row 1 (red) are referred to as a1ja_{1j} where j is the column number.
The vertical lines in a matrix are called columns. By convention, columns are numbered from left to right starting with 1, and this number becomes the second index of matrix elements.
Column example:
A=(251386547)A = \begin{pmatrix} 2 & \textcolor{blue}{5} & 1 \\ 3 & \textcolor{blue}{8} & 6 \\ 5 & \textcolor{blue}{4} & 7 \end{pmatrix}
Elements in column 2 (blue) are denoted as ai2a_{i2} where i is the row number.
Important:In linear algebra, we traditionally use 1-based indexing for matrices - first row/column is 1 (and not 0).

A matrix of size m×n (read as "m by n") has m rows and n columns. The first number always refers to rows, second to columns.
Size examples:
B=(123456)2×3 matrixB = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix} \quad \text{2}\times\text{3 matrix}
C=(789101112)3×2 matrixC = \begin{pmatrix} 7 & 8 \\ 9 & 10 \\ 11 & 12 \end{pmatrix} \quad \text{3}\times\text{2 matrix}
Any element in a matrix is uniquely identified by it's row and column indices (i,j)(i,j). The element aija_{ij} is located at the intersection of row i and column j.
Element indexing:
A=(a11a12a13a21a22a23a31a32a33)A = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & \color{red}{a_{22}} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{pmatrix}
For the highlighted element a22\color{red}{a_{22}}:
First index (2) indicates row number
Second index (2) indicates column number
Different indices example:
A=(a11a12a13a14a21a22a23a24a31a32a33a34)A = \begin{pmatrix} a_{11} & \color{blue}{a_{12}} & a_{13} & \color{red}{a_{14}} \\ a_{21} & a_{22} & \color{green}{a_{23}} & a_{24} \\ a_{31} & a_{32} & a_{33} & a_{34} \end{pmatrix}
Elements highlighted:
a12\color{blue}{a_{12}} - first row, second column
a23\color{green}{a_{23}} - second row, third column
a14\color{red}{a_{14}} - first row, fourth column


Elements indices are essential for defining matrix operations like addition and multiplication. The way indices work in operations you can find in Matrix Operations section.

Types of Matrices

Matrices are classified based on various criteria such as their shape (square, rectangular), content type .Square matrices furthermore may be divided later into many special types based on element patterns (diagonal, triangular), or element properties (symmetric, skew-symmetric) and more. Each type has unique characteristics that determine it's behavior in matrix operations and properties.

Based on the shape of the matrix we define 4 types:
  • Column matrices (m×1):
Column matrix: A3×1=(a11a21a31)\text{Column matrix: } A_{3\times1} = \begin{pmatrix} a_{11} \\ a_{21} \\ a_{31} \end{pmatrix}
  • Row matrices (1×n):
Row matrix: B1×3=(b11b12b13)\text{Row matrix: } B_{1\times3} = \begin{pmatrix} b_{11} & b_{12} & b_{13} \end{pmatrix}
  • General rectangular matrix (m×n where m≠n):
General rectangular: C2×3=(c11c12c13c14c21c22c23c24)\text{General rectangular: } C_{2\times3} = \begin{pmatrix} c_{11} & c_{12} & c_{13} & c_{14} \\ c_{21} & c_{22} & c_{23} & c_{24} \end{pmatrix}
  • Square matrix (m×n where m=n):
Square Matrix : A3=(a11a12a13a21a22a23a31a32a33)\text{Square Matrix : } A_3 = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{pmatrix} \quad

In terms of content type we distinguish:
  • Numeric matrices:
    Contain only numbers (integers, decimals, complex numbers). Standard choice for practical computations and real-world applications.
A=(234051)A = \begin{pmatrix} 2 & -3 & 4 \\ 0 & 5 & 1 \end{pmatrix}
  • Variable/Symbolic matrices:
    Use letters to represent unknown or general values. Essential in proofs and theoretical mathematics.
B=(xyzabc)B = \begin{pmatrix} x & y & z \\ a & b & c \end{pmatrix}
  • Mixed matrices:
    Combine numbers, variables, and special constants. Common in systems of equations and mathematical modeling.
C=(1x0y2π)C = \begin{pmatrix} 1 & x & 0 \\ y & 2 & \pi \end{pmatrix}
  • Zero (Null) matrices:
    Have all elements equal to zero. Important in defining additive identity and studying linear transformations.
O=(000000)O = \begin{pmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \end{pmatrix}

Matrix Properties

Matrix properties are essential characteristics that define how matrices behave in operations and transformations. Understanding these properties helps predict operation results and solve matrix equations.
Matrix Properties Overview:
  • Size/Dimension:
    Number of rows (m) and columns (n) determines what matrices can be multiplied and what operations are possible.
  • Rank:
    Maximum number of linearly independent rows/columns. Shows how much unique information matrix contains.
  • Determinant:
    Scalar value that exists only for square matrices. Zero determinant indicates matrix singularity.
  • Eigenvalues/Eigenvectors:
    Special numbers and vectors (square matrices only) that help understand matrix transformations.
  • Trace:
    Sum of main diagonal elements in square matrices. Useful in various matrix equations and proofs.
Each property represents a profound enough topic in linear algebra and deserves dedicated study due to complexity,extensiveness and importance.
These foundational features play crucial roles across linear algebra, connecting with matrix operations, linear transformations, vector spaces, and systems of equations. Their applications span from basic calculations to advanced theoretical concepts.

Square Matrices and Special Cases


Square matrices form a unique class that enables a rich variety of special cases based on their element patterns, symmetry properties, and operational behaviors.That is why square matrices deserve detailed study and investigation.
Square matrices (n×n) have important subtypes based on element patterns.
Diagonal patterns:
  • Diagonal:
    All elements outside main diagonal are zero
  • Upper triangular:
    All elements below diagonal are zero
  • Lower triangular:
    All elements above diagonal are zero
By element relationships:
  • Symmetric:
    aij=ajia_{ij} = a_{ji} for all i,j
  • Skew-symmetric:
    aij=ajia_{ij} = -a_{ji} for all i,j
  • Identity:
    1's on main diagonal, 0's elsewhere
  • Scalar:
    Constant multiples of identity matrix
These special cases are particularly important because they:
  • Simplify matrix operations
  • Have unique properties
  • Appear frequently in applications
  • Help understand matrix transformations
Also need to mention that those classifications are not absolute and mutually exclusive.Often times happens that very same matrix may belong to different categories in different breakdowns simultaneously which creates very interesting combinations of properties and behaviors.This poses great challenge and gives a taste for further deeper studies of square matrices.To learn more about different types of square matrices and reciprocal relations between them visit this page.