Jump to content

Recommended Posts

Posted

Is there a certain strategy or way to solve these because they take a really long time. Im sure this stratgey would also work for inverse matricies.

Posted

row reduction, when the left columns become the Identity matrix the system is solved.

there's really no other way to do it, in practice you always have a calculator or computer do it for you.

Posted

yea i know that, but they take a while, and for my test on monday my teacher is going to make us do it by "hand", so thats why i asked

Posted

To say Gauss-Jordan elimination is the only way is a bit strong, to say the least. I rarely use Guass-Jordan elimination, and I deal with matrices a lot. I frequently use various decomposition techniques: LU, Cholesky, QR, SVD, ...

 

Guass-Jordan elimination is the only way to do it by hand, perhaps.

Posted

Yes, I think that's probably the best thing to say. I don't think that people would generally ask for one to do LU decomposition on a matrix by hand in exam conditions :D

Posted

it is however a mehtod for solving systems of equations...

 

which is what the poster originally asked, personally I don't see how it really benfits the user as you can solve an upper triangular matrix U using backsubstitution.

 

maye I' missing part of its ability.

Posted

Speaking computationally, straight LU decomposition usually doesn't save much at all. But, there are incomplete LU decomposition algorithms that are much faster and usually give results that can be tuned in accuracy (whether you want 0.1% error or 0.001% or something else, for example). These are used for a lot of computational simulations -- especially when the linear system is an approximation of a non-linear system. In that case, you do not need to solve the linear system to really high accuracy (like a complete LU or Gaussion Elimination would), because that approximated linear solution is going to be used as the latest guess in the iterative method needed to solve the nonlinear problem.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.