I've been using NSolve a moderate (50-100 equations) size system of linear equations and it has been working splendidly (Solve on the other hand is extremely slow) and I thought I'd look up the method it is using is there anyway to:
a) See which method Mathematica chooses to use for a particular set of equations?
b) See what are the available methods to NSolve. The documentation for NSolve doesn't show anything specific under Details and Options.
NSolveuses this in all cases concerning linear equations? Still why isNSolveso much quicker than justSolveif the method is essentialy the same. And is there a way to tell Mathematica to explicitly print the method it's using not just forNSolvebut other functions where there is a variety of methods to choose from? – Jānis Šmits Jan 16 '14 at 11:30Still why is NSolve so much quicker than just Solvenumerical methods in general are faster than symbolic, but not as accurate, everything else being equal. – Nasser Jan 16 '14 at 12:46SolveandNSolveessentialy use the same method "Gauss factroing with Markowitz products" why should the speed of the calculation differ. I'm ok withNSolvenot being as accurate but that would imply that it takes a different approach to get the result. – Jānis Šmits Jan 16 '14 at 12:56