Geometrical Representation

Matrix

Matrices are linear transformations on a vector space.

Matrix is basically set of column vectors. And those column vectors basically denotes the bases of coordinate system.

Let u,v\bf u, \bf vbe the two basis vectors of a coordinate system, then for any point PP, the coordinates will be written as number of step in the direction of u\bf uand v\bf vit will take from origin to point PP. So,

P=xu+yvP = x\textbf u+y\textbf v

So the cooridnates of point PPwill be [x,y][x,y]in the coordinate system whose basis vectors are u,v\bf u, \bf v

Now let be the matrix containing the bases vector as:

M=[u,v]=[u1v1u2v2]M = [\bf u, \bf v] \\ = \begin{bmatrix} u_1 & v_1\\ u_2 & v_2 \end{bmatrix}

Now to denote the point P, we show it as matrix multiplication. Essentially P=Mx P = M\bf xwhere MMis the basis matrix and xxis the coordinate vector in the basis u,v\bf u, \bf v. So

P=Mx=[u,v][xy]=xu+yvP = M\bf x = [\bf u , \bf v]\begin{bmatrix} x\\ y \end{bmatrix} = x \textbf u+y \textbf v

Hence, when it comes to geometry, matrices are merely a notational device of writing down the base vectors of a coordinate system.

Homogeneous coordinates have an additional coordinate marking the coordinate vector as a point (non-zero) or a directional vector (zero). These extended vectors allow translations to be written as matrices as well.

Resources

Determinant

Determinant of a matrix basically represents the local, linearized rate of volume change of a transformation.

It's equal to the multiplication of all eigenvalues of the matrix.

Last updated