ComenzarEmpieza gratis

Matrix Multiplication as a Transformation

Matrices can be viewed as a way to transform collections of vectors into other vectors.

These transformations can take many forms, but the simplest ones in two dimensions are stretches or shrinkages (in either coordinate), reflections (e.g. about the x-axis, y-axis, origin, the line y = x), and rotations (clockwise, counter-clockwise).

Multiplication of a vector by a matrix is accomplished using the %*% command.

Este ejercicio forma parte del curso

Linear Algebra for Data Science in R

Ver curso

Instrucciones del ejercicio

  • Use matrix multiplication in R to show that multiplication by the matrix \(A\) with R output:
> A
     [,1] [,2]
[1,]    4    0
[2,]    0    1

stretches the x (first) component of the vector b <- c(1,1) by a factor of four.

  • Show that multiplication by the matrix \(B\) with R output:
> B
     [,1] [,2]
[1,]    1    0
[2,]    0    2/3

shrinks the y (second) component of the vector b <- c(1,1) by 33 percent.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Multiply A by b
A ___ b

# Multiply B by b
___ ___ b
Editar y ejecutar código