Show worked solution
Worked solution
Forward pass: find the earliest start time of activity
Activity has no immediate predecessors, so it can start at time .
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until has finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until , have all finished, so its earliest start time is the largest earliest finish time among its immediate predecessors.
Forward pass: find the earliest start time of activity
Activity cannot start until , have all finished, so its earliest start time is the largest earliest finish time among its immediate 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.
Backward pass: find the latest finish times of activities , ,
Working backwards, an activity must finish early enough for every one of its successors to start at its own latest start time.
Backward pass: find the latest finish times of activities , , ,
Working backwards, an activity must finish early enough for every one of its successors to start at its own latest start time.
Backward pass: find the latest finish times of activities , , ,
Working backwards, an activity must finish early enough for every one of its successors to start at its own latest start time.
Find the total float of every activity
The total float of an activity is its latest finish time minus its earliest start time minus its duration.
Select the activity with the largest total float
Activity has more spare time than any other activity in the project.