• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Fourier Transform Methods for solving DE's and PDE's

Joined
8/8/13
Messages
56
Points
18
I am looking for a good book or some online online videos and lectures which focuses on FT Techniques for solving Differential Equations and Partial Differential Equations.

Would prefer something which is easy to understand.

Thanks in advance.
 
I am looking for a good book or some online online videos and lectures which focuses on FT Techniques for solving Differential Equations and Partial Differential Equations.

Would prefer something which is easy to understand.

Thanks in advance.

Here:

If you are finding it difficult you should first brush up on
1. Power series and respective operations on power series (addition/subtraction, multiplication/division and finally differentiation)
2. After this re-read your notes on complex algebra.

The rest should follow through fairly easily.
 
And PDE is a very wide field. Once you have learned the basis of FT you can try applying it to the 1d heat equation.

Heat equation - Wikipedia

Once you understand it for this case you can then move on to more advanced PDEs in computational finance, for example.

// a bit of Fourier series does no harm, either.
 
And PDE is a very wide field. Once you have learned the basis of FT you can try applying it to the 1d heat equation.

Heat equation - Wikipedia

Once you understand it for this case you can then move on to more advanced PDEs in computational finance, for example.

// a bit of Fourier series does no harm, either.

Yes exactly go through some Heat Equation examples those are always the ones first taught in class for Fourier transforms and then build up from there.
 
Back
Top