May 26th, 2003, 10:22 am
You could also do it numerically via monte carlo if a and b are numerically defined. All the tools that you would need are readily available. You basically generate independent normal variables. You know that you can make them corelated via:normal2 = normal1*rho + (1-rho)*z1where normal1 and z1 are independent (use Box-Muller for instance). Then reject those samles for which either z1>a or normal2 >b. Using the rest, evaluate exp(z1+normal2). You can use all sorts of variance reduction methods, like antithetic or control variates. If you must find an analytical solution then you can use the laws of conditional expectation.You basically want [ \integral_{a^infity} \integral_{b^infity} exp(x+y) . f(x,y) dy dx ] / P(x>a, x>b)f(x,y) is the joint distribution of x and y, where they are correlated.I'm sure that you can use some properties of bi-variate normal distribution to somehow evaluate this. Regards,Sam