If M = ⎝ ⎛ A 2 C 1 2 5 B 3 D ⎠ ⎞ and M − 1 = ⎝ ⎛ − 5 F 2 E − 1 3 H − 1 1 G 4 ⎠ ⎞ , find A + B + C + D + E + F + G + H .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution!
No need to solve for A , B , C , D 's separately. Once you have obtained M − 1 , just invert this matrix to recover the full M .
Log in to reply
its faster to solve then to invert(by hand ofc).
Log in to reply
With Matlab, inverting is faster than writing down the equations.
Log in to reply
@Abhishek Sinha – Obviously, if we asked a computer to do it, its gonna be faster to invert. And honestly, that's what I did after I found the inverse of M when solving the problem. I added the equation parts to the solution because it's faster by hand, and technically even if both were done by a computer, the equations one would take slightly fewer steps.
We note that M M − 1 = I , where I is the identity matrix. Let the elements of I be a i j . Then we have:
a 2 1 = 2 ( − 5 ) + 2 F + 3 ( 2 ) = 0 ⟹ F = 2 a 2 3 = 2 ( − 1 1 ) + 2 G + 3 ( 4 ) = 0 ⟹ G = 5 { a 1 1 = − 5 A + 2 ( 1 ) + 2 B = 1 a 1 3 = − 1 1 A + 5 ( 1 ) + 4 B = 0 ⟹ { A = 3 B = 7 { a 3 1 = − 5 C + 2 ( 5 ) + 2 D = 0 a 3 3 = − 1 1 C + 5 ( 5 ) + 4 D = 1 ⟹ { C = 4 D = 5 { a 1 2 = 3 E + 1 ( − 1 3 ) + 7 H = 0 a 3 2 = 4 E + 5 ( − 1 3 ) + 5 H = 0 ⟹ { E = 3 0 H = − 1 1
Therefore, A + B + C + D + E + F + G + H = 3 + 7 + 4 + 5 + 3 0 + 2 + 5 − 1 1 = 4 5 .
Nice compact solution!
a + b + c + d + e + f + g + h /. Solve ⎣ ⎡ ⎝ ⎛ a 2 c 1 2 5 b 3 d ⎠ ⎞ . ⎝ ⎛ − 5 f 2 e − 1 3 h − 1 1 g 4 ⎠ ⎞ = ⎝ ⎛ 1 0 0 0 1 0 0 0 1 ⎠ ⎞ ⎦ ⎤ ⇒ 4 5
Problem Loading...
Note Loading...
Set Loading...
we could use M M − 1 = I and M − 1 M = I to get a total of 18 different equations, the strategy to solve this problem would be to optimally pick 8 that makes this easier.
let us first define some notation, let i A denote the ith row of A , and A i denote the ith column of A . also, notice by definition of the identity matrix i A A j − 1 = δ i j .
Notice that 2 M and M 2 are independent of our variables, meaning products involving them will only be linear in each variable. furthermore notice some columns and rows of M − 1 contains only one variable. use this to your advantage to get the following: 2 M M 1 − 1 2 M M 3 − 1 1 M − 1 M 2 3 M − 1 M 2 = = = = ( 2 2 3 ) ⎝ ⎛ − 5 F 2 ⎠ ⎞ ( 2 2 3 ) ⎝ ⎛ − 1 1 G 4 ⎠ ⎞ ( − 5 E − 1 1 ) ⎝ ⎛ 1 2 5 ⎠ ⎞ ( 2 H 4 ) ⎝ ⎛ 1 2 5 ⎠ ⎞ = = = = − 1 0 + 2 F + 6 − 2 2 + 2 G + 1 2 − 5 + 2 E − 5 5 2 + 2 H + 2 0 = = = = 0 → 0 → 0 → 0 → F = 2 G = 5 E = 3 0 H = − 1 1 from this we have solved for M − 1 , i.e M − 1 = ⎝ ⎛ − 5 2 2 3 0 − 1 3 − 1 1 − 1 1 5 4 ⎠ ⎞ Now we solve for A , B , C , D , which can be done as follows(note that other orders of equation would also work, there are many optimal solutions to this part): 1 M M 1 − 1 1 M M 2 − 1 1 M − 1 M 1 1 M − 1 M 3 = = = = ( A 1 B ) ⎝ ⎛ − 5 2 2 ⎠ ⎞ ( A 1 B ) ⎝ ⎛ 3 0 − 1 3 − 1 1 ⎠ ⎞ ( − 5 3 0 − 1 1 ) ⎝ ⎛ 3 2 C ⎠ ⎞ ( − 5 3 0 − 1 1 ) ⎝ ⎛ 7 3 D ⎠ ⎞ = = = = − 5 A + 2 + 2 B 3 0 A − 1 3 − 1 1 B − 1 5 + 6 0 − 1 1 C − 3 5 + 9 0 − 1 1 D = = = = 1 → 0 → 1 → 0 → A = 3 , B = 7 C = 4 D = 5 of course, multiply the two matrices found to confirm that they are indeed inverses, as we skipped over some eqns.