Graph Theory Flashcards

(27 cards)

1
Q

Graph

A

An ordered pair (V, E) of a set of nodes (vertices) and a set of unordered pairs of nodes (edges)

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

Order of a graph

A

The number of nodes

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

Degree of a node

A

The number of edges connected to the node

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

Size of a graph

A

The number of edges

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

Loop

A

An edge whose pair of nodes are the same

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

Link or side

A

An edge whose pair of nodes is different

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

Simple graph

A

A graph without loops and the same 2 nodes can not be connected by multiple edges

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

Multigraph

A

A graph where the set of edges is a multiset, meaning the same nodes can be connected multiple times

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

Adjacency Matrix

A

A way of encoded a simple graph where 1 represents an edge and 0 represents no edge. Row represents the start of the edge and the column represents the end.

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

Chain

A

The succession of a sequence of alternating nodes and edges, starting and finishing on nodes.

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

The length of a chain

A

The number of edges it contains

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

The distance between 2 nodes in a graph

A

The length of the shortest chain between 2 nodes

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

The diameter of a graph

A

The longest distance between any 2 nodes

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

When is a chain said to be closed?

A

When the start vertex and the end vertex are the same vertex.

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

What is a connected component of an undirected graph?

A

A subgraph in which any 2 nodes are connected to each other by a path

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

When is a graph said to be connected?

A

If it only has 1 connected component

17
Q

When is a graph said to be free?

A

If it has no edges

18
Q

When is a graph said to be complete?

A

If every pair of different nodes are connected

19
Q

What is weak connectivity in a directed graph?

A

If 2 nodes are connected, ignoring the direction of edges

20
Q

What is strong connectivity in a directed graph?

A

When 2 nodes are connected following edge direction

21
Q

Bridge/Cut-edge

A

An edge in a graph that if removed increases the number of connected components

22
Q

Cut-vertex/Articulation point

A

A node in a graph that if removed increases the number of connected components

23
Q

When is a graph said to be regular of degree?

A

When all of its nodes have the same degree

24
Q

Tree

A

A graph in which every pair of nodes is joined by a single chain

25
Degree Centrality
The degree of a node is the number of edges it is connected to
26
Betweenness Centrality
The degree of a node is the number of shortest paths between every node in the graph that cross that node
27
Closeness Centrality
The degree of a node is 1 over the average distance to every other node in the graph