I often have the need to estimate tasks and I really suck at it. I found this nifty formula to try help smooth things out.
You guess the best case scenario, likely scenario, and worst case scenario. Then the formula tallies and averages a number you can use with a bit of confidence.
(best + (2 * likely) + (3 * worst)) / 6
Since I do this enough I wanted it easily available in my daily TiddlyWiki productivity tool. Here is what I came up with.
title: Estimation Calculator
|! Best | <$edit-text field="best" type="number"/> |
|! Likely | <$edit-text field="likely" type="number"/> |
|! Worst | <$edit-text field="worst" type="number"/> |
<$set name="result" value={{{
[all[current]get[best]]
[all[current]get[likely]multiply[2]]
[all[current]get[worst]multiply[3]]
+[sum[]divide[6]]
}}}>
''Result:'' <code><<result>></code>
</$set>