The backward pass
What the backward pass finds
- The backward pass works right to left through the network to find, for every activity:
- its latest finish time (LFT) — the latest it can finish without delaying the project,
- its latest start time (LST) — the latest it can start and still finish by its LFT.
- These go in the bottom row of each node box (LST bottom-left, LFT bottom-right).
Latest finish and latest start
- For each activity:
- LFT — latest finish time; the last moment it can finish without pushing the project out.
- duration — the fixed length of the activity.
- LST — latest start time; subtract the duration from the latest finish.
The backward pass rule
- Set the final activity's LFT equal to the project completion time found by the forward pass (so the project is not delayed).
- Work backwards: an activity's LFT is the latest start time of the activity that follows it:
- Then apply and carry the LST back along each arrow.
Merging paths — take the smallest
- If an activity has several successors (its arrow splits), it must finish in time for all of them.
- Its LFT is the smallest (earliest) of the successors' latest start times:
- Taking the largest by mistake would let the activity finish too late for one of its successors — the classic backward-pass error.
The completed backward pass
- Reading the bottom rows of the hall network: G has , . E has , F has . D splits to E and F, so and . B has ; C has , ; A has .
Using the project duration of 19 days, carry out the backward pass for the hall network to find the LST and LFT of activities D, C and A.
Step 1 — Set the final activity
G is last, so its latest finish equals the project duration:
Step 2 — Step back to E and F
Both feed G, so each takes :
Step 3 — Split at D (take the smallest)
D feeds E and F, so its latest finish is the smaller successor latest start:
Step 4 — Step back to C and A
C feeds D, so and .
B feeds D, so and . A feeds B, so and .
Test yourself
Practice by grade
One question each at Achieved, Merit and Excellence. Have a go, then compare with the model answer.
An activity has latest finish time 15 and duration 3. Find its latest start time and state the formula.
Activity V feeds two successors whose latest start times are 12 and 13. V has duration 5. Find V's latest finish and latest start, and explain the choice at the split.
Explain why, for the final activity of any project, the latest finish time set at the start of the backward pass must equal the project completion time found by the forward pass — no larger and no smaller — and what each error would do.