Main content
Precalculus
Course: Precalculus > Unit 7
Lesson 7: Matrices as transformations of the plane- Matrices as transformations of the plane
- Working with matrices as transformations of the plane
- Intro to determinant notation and computation
- Interpreting determinants in terms of area
- Finding area of figure after transformation using determinant
- Understand matrices as transformations of the plane
- Proof: Matrix determinant gives area of image of unit square under mapping
- Matrices as transformations
- Matrix from visual representation of transformation
© 2023 Khan AcademyTerms of usePrivacy PolicyCookie Notice
Matrix from visual representation of transformation
Learn how to determine the transformation matrix that has a given effect that is described visually.
Warmup example
Let's practice encoding linear transformations as matrices, as described in the previous article. For instance, suppose we want to find a matrix which corresponds with a 90 rotation.
The first column of the matrix tells us where the vector goes, and—looking at the animation—we see that this vector lands on . Based on this knowledge, we start filling in our matrix like this:
For the second column, we ask where the vector lands. Rotating this upward facing vector 90 yields a leftward facing arrow—i.e., the vector —so we can finish writing our matrix as .
Now you try!
Practice problems
Problem 1
What matrix corresponds with the following transformation?
Problem 2
What matrix corresponds with the following transformation?
Problem 3
What matrix corresponds with the following transformation?
Problem 4
What matrix corresponds with the following transformation?
Problem 5
What matrix corresponds with the following transformation?
Problem 6
What matrix corresponds with the following transformation?
Want to join the conversation?
- so because you are identifying the transformation that occurs for 1 0 and 0 1 you are also identifying the vector that transforms all other points?(17 votes)
- That's right. For a linear transformation, you only need to specify what it does to a set of points that represents a basis of the space (like (1,0) and (0,1) is a basis of two-dimensional space). You can calculate any of the other values from that.(29 votes)
- This topic seems super interesting.(28 votes)
- Yep. I'm also exited(3 votes)
- You lost me on this one.(11 votes)
- The answer to each question can be easily found by looking at where the green and red basis vectors end up after each transformation, and encoding where they do in a 2X2 matrix as follows:
_ _
| green-x-coord red-x-coord |
| |
| green-y-coord red-y-coord |
|_ _|
It is really that simple. The green vector is the vector that defines the x-axis and has length 1, labeled "i" with a little caret on top, pronounced "eye-hat," while the red arrow in the vector that defines the y-axis and has length 1 as well, labeled "j" with a little caret on top, pronounced "jay-hat." The 2x2 matrix has two columns: the left column says where i-hat ends up after the transformation, and the right column says where j-hat does.
I hope that helps a bit. :-)(9 votes)
- Hi everyone,
after seeing the videos, I understand how to do a transformation that corresponds to a 90° rotation or a rotation multiple of 90°.
Now I am wondering what might be a rule to translate a transformation expressed as a matrix into a rotaion expressed in degree.
My intuition says that
1.) I would need to rotate the x and the y component by the same degree if I do not wish to somehow squeez my vector/figure/coordinate system.
2.) I would probably able to calculate the matrix that corresponds to a rotation of given degrees using the unity circle and the sine etc functions.
So I would need to calculate the angle phi for any given point P in the coordinate system, add the angle I would like to rotate it, and then calculate the respective x,y coordinates.
Is this reasoning correct?
And if I want to resize the object (as in the tasks earlier), I assume, I could alter the magnitude of the vectors pointing to each corner of the object. But what would I need to do to alter the size of object and altering the distance to the origin at the same time, e.g. enlarge a triangle and at the same time get it closer to the origin? Would that still be a linear transformation?
Thanks in advance :-)(6 votes)- Your assumption is correct but you don't need to retrieve the original angle of the rotated point first. The trigonometric identities tell you that x'=x⋅cos(θ)-y⋅sin(θ) and y'=x⋅sin(θ)+y⋅cos(θ). And since matrices are all about forming i values each formed from j others values in different proportions, the matrix come by itself :
+cos θ -sin θ
+sin θ +cos θ
Since θ is a given constant, sin θ and cos θ are also constants, so you can replace each every expression in the matrix by its numerical equivalent if you wish to do so.
As regards your last question, to translate your figure, you indeed need to ADD a matrix to your result, which is no longer linear. However, it remains possible to perform an affine transformation in a single operation (multiplication of a square matrix), by adding one more dimension : https://en.wikipedia.org/wiki/Transformation_matrix#Affine_transformations(14 votes)
- I honestly think 3b1b's Essence of Linear Algebra is one of the most enlightening things you can find on the internet.(9 votes)
- You are right, but to be honest, combining both Khacacademy's problem sets and 3b1b's video helped me a lot to grasp visualization more deeply.(5 votes)
- Maybe I don't quite catch it, but why in every sample the vector start point is [0,0]?
And what will be if we will operate with more complicated vectors, what the transformation matrix will look like?(2 votes)- Vectors don't have a starting point. Vectors only have a magnitude and a direction. We just draw them as arrows, but the starting point of the arrow does not matter.(10 votes)
- So we are saying that the result of every linear transformation of the vector zero is the vector zero? In order to be a Linear Transformation?(3 votes)
- Yes, taking the transformation of the zero vector for any linear transformation always gives back the zero vector in the other space.(8 votes)
- Are matrix transformations always represented as a 2x2 matrix? The textbook I'm using suggests that but I want to be sure.(3 votes)
- No. Any matrix of any size mxn is a matrix transformation.
If you are specifically referring to transformations that apply rotation, projection, reflection, etc. in the xy plane, then yes, those only come from 2x2 matrices.(7 votes)
- this is the intuition behind rotating images isn't it(5 votes)
- Yes, rotating an image is a type of transformation where the image is rotated by a certain angle around a fixed point. This results in a new image that has the same content as the original image, but with its pixels rearranged according to the rotation. Other types of transformations include scaling, translation, shearing, and more complex transformations such as perspective transformations. These transformations are widely used in computer graphics, image processing, and computer vision applications. Khan Academy does have videos on transformations, including rotations of 2D shapes and transformations in the coordinate plane, which can provide more insight and examples.(2 votes)
- Each vector in the question is broken into its corresponding x and y. However, I am wondering that instead of expressing the linear transformation by the matrix, could I express the transformation by using a general formula and without breaking down the vector?
Like in the warmup example, suppose there is a vector-valued function h in which two-dimensional vector V is transformed into two-dimensional vector W. Then I generalize a function h(v1, v2)=(-v2, v1), where in the right part of the equation the -v2 represents the returned w1, and v1 represents the returned w2. This specific function could represent the 90-degree rotation, as desired.
And thus what's the difference between using a linear algebra function and the matrix method which breaks down the vector? Does one have more advantages over the other? Thanks a lot.(3 votes)- A good observation. Any linear function can be represented using a matrix. The benefits of using a matrix is that we get to use all the theory associated with matrices, such as Gaussian elimination, eigenvectors, determinants, matrix multiplication (as opposed to function composition), inverse matrices, etc.(3 votes)