Difficulty: Easy
Correct Answer: t = (to + 4*tm + tp) / 6
Explanation:
Introduction / Context:
PERT (Program Evaluation and Review Technique) models activity duration uncertainty using three-point estimates: optimistic (to), most likely (tm), and pessimistic (tp). The question asks for the expected time formula used to compute a weighted mean for scheduling and risk-aware planning.
Given Data / Assumptions:
Concept / Approach:
Classical PERT applies a weighted average emphasizing the most likely duration. The standard weighting is: to (weight 1), tm (weight 4), tp (weight 1). The denominator 6 normalizes the weights. This prioritizes tm while accounting for the range from best-case to worst-case.
Step-by-Step Solution:
1) Recall PERT mean formula: expected t = (to + 4*tm + tp) / 6.2) Substitute if numerical values are given (not required here).3) Use t for forward pass (earliest times) and for summary statistics of activity duration.
Verification / Alternative check:
Check units: all terms are time; linear combination over 6 maintains dimension of time. Compare with simple average (to + tm + tp)/3, which would underweight the most likely estimate relative to PERT practice.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
t = (to + 4*tm + tp) / 6.
Discussion & Comments