Loading [MathJax]/jax/output/HTML-CSS/jax.js
In [4]:
%pylab inline
lecture = 13

import sys
sys.path.append("lib")
import fmt
import sympy as sp
import pandas as pd
from IPython.display import display

assert sp.__version__ == "0.7.5", "Need sympy version 0.7.5 to render properly"
sp.init_printing(use_latex = True)
Populating the interactive namespace from numpy and matplotlib

Lecture 13: Numerical Methods for Partial Differential Equations

Topics

  • More on the stability of FDM for Black-Scholes
  • Multi spatial variables: ADI method
  • Numerical examples
0