We deal with "jobs" - a mini project involving multiple parties, resources and time constraints, etc. Jobs progresses through 4 well defined states from start to end; call them S1, S2, S3 and S4 where S1 is the start of the job and S4 is where we have invoiced the client and the job is closed.
Jobs are for different clients, in different regions and run by different people (project managers) within our company.
Not every job in state S1 will make it to S4 as the job may be cancelled. From historical data we can readily determine for each combination of client/region/project manager the probability of getting from S1 to S4, S2 to S4 and S3 to S4.
Also the length of time from S1 to S4 may differ for each of these combinations so we also know historical average time to go from S1 to S4, S2 to S4 and S3 to S4.
We may have 1000 jobs currently in progress. ie in states S1, S2 or S3. We need to predict how much money we will be invoicing each week in the future.
I don't think is a problem since it is little more than the sum for each future week of current estimated value of the job x the probability that it will get from its current state to S4 and then apply this to a future invoicing week based on the historical average length of time to go from the current state to S4. (be sure to call me out if this is flawed)
You can imagine that this will produce a nice bar chart that will get senior management all excited.
The problem I am facing is that the finance guys (who are actually really smart) would like to have some confidence intervals, margins or error (or standard deviations or the like) that will help them communicate where the numbers are really solid and where they start to become rubbery.
I would imagine that the invoicing for the future few weeks where we are going from S3 to S4 should be highly accurate and the margin of error would be very small yet 3 months out I would like to think that the margin of error could be quite large.
My problem is I do not know what to even "google" to solve this problem. How do I go from the data that I have available to a margin of error?
It is very binary in that a job either makes it to S4 or it doesn't. I remembered the binomial distribution but that does not look appropriate. I started thinking about standard distributions but this does not seem to work each since it does not make sense to have a standard deviation over boolean logic.
One suggestion was that if there is a 50% chance of making it to S4, and the job value is $$1000 then apply $500 to the future invoicing week with $500 either side as a margin of error. On the surface this seems sensible but if there is only a 10% chance of making it S4 then would you attribute $100 to the future invoicing week with a + / -$900 margin of error (or maybe +$900 / -$100). +$900 seems far too high when the probability of getting to S4 is so low and when all of the work in progress is considered the upper bound of the margin of error will be huge and totally unrealistic.
Any tips and pointers would be greatly appreciated. Keep it simple. I is an engineer but my stats were forgotten two beers after the exam.