m4r35n357
- 657
- 148
Spoke too soon, OK so I've done the algebra which gives me a set of four (orthonormal?) vectors, yes? So how is the tetrad matrix constructed from these vectors, or is it constructed in some other way? Is it just four column vectors side by side?m4r35n357 said:OK thanks, I think I have enough clues now to sort this out.
I now realize part of my confusion is that I am struggling with alien (to me) terminology, frames/coframes are not concepts that I've dealt with up until now . . .
[EDIT] perhaps I mean four row vectors stacked up . . . ?
[EDIT 2] I have now tried both and obtained the correct metric as in the following Maxima code:
Code:
kill(all);
fAa: matrix([1, %beta, 0, 0], [0, 1, 0, 0], [0, 0, r, 0], [0, 0, 0, r * sin(%theta)]);
nuAB: matrix([-1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]);
Gab: fAa . nuAB . transpose(fAa);
Code:
kill(all);
fAa: matrix([1, 0, 0, 0], [%beta, 1, 0, 0], [0, 0, r, 0], [0, 0, 0, r * sin(%theta)]);
nuAB: matrix([-1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]);
Gab: transpose(fAa) . nuAB . fAa;
Last edited: