Thread: Partial Differential Equations PDEs and their numerical approximation

Hi Dr. Duffy, I am a final year student looking for learning some numerical methods. Recently, I saw a MIT course 18.085 Computational Science and Engineering taught by Prof. Strang. And He has a book about it. What do you think of it? Thanks a lot :)
 
Gil Strang is probably the best maths educator around. His focus is mostly linear algebra and his videos are excellent, especially his linear algebra videos.
Actually, he was PhD supervisor of my PhD supervisor, so he is my academic grandfather :)

I usually write all my own stuff. My forthcoming (self-contained) book on PDE/FDM (for finance) (story A-Z) is


I actually discuss Strang FDM splitting in the book.


And online courses

 
Last edited:
A bit of a preview of some topics

Several chapters are devoted to FDM for 2-factor European/American options We tested the relatrve performance on spread options for the same level of accuracy:

1 Saulyev ADE : 1 second
2 Barakat and Clark 2.2
3 Yanenko 4.2
4 "Classic" ADI 4.0 (4 times slower!)
5 Predictor-Corrector 3.8
6 Marchuk-Strang 7.6

. Methods 1+2 do not involve solving matrix systems. 3-6 solve tridiagonal systems.
. It is possible to compute greeks by writing them as PDEs and using CSE approach (essentially tbe Cauchy-Kowalewski (Lax-Wendroff) technique). We did it for 1-factor and CSE for spreads should also be fast as well.
. Sauly'ev ADE is also the easiest to program.
. We mapped PDEs to unit square making boundary conditions easy (Fichera theory).
. Schemes 1 and 2 can easily be applied to 3-factor problems.,
. Code used is C++20, of course.
. The methods are also applicable to fixed income (Hull-White, CIR-style, mean-reverting).
 
Last edited:
Back
Top