Ejemplo de escalamiento respecto al origen
Se quiere escalar el punto P(-1, 1) en un factor de 2 por ambos ejes. ¿Cuál es el punto resultante?
Datos
\begin{equation} \begin{gathered} P = (-1, 1) \\ S = \begin{bmatrix} 2 & 2 \end{bmatrix} \\ P' = (?, ?) \end{gathered} \end{equation}
Procedimiento
Se multiplica el vector por la matriz de escalamiento para conseguir la tripla P'.
\begin{equation} P' = \begin{bmatrix} -1 & 1 & 1 \end{bmatrix} \begin{bmatrix} 2 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 1 \end{bmatrix} = \begin{bmatrix} -2 & 2 & 1 \end{bmatrix} \end{equation}
Resultado
\begin{equation} P' = (-2, 2) \end{equation}