Graph Theory Flashcards

1
Q

Nodes/vertices

A

Vertexes or dots on the graph

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

Edge/arc

A

Line connecting two vertices

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

Multiple edges

A

Two routes to travel between the same two nodes

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

Loop- give an example

A

An edge that takes you back to the same node- for example, a button on a home page that takes you back on to the homepage.

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

Simple graph

A

A graph with no loops or multiple arcs

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

Isomorphic graphs

A

Graphs that represent the same rhing

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

Complete graph

A

Every vertex is directly connected to every other vertex

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

Complete graph notation

A

Kn, where n is the number of nodes

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

Complete graph edges sequence..

A

Triangular numbers

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

Formula for the total number edges in a complete graph

A

1/2 n (n-1)

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

Bipartite graph

A

A graph is bipartite if it can be broken down into two sets of vertices, and the vertices cannot be directly connected to each other.

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

Common use of bipartite graphs

A

Allows you to allocate workers to specific jobs

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

Complete bipartite graph

A

Kr, s where set on the LHS has ‘r’ nodes/vertices and the RHS has ‘s’ nodes/vertices

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

Order/degree of a vertex

A

How many edges are coming out of a vertex, a loop counts as two orders
- even orders and odd orders

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

Semi-Eularian

A

Two odd order vertices
- start at one odd vertices and end at the next one

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

Eularian

A

All even order vertices
- start and finish at the same point

17
Q

What is a graph?

A

A series of nodes (or vertices) connected by edges (or arcs).

18
Q

Tree

A

A connected graph with no cycles

19
Q

How can you determine the order of a given vertex in an undirected graph from the incidence matrix of the graph?

A

Add together the values in the row (or column) corresponding to that vertex