I have a minor technical issue. Let's say $Y = \sum^{n}_{i=1} X_{i}$. Now I want to find $P(Y > \gamma)$ by Monte Carlo. Let's assume the $X_{i}$ are i.i.d. Gamma distributed. How I see the solution to this problem is the following two cases:
Case 1:
- Generate $n$ random variables: $X_{i} \sim \mathrm{Gamma}(k,\theta)$.
- Check $X_{i} > \gamma$ for each $X_{i}$.
- Take the mean of the result from bullet point 2.
Case 2:
- Generate $m$ random variables $Y \sim \mathrm{Gamma}(n \cdot k,\theta)$.
- Take the mean of the result from the above bullet point.
What would be the right approach?