Solving System of 2n Equations

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
1 reply · 2K views
defunc
Messages
55
Reaction score
0
Hi there,

I have a system of 2n equations. n of these unknowns can be expressed explicitly in terms of the remaining n. The resulting n x n matrix is more dense than the original 2n x 2n and the original 2n x 2n system has some desired properties like diagonal dominance etc. So, should I leave the 2n equations intact or perform the back substitutions and solve the more complex n equations?

Thanks!
 
Physics news on Phys.org
Sounds like you are concerned with computational efficiency and/or accuracy. I think it depends on (1) how big n is and (2) what the condition number is of the matrix in each case. The 2n case will require roughly 8 times the computational resources versus the n case, but if the condition number is more favorable, it might be worth it.