Answer check and explanation(Linear transformation)

  • Thread starter Thread starter negation
  • Start date Start date
  • Tags Tags
    Transformation
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 1K views
negation
Messages
817
Reaction score
0

Homework Statement



Find the standard matrix of the following linear transformation:

T(x1, x2, x3, x4) = (-2 x1 - 5 x2 - 4 x3 - x4, 2 x1 + 2 x2 - 5 x3 + x4)



The Attempt at a Solution



[x1,x2,x3,x4] [-2,2;-5,2;-4,-5;-1,1]
=[-2 x1 - 5 x2 - 4 x3 - x4, 2 x1 + 2 x2 - 5 x3 + x4]



T(e1) = (-2,2)
T(e2) = (-5,2)
T(e3) = (-4,-5)
T(e4) = (-1,1)

A = [-2,-5,-4,-1; 2,2,-5,1]

The answer has been checked to be correct. But I'm not seeing why the standard matrix has to be transposed?
 
Physics news on Phys.org
A matrix representing a transformation from ##R^4 \to R^2## would be a 2x4 matrix. The images of the basis vectors give the columns. Nothing is transposed that I see.
 
Last edited:
  • Like
Likes   Reactions: 1 person
negation said:

Homework Statement



Find the standard matrix of the following linear transformation:

T(x1, x2, x3, x4) = (-2 x1 - 5 x2 - 4 x3 - x4, 2 x1 + 2 x2 - 5 x3 + x4)



The Attempt at a Solution



[x1,x2,x3,x4] [-2,2;-5,2;-4,-5;-1,1]
=[-2 x1 - 5 x2 - 4 x3 - x4, 2 x1 + 2 x2 - 5 x3 + x4]
There are two problems with the above:
1. You have your x vector on the wrong side of A (it should be Ax rather than xA), and your matrix is wrong. You have four rows with two columns - it should be two rows with four columns.
negation said:
T(e1) = (-2,2)
T(e2) = (-5,2)
T(e3) = (-4,-5)
T(e4) = (-1,1)
The vectors on the right are all column vectors.
negation said:
A = [-2,-5,-4,-1; 2,2,-5,1]

The answer has been checked to be correct. But I'm not seeing why the standard matrix has to be transposed?
The transformation is T: R4 → R2, so the matrix for T will by 2 X 4 (i.e., two rows with four columns each).
 
Mark44 said:
There are two problems with the above:
1. You have your x vector on the wrong side of A (it should be Ax rather than xA), and your matrix is wrong. You have four rows with two columns - it should be two rows with four columns.
The vectors on the right are all column vectors.
The transformation is T: R4 → R2, so the matrix for T will by 2 X 4 (i.e., two rows with four columns each).

Both of you guys are correct.