- #1
ingenuous
- 8
- 0
When solving differential equations numerically with finite difference methods, textbooks get to the point of solving:
A psi_(n+1) = B psi_n
(with A, B some matrices, typically complex conjugate of each other) and advise on using LU decomposition to do so.
My question is, why not solving it as:
psi_(n+1) = A^{-1} B psi_n
which, by the way, shows that the method is explicit, you compute psi at time n+1 from psi at time n.
The alleged deep difference between Euler method and, say, Crank-Nicolson, is mystifying to me, if you rewrite A^{-1} B = C, they are formally identical, just using different matrix elements for C. Not really a big deal.
What am I missing?
A psi_(n+1) = B psi_n
(with A, B some matrices, typically complex conjugate of each other) and advise on using LU decomposition to do so.
My question is, why not solving it as:
psi_(n+1) = A^{-1} B psi_n
which, by the way, shows that the method is explicit, you compute psi at time n+1 from psi at time n.
The alleged deep difference between Euler method and, say, Crank-Nicolson, is mystifying to me, if you rewrite A^{-1} B = C, they are formally identical, just using different matrix elements for C. Not really a big deal.
What am I missing?