Tested tool guide
Tested browser tools
Checked August 16, 2026
What Time-to-Completion Estimator does, with a checked example
Three-point estimation turns three guesses per task into a completion date with a defensible range. You enter an optimistic, most likely, and pessimistic duration for each task; the tool combines them into an expected total, projects the completion date, and draws the probability distribution with confidence bands such as 68% and 95%. The thing most users are surprised by: the headline date is not your most likely date. The expected value is a weighted average, and because pessimistic ranges usually stretch farther than optimistic ones, the projected date lands later than your middle guess, with a wider band than intuition suggests.
Worked example
A concrete input and expected output from the current implementation.
Input
Task 1: optimistic 5, most likely 8, pessimistic 14 (working days). Task 2: optimistic 3, most likely 5, pessimistic 9 (working days).
->
Expected output
Expected total: 13.83 working days, standard deviation 1.80 days. The projected date is your start date plus 13.83 working days. Confidence bands: 68% from 12.0 to 15.6 days, 90% from 10.9 to 16.8 days, 95% from 10.3 to 17.4 days. Probability of finishing on or before the projected date: about 50%.
Each task's expected duration is (O + 4M + P)/6: (5 + 32 + 14)/6 = 8.50 and (3 + 20 + 9)/6 = 5.33, summing to 13.83. Each task's standard deviation is (P - O)/6: 1.50 and 1.00, and variances add: 2.25 + 1.00 = 3.25, so the total standard deviation is sqrt(3.25) = 1.80. The 95% band is 13.83 +/- 1.96 x 1.80, rounding to 10.3 to 17.4 days.