Quant Analyst Interview Prep
Quant Analyst Interview Prep
Stochastic Calculus
Basic Concepts
1. B0 = 0.
2. Itô's Lemma:
If f (t, Bt ) is a twice-differentiable function where Bt is a Brownian motion, then
∂f ∂f 1 ∂2f 2 ∂f
df (t, Bt ) = ( + μ+ 2
σ ) dt + σdBt
∂t ∂x 2 ∂x ∂x
For f (t, Bt ):
∂f 1 ∂2f ∂f
df (t, Bt ) = ( + 2
) dt + dBt
∂t 2 ∂Bt ∂Bt
Stochastic Integrals
1. Itô Integral:
t
Given a process Xt , the Itô integral ∫0 Xs dBs is defined as the limit of sums of the form
Properties:
t t t
1. Linearity: ∫0 (aXs + bYs ) dBs = a ∫0 Xs dBs + b ∫0 Ys dBs .
2
2. E [(∫0 Xs dBs ) ] = E [∫0 Xs2 ds].
t t
2. Stratonovich Integral:
t
Defined similarly to the Itô integral but using the midpoint: ∫0
Xs ∘ dBs =
t t
It is related to the Itô integral by the correction term: ∫0 Xs ∘ dBs = ∫0 Xs dBs +
1 t
2
∫0 ∂X
s
∂Bs
ds.
Advanced Concepts
Solution Methods:
1. Analytical solutions for simple cases.
2. Numerical solutions using discretization methods like Euler-Maruyama and Milstein.
Mnemonic for Itô's Lemma: "Partial time, half double space, full single space."
Link Brownian Motion Properties: "Zero start, independent steps, normal increments,
continuous path."
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 5/10
Discretization Techniques
1. Euler-Maruyama Method:
For dXt = μ(Xt , t)dt + σ(Xt , t)dBt :
1 ∂σ(Xt , t)
Xt+Δt = Xt + μ(Xt , t)Δt + σ(Xt , t)ΔBt + σ(Xt , t) ((ΔBt )2 − Δt) .
2 ∂Xt
1. Binomial Model:
Assumptions: Discrete time steps, two possible outcomes per step.
Formula: Price of option is the discounted expectation of future payoffs.
Steps:
1. Construct binomial tree.
2. Calculate option value at each node using backward induction.
e(r−q)Δt −d Δt ,
where p = u−d
, u = eσ
d = e−σ Δt .
2. Multinomial Model:
Extension of binomial with multiple possible outcomes per step.
3. Black-Scholes Model:
Assumptions: Log-normal price distribution, constant volatility, no dividends.
Formula:
σ T
Concepts:
Normal Distribution: Used for modeling continuous price changes.
Cumulative Distribution Function (CDF) N (d): Probability that a standard normal
variable is less than d.
Greeks: Sensitivities of option price to various parameters.
Delta (Δ): Rate of change of option price with respect to the price of the
underlying asset.
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 6/10
Gamma (Γ): Rate of change of Delta with respect to the price of the underlying
asset.
Vega (ν ): Sensitivity to volatility.
Theta (Θ): Sensitivity to time decay.
Rho (ρ): Sensitivity to interest rate changes.
4. Local Volatility Model:
Volatility is a function of both time and the underlying asset price.
Dupire's Formula:
∂C
2 ∂t
+ rS ∂C
∂S
+ qSC − qKC
(t, S) =
σlocal
1 2 ∂2C
2 S ∂S 2
dSt = μSt dt +
vt St dWt1
where dWt1 and dWt2 are correlated Brownian motions with correlation coefficient ρ.
Probability Concepts
1. Basic Concepts:
Probability Distribution: Describes likelihood of outcomes.
Expected Value: Mean of a random variable.
∞
E[X] = ∑ xP (X = x) (discrete),
E[X] = ∫ xfX (x) dx (continuous)
x −∞
1 (x−μ)2
fX (x) = e− 2σ2
2πσ 2
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 7/10
2. Advanced Techniques:
Law of Total Probability:
Bayes' Theorem:
P (B∣A)P (A)
P (A∣B) =
P (B)
Xn − μ d
→ N (0, 1)
σ/ n
MX (t) = E[etX ]
3. Exposure Measures:
Expected Exposure (EE): Average exposure over time.
EE(t) = E[Exposure(t)]
Potential Future Exposure (PFE): Maximum exposure at a future point with a certain
confidence.
Maximum Likely Exposure (MLE): Highest exposure at any time.
Effective Expected Positive Exposure (EEPE): Time-weighted average of EE.
Expected Negative Exposure (ENE): Similar to EEPE but for negative exposure.
Risk-Weighted Assets (RWA): Regulatory measure for risk exposure.
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 8/10
where coefficients depend on discretization.
Implicit Method:
Requires solving a system of linear equations.
Crank-Nicholson Scheme:
Combines explicit and implicit methods for stability.
Vi,j+1 − Vi,j 1
= [αVi+1,j + βVi,j + γVi−1,j ]
Δt 2
2
σ2
St+Δt = St exp [(μ − λk − ) Δt + σΔBt + J ]
2
∑i P (τ > ti )Δti
CDS spread =
∑i P (τ > ti )Δti ⋅ (1 − R)
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 9/10
ln(S0 /K)+(r−q+σ 2 /2)T
where d1 =
σ T
and d2 = d1 − σ T .
∂C 1 ∂2C ∂C
+ σ 2 S 2 2 + (r − q)S − rC = 0
∂t 2 ∂S ∂S
−∞
Monte Carlo Simulation: Simulate exchange rate paths and average payoffs.
N
1
C=e −rT
∑ max(STi − K, 0)
N i=1
Revision Tips
Thanks for reading !!
Organize: Group similar topics together for better retention.
Practice Problems: Solve as many problems as possible to understand concepts deeply.
Mnemonics: Use memory aids to remember complex formulas.
Flashcards: Create flashcards for key concepts and formulas.
Regular Review: Schedule regular reviews to reinforce learning.
Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 10/10