Skip to content
Opt Dir

Project Management ยท Critical Path Method (CPM) and PERT

Which Chain of Activities Drives the Project End Date, and Which Activity Can Slip Without Hurting It?

Construction & Real Estate 7 min read
Also applies in: Manufacturing Public Sector
#critical path #CPM #PERT #project scheduling #early start late start #slack analysis #project management

A project has 50-300 activities with given durations and precedence. Which chain is the longest (critical path, drives the project)? Which activities can slip without delaying the project (slack)? Under uncertain durations, what is the probability of finishing by the target date? CPM (Kelley-Walker 1959) gives the deterministic answer; PERT (Malcolm-Roseboom-Clark-Fazar 1959) the probabilistic one โ€” the engine inside every project management tool.

In plain words

This page is for you if you run a mid-size construction, industrial-plant or enterprise software/IT project of 50-300 activities. The everyday questions: which tasks run sequentially, which can run in parallel; which chain is ‘critical’ โ€” i.e. a one-day slip on it slips the whole project by one day; which tasks have slack; if your duration estimates are uncertain, what is the chance of hitting the target date. Public-works and large-investment contracts typically charge 0.5-1.0% of contract value per day of delay; managing those numbers with a proper critical-path and slack analysis instead of a gut-feel Gantt chart is worth 5-25 million TRY a year in operating profit for a typical mid-size contractor. Inside: the method family in plain terms, a step-by-step path for an SMB, and the technical questions to ask when buying a project-management tool.

Sound familiar?

  • We manage 50-300 activity construction projects (residential, mall, motorway, small factory); the planner draws a Gantt chart and says 'the project takes 18 months', but which chain is critical and which activities have slack tolerance is not numerical โ€” it is intuition.
  • The tender spec says 'CPM/PERT mandatory' and we hand in a Gantt; but we do not report early-start, late-start, total-slack, free-slack for every activity โ€” we hand in only a total duration.
  • An activity slipped; will the project slip a week or not โ€” we do not know whether it is on the critical path, the planner says 'let me compute' and returns 2 hours later.
  • A supplier reported a 3-week slip on one item; what is its impact on the project completion date, which downstream activities slip, what is the contingency plan โ€” we cannot see this numerically.
  • On a public-works tender the daily delay penalty is 0.5-1.0% of the contract; we must manage this penalty numerically, but probabilistic analysis (PERT) is not done โ€” an 'optimistic schedule' is handed in, and it slips.
  • On an industrial plant erection (factory build-out, power plant, refinery unit) there are 200+ activities, multiple parallel crews, the critical path races across multiple chains โ€” manual tracking is not enough.
  • A software or corporate-IT investment project (ERP migration, data-centre move) is 80-150 activities; durations are estimated optimistically, the schedule risk of missing the target date is not numerical โ€” the board sees an intuition-based 'we are on plan' report.

Why it matters

What managing projects without the critical path and without slack analysis leaks: (1) Delay penalty accumulation โ€” public-works and large investment contracts typically carry 0.5-1.0% per day in delay penalties; on a 200-day project a 20-day slip eats 20-40% of the annual margin; a systematic critical-path analysis narrows the delay-penalty band by 20-40%, (2) Wrong-place rush investment โ€” without knowing the critical activities, the planner says ‘rush every activity equally’; rush resources spent on non-critical activities would have shortened the project by 2-4 weeks if redirected to the critical path, (3) Invisible propagation chain โ€” when an activity slips, the downstream effect is not numerical; at month-end ‘why are we behind’ is debated and the real cause is not found; a systematic analysis produces the propagation matrix exactly, (4) Uncertainty blind spot โ€” single-point estimates on a project where durations oscillate ยฑ20-50% hide the real risk; three-point estimates plus a probability distribution (P10/P50/P90) make the chance of hitting the target date numerical, (5) Crashing money sent the wrong way โ€” paying to shorten an activity only shortens the project if the activity is on the critical path; shortening a non-critical activity is money wasted, and in field practice 30-50% of rush-spending decisions land on the wrong activity, (6) Documentation and audit gap โ€” when a public-works audit asks for a critical-path report it cannot be produced; tender credibility drops. Field practice shows: a correct critical-path analysis cuts the project delay rate by 20-40%, shortens average completion time by 10-20%, and raises target-date hit rate from 30-50% to 75-90%. For a mid-size contractor (annual 50-200M TRY project portfolio) that is 5-25M TRY of operational gain per year.

