<aside> <img src="/icons/list_gray.svg" alt="/icons/list_gray.svg" width="40px" />
Table of Contents
</aside>
Identity Matrix is a square matrix with $1$ on the main diagonal and $0$ elements elsewhere.
Examples
$2 {\times }2$ Identity matrix
$$ I_2 = \begin{bmatrix} \color{red}1 & 0 \\ 0 & \color{red}1 \end{bmatrix} $$
$3 {\times} 3$ Identity matrix
$$ I_3 = \begin{bmatrix} \color{red}1 & 0 & 0 \\ 0 & \color{red}1 & 0 \\ 0 & 0 & \color{red}1 \end{bmatrix} $$
$n {\times} n$ Identity matrix

Multiplicative Identity
$$ AI = IA = A $$
Inverse
$$ I^{-1} = I $$
Transpose
$$ I^{T} = I $$

<aside> <img src="/icons/question-mark_blue.svg" alt="/icons/question-mark_blue.svg" width="40px" />
Linearity

Transformation preserves the operations of vector addition and scalar multiplication.
The vector resulting from the product of a vector and a scalar is parellel to the original vector and lies on the same line passing through the origin.
</aside>
Linear trasformation $T$ must satisfy 2 conditions.
Additivity
$$ T(u+v) = T(u) + T(v) $$
Homogeneity
$$ T(cu) = cT(u) $$
<aside> <img src="/icons/link_gray.svg" alt="/icons/link_gray.svg" width="40px" />
데스모스 링크
</aside>
https://www.desmos.com/calculator/tmodmkuybw
Through the graph above, We can intuitively observe the linear transformation.
Parameters
How to use