Exercise: Newton's Method for Implied Vol — Convergence and Edge Cases
Prerequisites: Implied Volatility, Derivation of the Black-Scholes Formula
Problem
- Convergence. Consider the Newton iteration
Given that is strictly increasing and strictly convex for (where satisfies ) and strictly concave for , argue from first principles why Newton's method converges for any starting guess when the market price lies in the arbitrage-free band.
-
Edge case — deep OTM. Consider a -strike call with , , , market price (very cheap). Compute the vega at . Why might Newton's method converge slowly here? What is the practical fix?
-
Edge case — price outside arbitrage bounds. For a -strike call with , , , the arbitrage-free band is . Suppose a stale data feed reports (below the lower bound). Describe what Newton's method does. How should a production implementation handle this?
-
Starting point. Manaster and Koehler (1982) suggest initialising with
Apply this heuristic to the call of Part 2. How does it compare to a naive start of ?
Hint
For part 1, use the fact that a convex, monotone function's Newton iterates from the right of the root decrease monotonically to the root. The concave regime flips the direction. Combining both cases gives global convergence for the bijective .
Jump to the solution when you're ready.