- #1
Fryderyk
- 1
- 0
Homework Statement
As part of an assignment, I need to derive a transformation matrix to convert a vector in cartesian coordinates to spherical coordinates.
Homework Equations
What I've got so far is:
For an arbitrary vector V,
[tex]
\textbf{V}=\left[\begin {array}{ccc}V_{x}&V_{y}&V_{z}\end{array}\right]\left[\begin{array}{c}\textbf{i}\\\textbf{j}\\\textbf{k}\end{array}\right] = \left[\begin{array}{ccc}V_{R}&V_{\theta}&V_{\phi}\end{array}\right]\left[\begin{array}{c}\textbf{e}_{R}\\\textbf{e}_{\theta}\\\textbf{e}_{\phi}\end{array}\right]
[/tex]
Knowing that VR is the component of V in the eR direction, then:
[tex]
V_{R}=aV_{x}+bV_{y}+cV_{z}
[/tex]
where a, b and c are some transformation coefficients to be derived from geometry.
Similarly,
[tex]
V_{\theta}=dV_{x}+eV_{y}+fV_{z}
[/tex]
and
[tex]
V_{\phi}=gV_{x}+hV_{y}+iV_{z}
[/tex]
From this, a transformation matrix T exists such that:
[tex]
\left[\begin{array}{ccc}V_{x}&V_{y}&V_{z}\end{array}\right]\textit{T}=\left[\begin{array}{ccc}aV_{x}+bV_{y}+cV_{z}&dV_{x}+eV_{y}+fV_{z}&gV_{x}+hV_{y}+iV_{z}\end{array}\right]=\left[\begin{array}{ccc}V_{R}&V_{\theta}&V_{\phi}\end{array}\right]
[/tex]
The Attempt at a Solution
My problem is finding this matrix T.
It's obvious from inspection that:
[tex]
T=\left[\begin{array}{ccc}a&d&g\\b&e&h\\c&f&i\end{array}\right]
[/tex]
But, I'm not sure that just stating 'it's obvious that' will be sufficient.
I'm wondering if and how the below equation can be rearranged and solved to give T.
[tex]
\left[\begin{array}{ccc}V_{x}&V_{y}&V_{z}\end{array}\right]\textit{T}=\left[\begin{array}{ccc}V_{R}&V_{\theta}&V_{\phi}\end{array}\right]
[/tex]
After this point, finding the coefficients shouldn't be a problem.
Thank you