1. Definition of matrix and common martices

Date: 2026-04-02


1. What is Matrix?

a list of number of $m$ rows and $n$ column formed by $m \times n$ number of $a_{ij}$ $$ \begin{pmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{pmatrix} $$ is called an $m \times n$ matrix, the numbers are called the element,$a_{ij}$ called the element located on row $i$ column $j$ if $\mathbf{A}$, $\mathbf{B}$ has same column and row, we call them the same type of matrix.

2. Types of matrix

3. Row Echelon Form, Reduced Row Echelon Form and Normal Form

Row Echelon form are matrices that looks like $\left(\begin{array}{ccccc}{1}&{a_{0}}&{a_{1}}&{a_{2}}&{a_{3}}\\ {0}&{0}&{2}&{a_{4}}&{a_{5}}\\ {0}&{0}&{0}&{1}&{a_{6}}\\ {0}&{0}&{0}&{0}&{0}\end{array}\right)$, reduced row echelon form are matrices that looks like $\begin{array}{cccc}{\left(\begin{array}{cccc}{1}&{0}&{a_{1}}&{0}&{b_{1}}\\ {0}&{1}&{a_{2}}&{0}&{b_{2}}\\ {0}&{0}&{0}&{1}&{b_{3}}\end{array}\right)}\end{array}$
Note: Column Echelon form and Reduced Column Echelon form do exist and has basically the same definition.
A matrix such that it has an identity matrix in the upleft corner and 0 for the rest is called the normal form of the matrix, looks like $\left(\begin{array}{ll}{I_{r}}&{0}\\ {0}&{0}\end{array}\right)$