April 10th, 2009, 8:45 am
Hi there,Let's say I want to calculate the delta. I can price my instrument using Monte Carlo through PV = PV(S), where S is spot of the underlying.So I calculateDelta = [PV(S+epsilon) - PV(S)] / epsilonMy question is, is it standard practice to reuse the same random numbers in both price calculations?I would imagine it is (although this is not what I have seen so far), not only because it would be computationally cheaper, but if my calculations below are correct we would also get a (much) more accurate estimate of the risk.Let's call sigma_P the standard error of PV(S), and sigma_P' the standard error of PV(S+epsilon). Whether or not I re-use the same random numbers, these will be very similar, so let's call both "sigma".Generally speaking,Var[PV(S+epsilon) - PV(S)] = sigma^2 + sigma^2 - 2*rho*sigma^2If I don't reuse my random numbers, the two quantities are practically independent, so rho = 0, which gives me the maximum standard error = sqrt(2)*sigmaHowever, if I do reuse the random numbers, rho = 1, which gives me zero (!) standard error.Have I missed something, or have I just realised something that is well-known? Or maybe nobody cares?Thank you for your answers.