How it's solved

Technical depth

In one sentence: Enter the activity list + precedence relationships, run a forward pass to compute each activity’s earliest finish, run a backward pass to compute its latest finish; activities with zero slack form the critical path โ€” to shorten the project, you must invest only in activities on that path.

In the Operations Research (the discipline that uses math and computers to solve business decisions) literature this problem is studied as two paired classical techniques: Critical Path Method (CPM) and Program Evaluation and Review Technique (PERT). CPM was developed in 1959 for chemical-plant maintenance planning, PERT in the same year for a missile programme; together they became the backbone of modern project management. CPM is resource-unconstrained โ€” only durations + precedence; PERT makes this probabilistic (durations as random variables). #007 RCPSP layers resource constraints on top; #066 Stochastic RCPSP produces a policy under uncertainty. CPM/PERT is the foundation of the chain โ€” the core engine under every project management tool. Three stages:

1. Modelling. Input data: (a) Activity list โ€” 50-300 activities (e.g. a residential block project: excavation, foundation concrete, columns, floor slabs, roof, faรงade, MEP โ€” mechanical/electrical/plumbing, finishing, landscaping). For each activity: name, deterministic duration (CPM) or three-time estimate a-m-b (PERT), required resources (crew, machine โ€” under CPM these are recorded but not constrained). (b) Precedence relations โ€” which activity must follow which; classical ‘finish-to-start’ (predecessor finishes, successor starts), extended ‘start-to-start’, ‘finish-to-finish’, ‘start-to-finish’ with lag/lead times; relations modelled as a directed acyclic graph (DAG). (c) Activity graph representation โ€” two standards: activity-on-arrow (AoA) โ€” activities as arrows, events as nodes; activity-on-node (AoN) โ€” activities as nodes, precedence as arrows; modern software uses AoN, more flexible. (d) Probabilistic estimates (for PERT) โ€” for each activity an optimistic a, most-likely m, pessimistic b; beta-distribution approximation: expected duration (a + 4m + b) / 6, variance ((b - a) / 6) squared. (e) Time-cost trade-off data (for crashing) โ€” for each activity a normal-duration/normal-cost and a crash-duration/crash-cost pair; how much does shortening the activity by one day cost.

