I’m doing an assignment where I use my own implementation of Implicit Eulers with adaptive step size using error estimation. For this, I have made my own implementation of the Newton solver. In one ODE system, my numerical solver fails to solve the following matrix equation.
I guess I should have looked at the results before I said that it wouldn’t affect the condition number. The condition number for the scaled matrix is on the order of 10^19 instead of 10^33 but it is still computationally singular.
The condition number won’t change in infinite precision, but that’s not what we’re dealing with here. Anyhow, as @dmbates observes, 10^19 is still bad enough to make most solvers complain.
Indeed, my bad. You probably only gain floating-point representation space.
My guess is that Maple computes the solution analytically (relatively easy for 3x3).
Thank you all for your answers they were very helpful to understand what was going on! I ended up tweaking the tolerances of my solver, which avoided that ill-conditioned system and solved the ODEs.