Chapter 2 (Graphs) Flashcards

1
Q

What’s a weight graph/ network

A

A graph with a number associated with each edge (usually called its weight).

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

Simple graph?

A

There are no loops and there are at most one edge connecting any pair of vertices (could be zero)

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

Subgraph?

A

A simple part of the original graph

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

What’s a degree or vertex

A

The number of edges incident to it

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

Walk

A

A route through a graph along edges from one vertex to the next

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

Path

A

A walk in which no vertex is visited more than once

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

Trail

A

A walk in which no edge is visited more than once

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

Cycle

A

A walk in which the end vertex is the same as the start vertex and no other vertex is visited more than once

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

Hamiltonian cycle

A

A cycle which includes every vertex

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

Connected graphs

A

Two vertices are connected if there is a path between them. A graph is connected if all its vertices are connected

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

A loop

A

Is an edge which starts and ends at the same vertex

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

The Handshake Lemma

A

In any undirected graph, the sum of the degrees of the vertices is equal to 2x the number of edges, as a consequence, the number of odd vertices must be even

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

A tree

A

Is a connected graph with no cycles

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

Spanning tree

A

Is a subgraph, which includes all the vertices and is a tree

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

Complete graph

A

Is a graph in which every vertex is directly connected by a single edge to each of the other vertices

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

Isomorphic graphs

A

Graphs which show the same info but may be drawn differently

17
Q

Directed graphs (digraphs)

A

The edges of the graph have a direction associated with them (not all have to be directed)

18
Q

How many edges are required to draw K10

A

10 vertices in which have 9 edges incident to it.
9x10=90
90/2=45

19
Q

How many edges required to draw Kn

A
Vertices= n 
Degrees= n-1

1/2 n(n-1) edges