----B----- -----C----- --D--- -------E-------- ----F---- ------G------ ----H-----
1
2 Confidence 50%
3
4 Year Work Orders Months Unsafe Incidents Time-Loss Non-Time Loss Fatalities
5 Year 1 8,082 12 3 0 1 0
6 Year 2 9,000 12 2 0 0 0
7 Year 3 10,766 12 11 0 0 0
8 Year 4 11,533 12 8 0 0 0
9 Total 39,381 48 24 0 1 0
10
11 High Limit (none) 28,407 (none)
12 Low Limit 56,815 14,625 56,815
You can't calculate probability, but you can calculate the upper and lower limits of a confidence interval for some specified confidence.
In F11 and copy across,
= IF(F9 = 0, "(none)", 2 * $C$9 / CHIINV(Confidence / 2, 2 * F9) )
That says there is no upper limit to the confidence interval that a time loss accident will occur, as none have occurred to date.
In F12 and copy across,
=IF(F9 = 0, $C$9 / -LN(1-Confidence), 2 * $C$9 / CHIINV((1-Confidence) / 2, 2 * (F9 + 1) ) )
That says that with 50% confidence (the value in C2), the low limit of a time loss accident is 56,815 work orders.
Bookmarks