2. Solution method. (a) CPM forward pass โ€” starting from project start (Earliest Start = 0), in topological order, compute each activity’s earliest start (ES) and earliest finish (EF): ES = maximum EF over predecessors; EF = ES + duration. At the end, project completion = last activity’s EF = project duration. (b) CPM backward pass โ€” starting from the project end (Latest Finish = project duration), in reverse, compute each activity’s latest finish (LF) and latest start (LS): LF = minimum LS over successors; LS = LF - duration. (c) Slack computation โ€” for each activity, total slack TS = LS - ES = LF - EF (delay tolerated without slipping the project), free slack FS = min ES over successors minus this activity’s EF (delay tolerated without slipping the next activity). Critical activity: TS = 0. Critical path: the chain of critical activities running from project start to end (multiple paths possible). The algorithm is polynomial on the activity graph โ€” O(n + m) for n activities and m precedence relations, in seconds. (d) PERT analysis โ€” compute each activity’s expected duration (a + 4m + b) / 6, run the CPM forward/backward pass on expected durations; critical path variance = sum of variances of activities on it; by the central limit theorem project completion time is approximately normal, expected duration = critical path length, standard deviation = square root of critical path variance; probability of finishing by target date = Phi((target - expected) / standard deviation). Caveat: in projects with many parallel near-critical paths the analytical formula understates the true variance, Monte Carlo simulation is preferred (sample each activity duration N times, run CPM on each sample, P10/P50/P90 completion dates emerge from the distribution). (e) Time-cost trade-off (crashing) โ€” to shorten the project at a cost, accelerate critical-path activities; linear programming (LP) formulation by Kelley and Walker 1959 classical extension. (f) Critical chain (Critical Chain Project Management, Goldratt 1997) โ€” addresses CPM’s failure to account for resource conflicts; recomputes the critical path under resource constraints (resource-constrained critical path), places a shared project buffer and feeding buffers between activities. The bridge to RCPSP (#007).

3. Field integration. Output is four-layered: (a) Activity table โ€” for each activity ES, EF, LS, LF, TS, FS; critical activities (TS = 0) and critical path(s) flagged. If PERT is enabled, expected duration and standard deviation per activity; project-level P10/P50/P90 completion. (b) Gantt chart โ€” activities on the time axis, critical path coloured, slack bars visible; the planner sees at a glance which activity is real risk. (c) Downstream propagation report โ€” if activity X slips by d days, what the project impact is and which downstream activities shift; the numerical tool of risk management. (d) Crashing table โ€” for each candidate activity, the cost per day shortened, and the maximum reduction achievable per budget. End-to-end flow: project management software runs the CPM/PERT engine, ERP work-item and supplier-date updates feed it, output is the planner’s screen + field mobile app; on a delay report the recomputation is 5-15 seconds, new critical path and impact report automatic. Quarterly project committee: did the critical path change (new critical activities emerge), slack consumption rate, target-date hit-rate trend.

Alternatives

Manual + planner + spreadsheet

Free

Zero licence

Who it fits: Small project (30-80 activities), single project, experienced planner

  • + Zero software cost
  • + Planner experience stays in front
  • + Flexible โ€” site changes handled quickly
  • + Training overhead low
  • โˆ’ Running the forward/backward pass manually on 100+ activities produces errors
  • โˆ’ Slack analysis in a spreadsheet is fragile โ€” the critical path can be mis-flagged
  • โˆ’ PERT probabilistic analysis not practical by hand
  • โˆ’ Propagation chain not visualised
  • โˆ’ A tender audit asking for a 'CPM report' cannot easily be answered

Local project management software

Enterprise

$1,500-10,000 licence + $700-3,000/year maintenance (regional SMB)

Who it fits: Mid project (80-200 activities), 3-10 parallel projects, stable planner team

  • + Local-language UI and support
  • + Progress billing + cost integrated
  • + A classical CPM engine usually present
  • โˆ’ PERT probabilistic module usually absent or shallow
  • โˆ’ Crashing (time-cost trade-off) LP module absent
  • โˆ’ Critical-chain approach (resource-constrained critical path + buffer placement) support weak
  • โˆ’ Monte Carlo simulation limited

International project management software

Enterprise

$5,000-30,000/licence/year or $30K-200K enterprise

Who it fits: Large contractor (200+ activity complex projects), public works + industrial plant

  • + Mature CPM engine, forward/backward pass + slack analysis standard
  • + PERT + Monte Carlo simulation module
  • + Critical-chain module (resource-constrained critical path + project buffer + feeding buffers)
  • + Crashing (LP-based time-cost) module
  • + Earned Value Management integration
  • + Multi-project critical-path visibility
  • โˆ’ High licence + long (3-6 month) rollout
  • โˆ’ Local-language support limited, steep learning curve
  • โˆ’ Customising to local tender specs extends the project

Open-source solver + custom CPM/PERT module

Open Source

Licence free; in-house build 8-16 weeks or $10K-30K consulting

Who it fits: Contractor with a tech team, ERP integration desired, repeating project type

  • + No licence cost
  • + CPM forward/backward pass algorithm is easy on open-source solvers
  • + PERT Monte Carlo simulation with open-source statistical libraries
  • + Fully customisable (work-item structure, reporting)
  • โˆ’ In-house OR specialist + project management experience required
  • โˆ’ User-interface development load
  • โˆ’ Academic prototype to field system: 6-12 months
  • โˆ’ Maintenance burden in-house

Recommendation

Small
30-80 activity single project, 1-2 planners: manual + spreadsheet + a basic CPM template is enough. Three baseline gains (writing down the forward/backward pass for every activity, reporting both total + free slack per activity, colouring the critical path on the chart) give 10-15% improvement. A full software investment does not pay back.
Medium
80-200 activity mid-projects, 3-10 parallel projects: local project management software with a standard CPM engine, evaluate the PERT module. 4-6 month pilot. Expected delay-penalty -20-30%, target-date hit-rate +30-50%. Payback 18-30 months. Typical monthly cost: $300-1,000.
Large
200+ activity complex projects or industrial plant / public works: full international project management software + CPM + PERT + Monte Carlo + critical chain + crashing module. Annual $15K-60K total. Payback 24-48 months. Delay penalty -30-50%, target-date hit-rate +50-80%, crashing-budget efficiency +40-60% typical.

Ask in the meeting

  • Does the CPM engine under the software apply a classical forward/backward pass + slack computation, or only Gantt visualisation? In a demo, walk through the algorithm steps on a 200-activity example.
  • Is PERT probabilistic analysis supported โ€” three-time estimate (a-m-b) per activity, beta-distribution approximation, project completion P10/P50/P90 distribution? Demonstrate these outputs on a sample project.
  • Is Monte Carlo simulation supported โ€” how many scenarios, which distribution types (beta, triangular, normal, lognormal), is the criticality index (probability of each activity being on the critical path) computed?
  • Are total slack and free slack reported separately per activity? Is the downstream propagation matrix (if an activity slips X days, the project impact and which successors shift) a numerical output?
  • Is a crashing (time-cost trade-off) module available โ€” cost per activity shortened, maximum reduction per budget; is it solved with a systematic linear-programming formulation, or with a heuristic?
  • Is the critical-chain approach supported โ€” resource-constrained critical-path recomputation, project buffer and feeding buffer placement?
  • When a supplier or the field reports an activity slip, how fast does the system recompute and present the new critical path + propagation effect to the operations centre? Is bidirectional ERP/MES integration available?
  • If the contract ends, in which standard format (XER, MPP, CSV, XML, JSON) can we export the activity list, precedence relations, CPM/PERT analysis history, propagation matrices and crashing decisions?

Technical details

Editor’s note

In plain speech this problem is called the “work schedule”, “Gantt plan” or “project calendar”. In the academic literature it carries two paired foundational names: the deterministic decision is the Critical Path Method (CPM), the probabilistic extension is the Program Evaluation and Review Technique (PERT). CPM was developed by Kelley and Walker (1959) for DuPont chemical-plant maintenance planning; PERT by Malcolm, Roseboom, Clark and Fazar (1959) for the US Navy Polaris fleet ballistic missile program โ€” the same year, the birth date of modern project management.

Distinction from #007 RCPSP and #066 Stochastic RCPSP: CPM (#098) is resource-unconstrained โ€” only activity durations + precedence, critical path = longest-duration path; the algorithm is polynomial (seconds). RCPSP (#007) layers resource constraints on top โ€” some activities share a crew / machine / crane and cannot overlap; the problem is NP-hard, MIP/CP/metaheuristic solvers required. Stochastic RCPSP (#066) under duration uncertainty produces a policy instead of a schedule โ€” a “given this state, start this activity” mapping. CPM is the foundation stone; the other two are built on it. In a software-vendor demo, “we support CPM” is not enough โ€” does the engine still work when resource constraints are added (RCPSP), and does it produce a policy under uncertainty (Stochastic RCPSP) are separate questions.

The most-skipped point in the sector: early-start vs late-start + free-slack vs total-slack distinction. In daily practice only the “critical path length” and the “project end date” are usually discussed, but every activity has four core numbers: early-start (ES) โ€” earliest it can start; late-start (LS) โ€” latest it must start without slipping the project; total slack (TS) โ€” how much it can slip without slipping the project = LS - ES; free slack (FS) โ€” how much it can slip without slipping the next activity. Without reporting all four per activity, risk management is shallow โ€” if an activity slips, total slack 5 days means the project is fine, but free slack 0 means the successor crew sits idle. Second skipped point: PERT’s analytical formula understates true variance. The classical PERT formula (a + 4m + b) / 6 and ((b - a) / 6) squared sums the activities on a fixed critical path; in real projects there are parallel near-critical paths and one of them may turn out to be critical in the realised execution โ€” the “critical path” is not a fixed line, it is a probabilistic property. Monte Carlo simulation (sample every activity N times, run CPM each time, the criticality index = frequency of being on the critical path) addresses this. Third skipped point: crashing decisions depend on the critical path. Shortening an activity (extra shift, more workers, parallelisation) only shortens the project if that activity is on the critical path; shortening a non-critical activity is money wasted. Crashing decisions made without running the CPM engine misallocate 30-50% of the rush budget.

A step-by-step path for an SMB

Stage 1 โ€” Measure first, plan later. At least 2-3 completed similar projects: for each activity planned vs actual duration (for the three-time PERT estimate โ€” optimistic-actual, most-likely-actual, pessimistic-actual), reason for slippage (weather, supplier, permit, crew shortage, scope change), which activities turned out to be critical (in actual execution), which were free. This knowledge capital without it, PERT three-time estimates stay intuitive.

Stage 2 โ€” Activity list and precedence map. A typical residential block is 80-150 activities, a mall 150-300, a motorway 300-500, factory build-out 200-400, ERP migration 80-150, data-centre move 50-100. For each activity: name, deterministic estimate (for CPM) or three-time estimate a-m-b (for PERT), required resources (informational, not a constraint), predecessor list (precedence). Review the precedence map: some links are ‘real’ (no slab formwork before the columns are poured), some are ‘resource’ (the same crew does two activities) โ€” resource links are modelled in RCPSP (#007), not in CPM.

Stage 3 โ€” Pilot. 8-12 weeks. On a single mid-size project (80-200 activities) run CPM forward/backward pass + slack analysis + PERT Monte Carlo (1,000 scenarios); in parallel with the existing intuition-based plan. Success criterion written down beforehand: did the critical path change (in execution), slack consumption rate per activity, target-date error (PERT P50 vs actual), criticality-index accuracy. During the pilot, document how the CPM/PERT report changed the planner’s decision.

Stage 4 โ€” Rollout. Over 6-12 months CPM becomes the standard across all active projects; PERT probabilistic analysis is mandatory on high-penalty projects (public works, industrial plant), optional on mid-penalty projects. The crashing module is engaged at tender stage or when a critical activity signals risk. Quarterly project committee: critical-path-change report, slack-consumption trend, PERT P50/P90 vs actual comparison, criticality index vs actual-critical comparison.

Risks โ€” what can go wrong

  1. Activity duration estimate bias. In practice activity durations are estimated optimistically (tender-winning pressure, planner optimism); the PERT formula (a + 4m + b) / 6 weights the ‘most likely’ estimate, but if the ‘most likely’ itself is optimistically placed the result is skewed. Fix: diversify the estimate source (planner + site supervisor + supplier separate estimates), keep the ‘pessimistic’ tail honest (look at past project actual pessimistic).

  2. Missing precedence definitions. Some dependencies are not in the documents but exist on site (e.g. statutory inspection approval โ€” legal precedence; rainy season โ€” calendar precedence). Missing precedence makes the CPM output misleading โ€” the critical path looks short on paper but is long on site. Fix: review the precedence map with the site supervisor + inspection authority + primary supplier in the same room; model calendar dependencies separately.

  3. Real-time update latency. If site status (activity complete, percent progress) reaches the system late, the CPM engine runs on stale data โ€” the critical path looks fine on paper but has shifted in reality. Fix: mandatory daily progress reporting via a mobile site app, automatic recomputation in 5-15 seconds on a slip, impact report pushed to the operations centre + affected field crew.

  4. Single-supplier project-software lock-in. Without a contract clause stating “annual export in standard formats (XER, MPP, CSV, XML, JSON) of the activity list, precedence relations, CPM/PERT analysis history, slack and criticality index values, crashing decisions”, leaving the system means losing the firm’s project-management memory. The contract should explicitly list the activity library + precedence templates + historical CPM/PERT analyses as exportable in open format.

Solution method โ€” technical view

ApproachTypical scaleSolve timeGuaranteed optimum?
Manual + spreadsheet CPMSmall project, 30-80 activitiesminutes (manual)Yes in principle; error-prone in practice
Classical CPM engine (forward/backward pass)Mid-large project, 50-500 activitiessecondsYes (resource-unconstrained)
PERT analytical (beta + CLT)50-300 activities, duration uncertaintysecondsApproximate (drifts on parallel paths)
PERT Monte Carlo simulation100-500 activities, multiple parallel pathsminutes-hoursProbabilistic, accurate
Crashing LP (time-cost)Crashing on the critical pathseconds-minutesYes (LP polynomial)
Critical chain (Goldratt 1997)Resource-conflicted mid projectminutesHeuristic, sensitive to buffer placement
RCPSP MIP (resource-constrained, #007)30-100 activities + resourcesminutes-hoursYes (within bound)

Objective function choice:

  • Objective 1 โ€” Minimise project duration (makespan): Classical CPM โ€” critical-path length.
  • Objective 2 โ€” Minimise expected delay penalty: PERT + Monte Carlo + penalty function; risk-adjusted schedule.
  • Objective 3 โ€” Minimise total project cost: Including crashing; activity-shortening cost + delay penalty.
  • Objective 4 โ€” Maximise probability of finishing by target date: PERT P50/P90 + crashing โ€” hitting the contractual window.

CPM/PERT variants โ€” pick by the field:

  • Classical CPM (Kelley-Walker 1959): Deterministic durations, resource-unconstrained; the core of every project management tool.
  • PERT (Malcolm-Roseboom-Clark-Fazar 1959): Three-time duration estimate, beta distribution, project completion probability.
  • PERT Monte Carlo: Overcomes the analytical formula’s limitation; real variance under multiple parallel paths, criticality index.
  • Critical chain (CCPM, Goldratt 1997): Resource conflicts + project buffer + feeding buffers; the bridge to RCPSP.
  • Time-cost trade-off (Kelley-Walker LP): Crashing critical-path activities, cost-optimal acceleration.
  • Resource-constrained CPM (RCPSP, #007): Recompute the critical path under resource constraints; MIP/CP required.

Academic references

Listed in the page frontmatter under sources. Kelley-Walker (1959) and Malcolm-Roseboom-Clark-Fazar (1959) foundational; Goldratt (1997) the critical chain extension; Hillier-Lieberman (2014) modern OR textbook CPM chapter; Kerzner (2017) industrial reference. Operations Research, Management Science and the Project Management Journal publish current research; INFORMS Interfaces and PMI publications carry field deployment cases.

Sources

  • Kelley Jr., J. E. and Walker, M. R. (1959). Critical-path planning and scheduling. Proceedings of the Eastern Joint Computer Conference, 160-173. Foundational CPM paper โ€” developed for DuPont chemical-plant maintenance planning.
  • Malcolm, D. G., Roseboom, J. H., Clark, C. E. and Fazar, W. (1959). Application of a technique for research and development program evaluation. Operations Research, 7(5), 646-669. Foundational PERT paper โ€” built for the US Navy Polaris fleet ballistic missile program.
  • Goldratt, E. M. (1997). Critical Chain. North River Press. Buffer-based Critical Chain Project Management (CCPM) extension.
  • Kerzner, H. (2017). Project Management: A Systems Approach to Planning, Scheduling, and Controlling (12th ed.). Wiley. Industrial project management reference, CPM/PERT chapter.
  • Hillier, F. S. and Lieberman, G. J. (2014). Introduction to Operations Research (10th ed.). McGraw-Hill. OR textbook CPM chapter, modern computational approaches.
  • Yร–K Thesis Center โ€” keyword: ‘kritik yol’ or ‘CPM’ or ‘PERT’ or ‘proje รงizelgeleme’ โ€” 30+ theses from TR academia. tez.yok.gov.tr

Glossary

Critical Path Method
Foundational deterministic project-network technique: given activities with fixed durations and precedence, compute earliest and latest start/finish times and identify the longest path that drives project duration.
Program Evaluation and Review Technique
Probabilistic extension of CPM developed in 1958 for the US Navy Polaris program: each activity duration is a random variable from optimistic, most-likely and pessimistic estimates, yielding an expected project-completion distribution.
Critical Path
The longest chain of dependent tasks running from project start to finish โ€” the chain that drives the delivery date.
RCPSP
Sequencing hundreds of project tasks, sizing durations, and assigning crews under precedence and resource constraints.
Was this helpful?
Suggest correction

Related problems

Esc Close