How would I go about finding out the confidence intervals around a set of distinct bianary occurrences where each occurence has a different associated probability and each occurence is weighted?
To be more specific, we typically determine a milestone budget by assigning reasonable probabilities to each milestone. Each milestone typically usually has a differnt probability of success and a different dollar value. For example if we need to determine the amount of money we need to hold out for 3 milestones, we would do this: $$P(\text{milestone}_1) \text{cost}(\text{milestone}_1)+P(\text{milestone}_2) \text{cost}(\text{milestone}_2)+\dots $$ So it could look something like this: Budget = (10% x $\$$1,000,000) + (50% x $\$$5,000,000) + (20% x $\$$20,000,000) = $\$$6,600,000.
Each milestone is bianary in that it either happens or it doesn't. so for the first milestone, we are saying that there is a 10% chance that we will need to pay $\$$1M dollars and a 90% chance that we will pay nothing.
Obviously, we won't ever actually be paying the probilized amount of $\$$6.6M. How would I go about determining the probability range around where the spend is most likely to fall. In other words, if I wanted to demonstrate where the actual spend might fall with a certainty of 80% how would I go about calculating this? Note that we have more events in my real world problem...
Thanks in advance for any help. I am not a statistician at all so please forgive my ignorance and any lack of clarity.