• 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!

A question about non-typical Black-Scholes equation

Joined
10/2/12
Messages
4
Points
11
Hi everyone, this is my first question so it may be not particularly well-posed. And I can't find anything similar on the forums. Anyways, there's a Black-Scholes like PDE:

\(\large -\frac{\partial V}{\partial t} + \frac{1}{2}\sigma^2S^2\frac{\partial^2 V}{\partial S^2}+rS\frac{\partial V}{\partial S}-rV=0\)

With boundary conditions:

\(V\large(0,S\right) = max\large(E-S,0\right)\)
\(V\large(t,S^*\right) = E-S^*\large(t\right)\)
\(V\large(t,\infty\right) = 0\)

Where
\(\left. \frac{\partial V}{\partial S} \right|_{S=S^*} = -1\)

and for \(S \le S^*\), \(\frac{\partial V}{\partial t} = 0\)

Sigma, r and E are given. The goal is to find numerical solution for V(a, b), where a and b is some values.

Seems like it's a free boundary problem and numerical solution is the only way. So I tried to transform this PDE to heat equation in order to get rid of free boundary later (this described, for example, in "The Mathematics of Financial derivatives" by Wilmott p.166).
But, it seems, that resulting heat-like equation \(\frac{\partial v}{\partial t} =
-\frac{\partial^2 v}{\partial x^2}\) is typical ill-posed PDE. That minus is from original equation. I wonder if I skipped some transformation which would allow me to come to normal PDE or original equation is ill-posed from the beginning.

Since i have really minimal knowledge of options and Black-Scholes atm, maybe someone could clarify, is this equation makes any sense from financial point of view? Or someone would give any advice how to succeed in finding correct solution.
Thanks in advance.
 
if u want to see relationship between heat equation and BS pde - read Steele`s Stochastic calculus. i did not understand what is E?
 
Hi kernel, I can tell you that the problem is not ill-posed and it is exactly the same as the free boundary problem to be solved for the arbitrage-free price of an American Put Option. In financial literature, the free boundary problem to be solved for the arbitrage-free price of an American Put Option is posed as


Vt+12σ2S22VS2+rSVSrV=0

V(T,S)=max(ES,0)
; T is the time the option expires
V(t,S)=ES(t)
V(t,)=0

Where
VSS=S=1

and for
SS
,
Vt=0

If we apply a simple change of variable as u = T - t, this problem becomes

Vu+12σ2S22VS2+rSVSrV=0

V(0,S)=max(ES,0)
;
V(u,S)=ES(u)
V(u,)=0

Where
VSS=S=1

and for
SS
,
Vu=0

Which is exactly the boundary value problem you are trying to solve.

 
I don't see how you get a backward heat equation from a forward BS PDE after a transformation. And the free boundary is irrevelant IMO to the issue.

Are you confusing t and T - t?

BTW, what makes your PDE 'non-typical'?
 
Hi kernel, I can tell you that the problem is not ill-posed and it is exactly the same as the free boundary problem to be solved for the arbitrage-free price of an American Put Option.

Thanks, Timmi. I already found that my problem is exactly american put with free boundary, which well described in various papers. Anyway, thanks for your reply.
 
I don't see how you get a backward heat equation from a forward BS PDE after a transformation. And the free boundary is irrevelant IMO to the issue.

Are you confusing t and T - t?

BTW, what makes your PDE 'non-typical'?

You right about the fact that there's nothing special about this PDE. I just got confused.
However, I think that problem is directly connected with free boundary problems. For instance in
this paper almost identical problem being solved.
 
I think if the time-step size is chosen carefully, a simple explicit finite difference scheme will suffice - or you could go for a Crank-Nicolson finite scheme with a PSOR solver.
 
I think if the time-step size is chosen carefully, a simple explicit finite difference scheme will suffice - or you could go for a Crank-Nicolson finite scheme with a PSOR solver.

Nope, on all these counts. Each count for a different reason why not.
 
Hi Daniel,

If we express the PDE as Vt = LV(t, S) with L denoting the operator, take the forward difference approximation of Vt between time levels n and n + 1, and discretise LV(t, S) at time level n, with the time step sufficiently small, I believe one should be able to march the solution from the initial values (payoff)
V(0,S) to the solution V(t,S), by explicitly computing the values at time level n + 1, from the values
at time level n, and applying the free boundary constraints if necessary. It would be identical to the explicit
finite difference scheme used to solve the Black-Scholes inequality for an American Put Option, whereby
one would march backwards in time from the terminal values V(T,S) to the solution V(t,S), by explicitly
computing the values at time level n, from the values at time level n + 1, and applying the free boundary
constraints.

I think this analogy should also enable a Crank-Nicolson-type finite difference scheme with PSOR.
 
Many thanks Daniel,

Very interesting results, and great food for thought!

Best Regards
Timmi
 
I think this analogy should also enable a Crank-Nicolson-type finite difference scheme with PSOR.

3. CN 'wiggles' at the strike E (and delta is real bad)

Rannacher smoothing combined with Crank Nicolson may be a good way to work against wiggling at strike.
 
Back
Top