Compute joint, marginal, and conditional distributions for pairs of random variables
A joint PDF or PMF on a region is given, and you are asked for a marginal, a conditional, or a probability over a sub-region.
Sketch the joint support — this is the single biggest accuracy boost on multivariate problems. To get a marginal, integrate (or sum) the joint over the other variable across that support. For a conditional density, divide the joint by the marginal of the conditioning variable. For a probability over a region, set the integration order to match the geometry.
f_{X|Y}(x|y) = f(x, y) / f_Y(y); marginals are f_Y(y) = ∫ f(x, y) dx.