Graph Theory in Discrete Mathematics Flashcards

1
Q

is the study of graphs, which are
mathematical structures used to model
pairwise relations between objects.

A

Graph Theory

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

Edges have no direction.

A

Undirected Graph

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

Edges have a direction from
one vertex to another.

A

Directed Graph

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

Edges have weights representing costs

A

Weighted Graph

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

Connected acyclic graphs. Every two vertices are
connected by exactly one path.

A

Trees

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

Graphs where vertices can be divided
into two disjoint sets such that no two graph vertices
within the same set are adjacent.

A

Bipartite Graphs

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

Graphs in which there is a unique edge
connecting every pair of vertices.

A

Complete Graphs

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

Number of edges incident to a vertex.

A

Degree

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

A sequence of edges connecting a sequence of
vertices.

A

Path

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

A path that starts and ends at the same vertex.

A

Cycle

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

A graph is connected if there is a path
between every pair of vertices.

A

Connectivity

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

Algorithms for traversing or searching tree or graph data
structures.

A

Depth-First Search (DFS) and Breadth-First Search (BFS)

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

For finding the shortest path between
nodes in a graph.

A

Dijkstra’s Algorithm

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

For finding the minimum spanning tree of a graph.

A

Kruskal’s and Prim’s Algorithms

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