Decision Maths: 8. Critical Path Analysis Flashcards

1
Q

What is the Late Event Time

A

The late event time is the latest time that the event can be left without extending the time needed for the project.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the Early Event Time

A

The early event time is the earliest time of arrival at the event allowing for the completion of all preceding activities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How are the Early Event times calculated

A

The early event times are calculated starting from 0, and working towards the sink node. This is called a forward pass or forward scan.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How are the Late Event times calculated

A

The late event times are calculated starting from the sink node and working backwards towards the source node. This is called a backwards pass or backward scan.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Forward Pass and How is it done?

A

A forward pass is used to calculate the early event time. The largest value is always taken when calculating early times, because it is not possible to get to the event until all preceding activities have been completed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a Backward Pass and How is it done?

A

A backward pass is used to calculate the late event times. The smallest value is always taken when calculating late times, because if you left the event later than the project would be delayed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are Critical Events

A

Critical events are ones where the early time is equal to the late time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are Critical Activities

A

Critical activities are those between critical events when ‘Event Time A + Activity Time = Event Time B’.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the Float of an Activity

A

The float of an activity is the amount of time that it’s start may be delayed without affecting the duration of the project.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you work out the float of an activity

A

Total float = latest finish time - duration - earliest start time.

The total float of any critical activity is zero.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What can Grant Charts be used for

A

Gantt charts can be used to determine which activities must be happening at any given time and those that may be happening at a given time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a Eulerian Trail/Eulerian Cycle

A

A Eulerian trail or Eulerian cycle cover every edge of the graph exactly once and finishes at rage start vertex.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What makes a Graph Eulerian

A

A graph is Eulerian if it is possible to find a Eulerian trail on the graph.

A graph will be Eulerian is all the vertices are even

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What makes a graph Semi-Eulerian

A

A graph is called semi-Eulerian if it is possible to cover every edge exactly once by starting at one vertex and finishing at another.

A graph will be sent-Eulerian if 2 of the vertices are odd.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a Traversable Graph

A

A graph that can be drawn without taking the one off the paper and without repeating any edges is called traversable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Method for Finding the the Weight of a Semi-Eulerian Graph

A
  1. Find the orders of the vertices
  2. Identify any odd vertices
  3. Find the shortest path between the odd vertices
  4. Write down a trail using the edges on the path found in step 3 twice and all the other edges once.
  5. Add up the weights from the original graph and the extra weight from step 3.