Simulating bivariate distribution?

  • Context: Undergrad 
  • Thread starter Thread starter zli034
  • Start date Start date
  • Tags Tags
    Distribution
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 4K views
zli034
Messages
106
Reaction score
0
Hi:

From the undergraduate study we know that if we want to simulate a random variable x with distribution Fx(x). We just make Fx(x)=u, u is a uniform distributed variable, find Fx inverse of U. Then we just need to plugin u the uniform distributed random variable.

How about we have Fxy(x,y). How do we simulate this distribution if we only have uniformly distributed variables to plugin?

Any clues?

Lee
 
Physics news on Phys.org
1. Find the marginal distribution of X.

2. Using a 1-dimensional method, draw a simulated value of X based on the marginal distribution-- say it's x0.

3. Fxy(x0, Y) is a 1-dimensional pdf. Use a 1-dimensional method to simulate a value of Y.
 
cool, now I can build simulation to check my homework answers.