Is there a shortcut to invert this 3x3 matrix?

$\begingroup$

Is there an easy way to invert the matrix on right-hand-side? Like is there some quick formula or observation we can make or do I have to do it manually all the way? Please, dont be harsh on me since I am not good at linear algebra.

enter image description here

EDIT: Result

enter image description here

$\endgroup$ 6

1 Answer

$\begingroup$

Generally if $A$ is a block matrix, that is a matrix of the form

$$\begin{pmatrix} A_1 \\ & A_2 \\ & & \ddots \\ & & & A_n \end{pmatrix}$$

for square matrices $A_i$, and zeroes in all the blank spots, and if all the matrices $A_i$ are invertible, then $A$ is also invertible, with inverse

$$\begin{pmatrix} A_1^{-1} \\ & A_2^{-1} \\ & & \ddots \\ & & & A_n^{-1} \end{pmatrix}.$$

You should convince yourself of this with some small examples. Anyway, do you know how to quickly inverse a $2$ by $2$ matrix? By the principle I mentioned, you can immediately invert your $3$ by $3$ matrix, which is a block matrix consisting of the $2$ by $2$ matrix

$$\begin{pmatrix} \cos \phi & -\sin \phi \\ \sin \phi & \cos \phi \end{pmatrix}$$

and the $1$ by $1$ matrix $(1)$.

$\endgroup$ 3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like