Unit 4 Flashcards

1
Q

A cycle that visits all vertices exactly once is called…

A

A cycle that visits all vertices in the network exactly once is called a Hamiltonian cycle! It starts at a vertex, visits every other vertex exactly once and then returns to the starting vertex.

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

True or False??
A graph is Hamiltonian if and only if it contains an even number of vertices.

A

It’s false! Unlike Eulerian graphs, there is no simple condition to determine if a graph is Hamiltonian. A graph is Hamiltonian if it contains a Hamiltonian cycle!

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

True or False??
A Hamiltonian cycle doesn’t have to pass through every edge.

A

It’s true! A Hamiltonian cycle doesn’t have to pass through every edge. Instead, it only needs to hit every vertex exactly once. Only Eulerian circuits and trails need to pass through every edge exactly once.

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

True or False??
A Hamiltonian graph cannot be Eulerian.

A

It’s false! A graph can be both Hamiltonian and Eulerian if it contains both a Hamiltonian cycle and an Eulerian circuit. This is possible if a walk passes through all of the vertices and edges in the cycle, before returning to the starting vertex.

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

True or False??
A network must be either Hamiltonian or Eulerian.

A

It’s false! A graph can be neither Hamiltonian or Eulerian. This can happen when there are no walks that can pass through every vertex or edge exactly once.

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

A graph is semi-Hamiltonian if it only contains a….

A

A graph is semi-Hamiltonian if it only contains a Hamiltonian path! Unlike a Hamiltonian graph, semi-Hamiltonian graphs don’t contain a Hamiltonian cycle. Instead, they have a Hamiltonian path, which is a path that hits every vertex exactly once, without starting and ending at the same vertex.

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

A cycle that visits all vertices exactly once is called…

A

A cycle that visits all vertices in the network exactly once is called a Hamiltonian cycle! It starts at a vertex, visits every other vertex exactly once and then returns to the starting vertex.

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

A graph is semi-Hamiltonian if it only contains a….

A

A graph is semi-Hamiltonian if it only contains a Hamiltonian path! Unlike a Hamiltonian graph, semi-Hamiltonian graphs don’t contain a Hamiltonian cycle. Instead, they have a Hamiltonian path, which is a path that hits every vertex exactly once, without starting and ending at the same vertex.

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

A walk with no repeated edges is called a…

A

Trail

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

True or False??

The direction of an edge is represented by an arrow.

A

True

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

How do you find the sum of degrees?

A

The sum of the amount of directions each vertex has

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

A connected planar graph has 11 vertices and 14 edges.
How many faces does it have?

A

5

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

A graph is semi-Hamiltonian if it only contains a….

A

A graph is semi-Hamiltonian if it only contains a Hamiltonian path! Unlike a Hamiltonian graph, semi-Hamiltonian graphs don’t contain a Hamiltonian cycle. Instead, they have a Hamiltonian path, which is a path that hits every vertex exactly once, without starting and ending at the same vertex.

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

A cycle that visits all vertices exactly once is called…

A

A cycle that visits all vertices in the network exactly once is called a Hamiltonian cycle! It starts at a vertex, visits every other vertex exactly once and then returns to the starting vertex.

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

What are the dots that represent objects in a network called?

A

In a network, the dots that represent objects are called vertices! Another word for a vertex is a node.

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

A graph is Eulerian if and only if…

A

A graph is Eulerian if and only if each vertex has an even degree! An Eulerian graph is a network containing an Eulerian circuit, a walk that starts and ends at the same vertex and visits every edge in the network once.

For this reason, all vertices in an Eulerian graph must have an even degree so the walk can visit each vertex via an incoming edge and travel to the next vertex via an outgoing edge.

17
Q

The repayments on a loan of $150,000 over a 20-year term at 9.6% p.a. are $1408.01 per month.
What is the balance owing at the end of 2 months?
Give your answer correct to the nearest cent.

A

First, let’s find the balance owing at the end of the first month.

We’re told that we have an initial loan balance of $150,000, paying an interest of 9.6% p.a. The monthly repayments are $1408.01 each.

To find the interest gained, we must first convert our interest rate into a monthly rate:

9.6% / 12
= 0.8%

150,000 × 0.008

=$1200

Our balance owing will just be the balance at the start of the month, plus the interest, less the monthly payment:

150,000 +1200 −1408.01
=$149,791.99

150,000+1200−1408.01
=$149,791.99

We now repeat this process to find the balance owing at the end of the second month.

Our interest will be:

149,791.99 × 0.008
=$1198.34 (nearest cent)

149,791.99 × 0.008
=$1198.34 (nearest cent)

18
Q

True or false?? The shortest path between two vertices is the path with the least number of edges.

A

False

19
Q

True or False??
The shortest path can be found using Kruskal’s algorithm or Prim’s algorithm.

A

It’s false! Kruskal’s algorithm and Prim’s algorithm are actually used to find the minimum spanning tree which connects all the vertices with the least total weight.

To find the shortest path between any two vertices, we would instead use trial and error or solve it by inspection.

20
Q

How do we find the shortest path between two vertices?

A

The shortest path from one vertex to another can be found using trial and error! Although there are formal algorithms that help us find the shortest path, we’ll only be using trial and error or solving by inspection in this course.

21
Q
A