Solve matrix equation without the inverses.

  • Thread starter Thread starter rapuy
  • Start date Start date
  • Tags Tags
    Matrix
AI Thread Summary
The discussion focuses on solving the matrix equation x = B^{-1} (2A + I) (C^{-1} + A)b without calculating any matrix inverses. Participants explore whether there is an identity for (2A + I)^{-1} that can be expressed without using the inverse. The conversation includes attempts to manipulate the equation by isolating x and expressing it in terms of known matrices. There is uncertainty about the validity of postmultiplying matrices with C and how it affects the equation. The overall goal is to find a way to express the solution without directly computing inverses.
rapuy
Messages
3
Reaction score
0

Homework Statement



If A, B, and C are nxn matrices, with B and C nonsingular, and b is an n-vector, how would you implement the formula
x = B^{-1} (2A + I) (C^{-1} + A)b

without computing any matrix inverses?

Homework Equations



Is there any identity for (2A+I)^{-1} that is expressed without the inverse?

The Attempt at a Solution



x = B^{-1} (2A + I) (C^{-1} + A)b
Bx = (2A + I)(C^{-1} + A)b

(2A + I)^{-1}Bx = C^{-1}b + Ab

If (2A+I)^{-1} is expressed without the inverse, I would have proceeded as follows:

(2A + I)^{-1}Bx - Ab = C^{-1}b
C[(2A + I)^{-1}Bx - Ab] = CC^{-1}b
C[(2A + I)^{-1}Bx - Ab] = b
C(2A + I)^{-1}Bx - CAb = b
C(2A + I)^{-1}Bx = (CA+I)b
 
Physics news on Phys.org
You can not be sure (2A + I)-1 exists!

I would try to write it in the form ( . . . )(x - b) = 0.
 
Ah , I see.

Here's another try:

x = B^{-1}(2A + I) (C^{-1} + A)b
Bx = (2A + I)(C^{-1}+ A)b
Bx = (2A + I)C^{-1}b + (2A + I)Ab
Bx - (2A + I)Ab = (2A + I)C^{-1}b

From here, I don't know how to get rid of C^{-1}. Is it ok to postmultiply the matrices, with C?
 
As a continuation of the above solution, is it ok if I do the postmultiplication before the vector b with C on both sides?

Bx - (2A + I)Ab = (2A + I)C^{-1}b

==>

[Bx - (2A + I)Ab] C = (2A + I)C^{-1}C b
BCx - (2A + I)AC b = (2A + I) b
 
I tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks
Back
Top