English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I need to invert an n*n matrix where the values down the main diagonal are all equal to zero. I've tried usingh numerical recipes such a Lower/Upper decomposition and Singular Value Decomposition, yet these seem to give out an error message. Is it actually possible to calculate the inverse of such a matrix?

2006-11-27 04:31:22 · 3 answers · asked by RobLough 3 in Science & Mathematics Physics

3 answers

It depends on the matrix. There would have to be other non-zero values off the diagonal. In that case, use elementary row operations of the adjunct matrix
[A|I]
until you get a matrix of the form
[I|B].
Then B will be your inverse. If you cannot get I on the left hand side using ERO's then A will not be invertible.

2006-11-27 05:52:17 · answer #1 · answered by mathematician 7 · 1 0

each and every component to that matrix must be both 0 or a million........ so the placement (a million,a million) must be filled with the help of two approaches. it truly is real for all positions so kind of such matrices are 2^9 as there are 9 positions in a 3x3 matrix. complete kind of such matrices are 512

2016-11-27 01:47:51 · answer #2 · answered by ? 3 · 0 0

Yes is it possible..
for Matrix A:

Inv(A) = Adj(A) / Det(A)

where :
Adj(A) = Adjoint matrix (A)
Det(A) = Determinant(A)
You have to check the determinant (Det(A)) if it is equal to zero then the matrix has no inverse. a matrix CAN have a Determinant not equal to zero value even with all the main diagonal entries as zeros.

2006-11-27 07:19:26 · answer #3 · answered by AMTV 3 · 0 1

fedest.com, questions and answers