This section seeks to showcase rotating images by using matrix-vector multiplication on each pair of coordinates in a given image. This is different to multiplying the actual values contained at the given location, but rather multiplying the location coordinates (x,y) instead. The implementation included using Matplotlib.pyplot to display the results and a 2D rotation matrix that took in an angle of rotation (theta) as input. For example, pi/2 would imply a counter clockwise rotation by 90 degrees, whereas -pi/4 would imply a clockwise rotation by 45 degrees.