I am really stuck at a simple problem. Maybe, it is not totally a problem. However, I don't understand why.
I am trying to take the dot product of two expressions.
Here is the code:
a = {{Ixx, 0, 0}, {0, Iyy, 0}, {0, 0, Izz}}
b = {{0}, {0}, {Theta1'[t]}}
a.b should work according to the documentation. I am expecting the result
{{0}, {0}, {Izz*Theta1'[t]}}
and after // MatrixForm, it will be [0; 0; something].
But, after the a.b production, I just get this:
Thanks in advance.




MatrixFormfor defining matrices. It does not define a matrix; instead it is only for displaying purposes. – Henrik Schumacher Apr 04 '20 at 20:41