graph theory Flashcards

1
Q

He presented the solution to the problem before the Russian Academy. He explained why crossing all seven bridges without crossing a bridge twice was impossible.

A

Leonard Euler

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

It is a collection of points called vertices or nodes and line segments or curves called edges that connect the vertices.

A

graph

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

A is an edge connecting a vertex to itself.

A

loop

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

If two vertices are connected by more than one edge, these edges are called

A

multiple edges.

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

A graph with no loops and no multiple edges is called a

A

simple graph.

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

It is an edge that when you remove makes the
graph disconnected.

A

Bridge

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

It is an alternating sequence of vertices and edges. It can be seen as a trip from one vertex to another using the edges of a graph.

A

Path

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

If a path begins and ends with the same vertex

A

it is a closed path or a circuit or cycle.

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

Two vertices are adjacent if there is an edge joining them.

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

It is a graph that has an edge connecting every pair of
vertices.

A

complete graph

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

It is a connected graph in which every possible edge is drawn between vertices. It should not contain multiple edges.

A

complete graph

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

A graph that has an Euler circuit is called

A

Eulerian

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

It is a minimum spanning tree algorithm that takes a graph as input and finds the subset of the edges of that graph which forms a tree that includes every vertex

A

Prim’s Algorithm

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

It is a minimum spanning tree algorithm that takes a graph as input and finds the subset of the edges of that graph which form a tree that includes every vertex and has the minimum sum of weights among all the trees that can be formed from the graph

A

Kruskals algorithm

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

A graph is _____ if it can be drawn in such a way that no edges cross.

A

planar

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

It is a way of coloring the vertices of a graph such that no two adjacent vertices share the same color.

A

Vertex Coloring

17
Q

assigns a color to each edge so that no two adjacent edges share the same color.

A

Edge Coloring

18
Q

is the minimum number of colors in a proper coloring of that graph. If chromatic number is r then the graph is r-chromatic.

A

Chromatic Number