You're on a roll —
Step 1: Set up the matrix multiplication for points A and B.
Let the transformation matrix be M=(acbd).
The transformation maps an original point (x,y) to an image point (x′,y′) such that:
(acbd)(xy)=(x′y′)
For point A (1,2) mapping to A' (21,1):
(acbd)(12)=(211)
This gives the equations:
- a(1)+b(2)=21⟹a+2b=21
- c(1)+d(2)=1⟹c+2d=1
For point B (4,2) mapping to B' (2,1):
(acbd)(42)=(21)
This gives the equations:
3) a(4)+b(2)=2⟹4a+2b=2
4) c(4)+d(2)=1⟹4c+2d=1
Step 2: Solve the system of equations for a and b.
We use equations (1) and (3):
a+2b=21(1)
4a+2b=2(3)
Subtract equation (1) from equation (3):
(4a+2b)−(a+2b)=2−21
3a=24−21
3a=23
a=23×31
a=21
Substitute a=21 into equation (1):
21+2b=21
2b=0
b=0
Step 3: Solve the system of equations for c and d.
We use equations (2) and (4):
c+2d=1(2)
4c+2d=1(4)
Subtract equation (2) from equation (4):
(4c+2d)−(c+2d)=1−1
3c=0
c=0
Substitute c=0 into equation (2):
0+2d=1
2d=1
d=21
Step 4: Form the transformation matrix M.
Using the values a=21, b=0, c=0, d=21:
M=(210021)
The transformation matrix is (210021).
What's next?