Can a triangle be represented as a matrix? Triangle1 (1, 1), (1, 2), (3, 1)...
Ella Bradshaw
Answered
2022-01-31
Can a triangle be represented as a matrix?
Triangle1 (1, 1), (1, 2), (3, 1)
Triangle2 (1, 3), (1, 6), (3, 3)
Find the matrix which represents the stretch that maps triangle T1 onto triangle T2.
Answer & Explanation
sjkuzy5
Expert
2022-02-01Added 11 answers
Step 1 For a matrix multiplication to be possible the columns of the first matrix must be equal to the rows of the second matrix. As the transformation matrix has 2 columns and the matrix has 2 rows then multiplication is possible. In this example we need to find a matrix M such that If we let Then we have to find a,b,c,d such that: Which implies: You should then be able to find a,b,c,d You can check if you have the right transformation matrix by working out the area of the two triangles (they are both right angled so it's easy). The determinant of your transformation matrix should be the factor by which the area has increased/decreased.
mihady54
Expert
2022-02-02Added 13 answers
Step 1 A matrix is a function from to . So it takes each point on the triangle to another point in the plane. So you're not representing a triangle as a matrix. The triangle is a collection of points (i.e. elements of ); each point gets sent to another (not necessarily different) point by the matrix. You need to find a matrix that sends all the points on the first triangle to the points on the second.