Worked solution
Forward pass: find the earliest start times of activities , , , , ,
Each of these activities starts as soon as all of its immediate predecessors are complete, so its earliest start time is the largest of the earliest finish times of those predecessors.
Find the total duration of the project from the earliest finish times
The project is finished when the last activity finishes, so the total duration is the largest earliest finish time.
State the total duration of the project
The project cannot be completed in fewer than days.