Transforming shapes with matrices

Topic Notes
In this section, we will learn how to transform shapes with matrices. Instead of one column vector, we are going to have multiple vertices which create a shape. What we can do to this shape is use the transformation matrix to change the length and size of that shape. To do this computation, we merge all the vertices into one matrix and then multiply it with the transformation matrix. Doing so will give us another matrix. We will then take a look at each transformed vertices separately in the matrix to see the new transformed shape. Note that transforming the shape does not change the number of sides. We will take a look at some questions which involve transforming shapes, and then graph them to notice the changes between the normal shape and the transformed shape.
Let vertices of a square be vertices of a square and TT be a transformation matrix.
Then we can transform the square by combining the vertices into a matrix (denoted by AA), and multiply it by the transformation matrix TT. In other words,
vertices of a square in a matrix

And TATA is the transformed square.
Of course, this idea can also apply to other shapes other than squares.
Basic Concepts