Tell me more ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.

I've two vectors $a = (a_1, a_2, a_3)$ and $b = (b_1, b_2, b_3)$. How to find transformation matrix for transform from a to b?

share|improve this question
You need some restrictions. For example if a=(0,0,0) and b is anything else, there's no possible transformation matrix. – coffeemath Oct 9 '12 at 17:22

2 Answers

Try the dyadic product $$ \mathbf{a b} \equiv \mathbf{a}\otimes\mathbf{b} \equiv \mathbf{a b}^\mathrm{T} = \begin{pmatrix} a_1 \\ a_2 \\ a_3 \end{pmatrix}\begin{pmatrix} b_1 & b_2 & b_3 \end{pmatrix} = \begin{pmatrix} a_1b_1 & a_1b_2 & a_1b_3 \\ a_2b_1 & a_2b_2 & a_2b_3 \\ a_3b_1 & a_3b_2 & a_3b_3 \end{pmatrix}. $$ Maybe you should include a normalization factor.

share|improve this answer
1  
and interchange a and b... – draks ... Oct 9 '12 at 10:28

If the $a_i$ are non-zero you can take the diagonal matrix with entries $a_{ii}=\frac{b_i}{a_i}$. If $a_1=0$ then replace $a_{11}$ with zero and take $a_{12}=\frac{b_1}{a_1}$. Similarly if $a_2$ or $a_3$ is zero.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.