When CPM gives a task duration of 5 days and PERT estimates 4, 5, or 6 days, go with PERT’s weighted average (4 + 5 + 6)/3 = 5 days and pad your schedule accordingly.
What's Happening
CPM and PERT both map out project tasks, but they handle time in totally different ways. CPM works with fixed durations—you know exactly how long each step takes—and focuses on balancing cost against time. PERT, on the other hand, embraces uncertainty by asking for three estimates (best case, most likely, worst case) and then crunches those numbers into a single weighted average. Both methods trace the chain of dependent tasks—your “critical path”—to reveal the shortest possible project timeline and warn you when delays might derail the finish date.
Step-by-Step Solution
- Map the project network. Start by sketching nodes for milestones and arrows for tasks. These days, most teams skip the pencil-and-paper approach and jump straight to tools like Microsoft Visio 2026 or the free, open-source Diagrams.net for drag-and-drop simplicity.
- Collect data. With CPM you just ask each task owner for one “locked-in” duration. With PERT you need three numbers: the optimistic guess (a), the most realistic guess (m), and the pessimistic guess (b).
- Calculate PERT weighted average. Plug those three estimates into (a + 4m + b)/6. Say a=3, m=5, b=9; that gives you (3 + 20 + 9)/6 ≈ 5.67 days.
- Enter durations into your tool. In Microsoft Project 2026, open “Task Information” → “Advanced” → type in the duration. In Google Sheets, drop the formula
=ROUNDUP((A2+4*B2+C2)/6,1)and let the sheet do the math. - Identify the critical path. In Project 2026, flip to “View → Gantt Chart → Critical Path” and watch the longest chain light up. In Sheets, just sort by total duration and pick the row with the highest number.
If This Didn’t Work
- Monte-Carlo simulation. Grab ProjectManagement.com’s free Monte-Carlo add-in, run 1,000 random trials using your PERT ranges, and you’ll get a 90 % confidence band for the final delivery date.
- Buffer sizing. When PERT shows wild swings between best and worst cases, tack on a 25 % buffer to the total critical-path time (that’s straight from PMI 2025 guidelines).
- Hybrid CPM-PERT chart. Overlay the single CPM estimate and the PERT range on the same timeline so stakeholders can instantly see the best-case versus worst-case dates.
Prevention Tips
| Action | Frequency | Tool | Source |
|---|---|---|---|
| Re-baseline durations | Every milestone | Project 2026 “Update Project” | PMI |
| Store PERT ranges in a shared sheet | Monthly | Google Sheets or Excel 365 | Google Docs Editor Help |
| Run a critical-path review | Bi-weekly | Teams or Slack bot | PMI Scheduling |