Linear Transformation matrix help

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 · 8K views
cwatki14
Messages
56
Reaction score
0
The problem is as follows:
Find a nonzero 2x2 matrix A such that Ax is parallel to the vector
[1]
[2]
for all x in R2.

So far I know A=[v1 v2] therefore Ax= [v1 v2][x1]
[x2]

= x1v1+x2v2
I know these two vectors are parallel, but I am a little stuck how to relate this property to solve for the matrix A.
 
Physics news on Phys.org
What Mark44 suggests works fine. A more "primitive method" is to write A as
[tex]\begin{bmatrix}a & b \\ c & d\end{bmatrix}[/tex]
so your equation "Ax= k[1 2]T" becomes
[tex]\begin{bmatrix}a & b \\ c & d\end{bmatrix}[/tex]\begin{bmatrix} x \\ y\end{bmatrix}= \begin{bmatrix}ax+ by \\ cx+ dy\end{bmatrix}= \begin{matrix}k \\ 2k\end{bmatrix}[/tex]

giving you two equations, ax+ by= k and cx+ dy= 2k for the 5 unknown numbers. There will, of course, be an infinite number of possible answers. You are simply asked to find one such matrix.
 
Note: fixed your LaTeX by adding a missing [ tex] tag.
HallsofIvy said:
What Mark44 suggests works fine. A more "primitive method" is to write A as
[tex]\begin{bmatrix}a & b \\ c & d\end{bmatrix}[/tex]
so your equation "Ax= k[1 2]T" becomes
[tex]\begin{bmatrix}a & b \\ c & d\end{bmatrix}[/tex] [tex]\begin{bmatrix} x \\ y\end{bmatrix}= \begin{bmatrix}ax+ by \\ cx+ dy\end{bmatrix}= \begin{matrix}k \\ 2k\end{bmatrix}[/tex]

giving you two equations, ax+ by= k and cx+ dy= 2k for the 5 unknown numbers. There will, of course, be an infinite number of possible answers. You are simply asked to find one such matrix.
That's what I meant by saying "specify values for A." I think we're on the same page here.