PERT Estimate Calculator

Calculate PERT (Program Evaluation and Review Technique) estimates with weighted averages. Get expected duration, standard deviation, and confidence intervals for project tasks.

Primary Task Estimate

PERT Estimate
7.00 days
(4 + 4×6 + 14) / 6
Standard Deviation (σ)
1.67 days
(P − O) / 6 = (14 − 4) / 6
Variance (σ²)
2.78
Needed for combining multiple task estimates
Triangular Estimate
8.00 days
(O + M + P) / 3 — equal weights, higher than PERT
68% Confidence
5.33 – 8.67 days
E ± 1σ — likely range
95% Confidence
3.67 – 10.33 days
E ± 2σ — good for committed deadlines

Estimate Distribution

O=4.00
E=7.00
M=6.00
P=14.00

Additional Tasks (Project Total)

Planning notes, formulas, and examples

About the PERT Estimate Calculator

The PERT Estimate Calculator uses the Program Evaluation and Review Technique to calculate weighted task duration estimates from optimistic, most likely, and pessimistic scenarios. PERT is one of the most widely used methods in project management for creating realistic schedule estimates that account for uncertainty. It is especially useful when teams need to replace a single guessed date with a defensible range.

Unlike simple averaging, PERT weights the most likely estimate four times heavier than the optimistic and pessimistic values, producing a more realistic expected value. The technique also calculates standard deviation and variance, enabling probability-based schedule analysis with confidence intervals at 68%, 95%, and 99.7% levels.

This calculator supports both individual task estimation and multi-task project analysis. Enter estimates for multiple tasks to see the total project duration with aggregate confidence intervals, critical path identification, and Monte Carlo-style risk analysis. It also supports the modified PERT formula with adjustable weighting factors for teams that prefer different emphasis on the most likely estimate.

When This Page Helps

Use this calculator when you need a schedule estimate that reflects uncertainty instead of a single-point guess. It is useful for task planning, deadline discussions, buffer setting, and combining several three-point estimates into one project-level duration range. It also gives stakeholders a clearer view of risk than a flat duration estimate.

How to Use the Inputs

  1. Enter the optimistic estimate (best case, everything goes right)
  2. Enter the most likely estimate (normal conditions, typical duration)
  3. Enter the pessimistic estimate (worst case, major obstacles)
  4. View the weighted PERT estimate, standard deviation, and variance
  5. Check confidence intervals for schedule planning buffers
  6. Add multiple tasks to see aggregate project duration estimates
Formula used
E = (O + 4M + P) / 6. Standard deviation σ = (P − O) / 6. Variance σ² = ((P − O) / 6)². For multiple tasks: E_total = ΣEᵢ, σ_total = √(Σσᵢ²). Confidence: 68% = E ± σ, 95% = E ± 2σ, 99.7% = E ± 3σ.

Example Calculation

Result: PERT estimate: 7.0 days, σ = 1.67 days, 95% CI: 3.7–10.3 days

E = (4 + 4×6 + 14)/6 = 42/6 = 7.0 days. σ = (14-4)/6 = 1.67 days. 95% confidence interval: 7.0 ± 2×1.67 = 3.7 to 10.3 days.

Tips & Best Practices

  • For the pessimistic estimate, think of what could go wrong and add time for it — most people underestimate this
  • Use historical data from past projects to calibrate your three-point estimates
  • The 95% confidence interval (E + 2σ) is a good target for committed deadlines
  • Break large tasks into smaller ones before estimating — granular estimates are more accurate
  • Re-estimate periodically as you learn more about the project — early estimates have the highest uncertainty

PERT in Agile and Software Development

While PERT was developed for large defense projects (Polaris missile program, 1958), it's widely applicable to software estimation. Agile teams can use three-point estimates during sprint planning to size stories more accurately. The standard deviation helps set realistic sprint commitments — committing to the PERT estimate gives roughly 50% confidence, while E + σ gives ~84%.

Monte Carlo Simulation for Project Schedules

For more sophisticated schedule analysis, PERT estimates can feed Monte Carlo simulations. Each task's duration is sampled from a beta distribution defined by its three estimates, and thousands of simulated project runs produce a probability distribution for total project duration. This shows the probability of meeting any given deadline and identifies which tasks contribute most to schedule risk.

Common Estimation Biases

Planning fallacy (overconfidence in best-case scenarios), anchoring (fixating on the first number mentioned), and Parkinson's law (work expanding to fill available time) all affect PERT inputs. Counter these by: using reference class forecasting (comparing to similar past projects), having different people estimate optimistic vs. pessimistic scenarios, and tracking actual vs. estimated durations to calibrate future estimates.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • PERT expected value = (Optimistic + 4 × Most Likely + Pessimistic) / 6. This weights the most likely estimate four times more than the extremes, creating a beta distribution approximation that reflects reality better than a simple average.