Modelling with Graphs and networks Flashcards

1
Q

what is a graph?

A

no axis, just a diagram made up of edges and vertices

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

what are nodes/ vertices?

A

circles

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

what are edges /arcs?

A

lines connecting the dots

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

what is the degree/order of a vertex?

A

how many lines are coming out of that circle

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

what is a connected graph?

A

it is possible to go from any vertex to any other vertex

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

what is the relationship between the total order and the number of vertices?

A
  • total order =12
  • number of arcs = 6

total order will always be an even number

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

what is a loop?

A

an edge that starts and finishes at the same vertex
Order of a loop =2

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

what is a simple graph?

A

one with no loops and no multiple edges between two vertices

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

what is a complete graph?

A

one where every vertex is connected to every other vertex by an edge

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

How many arcs are in K(n)?

A

(n*n-1)/2

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

what is a digraph?

A

a graph where at least one edge has direction associated with it

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

what is a bipartite graph?

A

where the nodes are in two distinct sets. Each edge connects a emeber of the first set to a member in the second set. Points do not connect with any point within it’s own set

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

what is an incidence matrix?

A

shows the arrangment of edges between each node

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

what is isomorphism?

A

same number of nodes and orders of each node

between2 graphs

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

what is a trail?

A

a sequence of joined up edges, such that no edge is repeated

nodes can be used more than once

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

what is a path?

A

a sequenece of edges such that the end vertex on one edge is the dtart of the next. No vertex can be visited more than once

17
Q

what is a cycle?

A

a closed path- where the first and last node are the same

18
Q

what is a tree?

A

a simple connected graph with the minimum number of arcs. (If a single arc is removed it will no longer be a connected graph)

19
Q

what is a spanning tree?

of graph G

A

a graph which contains all the vertcies of graph G and is also a tree

20
Q

Q:

How many arcs are there in a tree with 10 nodes?

A

n-1
10-1=9

21
Q

A simple connected graph G, has 8 vertices.
* what is the minimum number of edges that G could have?
* what is the maximum number of edges that G could have?

A
  • minimum: 7
  • maximum: (complete graph)
22
Q

what is a eulerian/ traversible graph?

A

possible to make a trail that
* uses all edges once
* starts and ends at the same vertex

no nodes with odd degree

23
Q

what is a semi eulerian/ traversable graph?

A

possible to make a trail
* uses all edges once
* starts and ends at difference vertices

will have exactly two odd nodes- start and end point

24
Q

what is a network?

A

a value (weight) is added to each arc

25
Q
A
26
Q

Draw the incidence matrix for the following arrangement

A
27
Q
A