1

There are three variables, X3 is a function of X1 and X2, X2 also depends on X1.The dependency relationship is shown as the following graph.

enter image description here

In specific, X3= f(X1, x2) and X2=g(X1). Therefore, X3=f(X1, g(X1)). If the probabilistic distribution of X1 is known, how to get the probabilistic distribution of X3.

user297850
  • 253
  • 1
  • 3
  • 8

1 Answers1

1

You need to tell us what the distribution of x1 is and what f and g function are exactly? When f and g are simple, we can usually solve this analytically. But when the function is complex, this kind of problems are typically approximated by Monte Carlo simulation.

Louis T
  • 1,148
  • 8
  • 22