Genny maths Flashcards

1
Q

What is an annuity?

A

An annuity is a form of compound interest where regular and equal payments are made periodically
OR as a single sum investment from
which regular and equal payments are received.

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

What is the present value formula?

A

PV = M((1 + i)^n − 1/r(1 + i)^n)

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

what is a simple network?

A

pairs of vertices are connected by max one edge

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

what is a complete network?

A

every vertex is joined to every other vertex

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

difference between connected and disconnected networks?

A

connected you can get to vertex by following the edges. disconnected you can’t as there disjointed

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

difference between directed and undirected network?

A

directed can only move one direction on the edge but undirected can move any direction

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

what is the degree of vertex?

A

no. of edges coming out of a vertex

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

how do you find no. of edges other then counting?

A

0.5 x the sum of the degrees

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

what are faces in networks?

A

no. of shapes in a network created by the lines +1 (for the outside)

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

what is a walk?

A

Any route, can repeat edges and vertices

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

what is a trail?

A

no edges are repeated (e.g. ABCB, OR ABCDAC

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

what is a path?

A

no vertices are repeated and end on different vertices

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

what is a cycle?

A

no vertices are repeated however the first and last one must

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

what is opened or closed…? which does it apply for?

A

open starts and stops at different vertices, closed finishes as same vertex. Applies to walks and trails

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

Name the 4 movements?

A

Walk, trail, path, cycle and closed walk/trail

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

what is a eulerian trail

A

a closed trail (no repeated edges and start/finish on same vertex) and degree of all vertices are even

17
Q

what is a semi-eulerian trail

A

a open trail (no repeated edges and start/finish on different vertex) and degree of ONLY 2 vertices are odd

18
Q

what is a hamiltonian cycle?

A

a closed path (includes every vertex once and start/finish on same vertex)

19
Q

what is a semi-hamiltonian cycle/ hamiltonian path?

A

a open path (includes every vertex once and start/finish on different vertex)

20
Q

what is the shortest path?

A

shortest path goes to all vertices ONCE

21
Q

whats a tree?

A

simple connected network with no circuit

22
Q

how to find no. of vertices on a tree?

A

= no. of edges + 1

23
Q

whats prims algorithm 3 steps?

A
  1. draw vertices only
  2. start with small edges
  3. continue until all vertices are connected (but not complete a curcuit)
24
Q

whats an immediate predecessor?

A

it must be complete before next activity can commence (the one before it)

25
Q

whats an earliest start time?

A

write on left of vertex and use forward scanning of longest time.

26
Q

whats critical path?

A

activities that cant be delayed without delaying the entire project

27
Q

what is earliest completion time?

A

minimum time to taken to complete all activities (basically critical path time)

28
Q

whats float time?

A

max time an activity not on critical path can be delayed

29
Q

how do you find the latest start time?

A

backward scanning on the right side of the vertex

30
Q

float time formula?

A

= latest finish time (LFT the rightest right) - earliest start time (EST the leftiest left) - activity time

31
Q

what is a planar graph?

A

no edges cross over (can be drawn on a plane)

32
Q

what is the hungarian algorithm steps (5)?

A
  1. subtract smallest value in row from every element in the row
  2. min lines to cover ‘0s’
  3. if column doesnt contain 0, subtract lowest value from column
  4. min lines to cover ‘0s’
  5. add smallest uncovered value to elements that covered by 2 lines. then subtract it from all uncovered elements
  6. continue until 4 lines drawn