§-Quick questions
NSWMaths Standard 2Year 12: Networks
Quick questions on Forward and backward scanning and activity float for HSC Maths Standard 2
10short Q&A pairs drawn directly from our worked dot-point answer. For full context and worked exam questions, read the parent dot-point page.
What is walk through the boxes step by step?Show answer
Each activity in the diagram above carries a box at its tail (where it starts): the left cell is its EST (earliest start time) and the right cell is its LST (latest start time). Fill every left cell first with a forward pass. Then fill every right cell with a backward pass. Then read the float straight off each box as right minus left.
What is see the scan build up, stage by stage?Show answer
The diagram at the top of this page shows the finished scan. Below is the same network assembled one stage at a time, so you can see exactly where every number comes from. Each stage below adds one more layer and spells out the working behind it.
What is forward scanning (earliest times)?Show answer
Label each event (node) with the earliest time it can occur, computed by working forward from the project start.
What is backward scanning (latest times)?Show answer
Label each event with the latest time it can occur without delaying the project, computed by working backward from the project end.
What is time computations for each activity?Show answer
For activity from event to event with duration :
What is float?Show answer
The float of an activity is the maximum delay possible without extending the project:
What is critical path?Show answer
The critical path consists of activities with zero float. It is also the longest path through the network (the same path found in the previous dot point's analysis).
What are forward pass fills the EST cells?Show answer
An activity cannot begin until all of its predecessors have finished, so its EST is the largest "predecessor EST plus that predecessor's duration". Work left to right.
What are backward pass fills the LST cells?Show answer
Now work right to left from the finish. An activity's latest finish is the earliest latest-start among the activities that follow it; subtract its own duration to get its own LST.
What is off-by-one on float?Show answer
Float LFT EST duration. Easy to forget the duration.
