What Are the Practical Applications of Matrix Division?

  • Context: Undergrad 
  • Thread starter Thread starter Sledge
  • Start date Start date
  • Tags Tags
    Division Matrix
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
Sledge
Messages
1
Reaction score
0
Is it possible to compute matrix (A/B) without first finding the inverse of matrix B but ending with EITHER { A * (Inverse of B) } OR { (Inverse of B * A }...i think i discovered the trick
 
Physics news on Phys.org
Another way to write ##X=A/B \equiv AB^{-1}## is ##XB=A##. This has a unique solution X if B is not singular. You can solve for X in XB=A using Gaussian elimination.

Another way to write ##X=B \backslash A \equiv B^{-1}A## is ##BX=A##. This, too, has a a unique solution X if B is not singular. You can solve for X in BX=A using Gaussian elimination.

What if B is singular? The standard approach is to use the pseudo-inverse, and now you have but no choice to compute that inverse, typically via singular value decomposition.
 
what would be the uses of matrix division?