Graphs Flashcards

1
Q

What is V in the graph G = (V, E)

A

a nonempty set of vertices (nodes)

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

What is E in the graph G = (V, E)

A

a set of edges.

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

What is a simple graph?

A

A graph in which each edge connects two different vertices and where no two edges connect the same pair of vertices.

In a simple graph if there is an edge associated with {u,v}, {u,v} is an edge

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

What is a directed graph?

A

Also called digraph, (V,E) consists of nonempty set of vertices V and a set of directed edges (arcs) E. Each directed edge is associated with an ordered pair of vertices. The directed edge associated with the ordered pair (u,v) is said to start at u and end at v.

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

What is multiplicity

A

the number of directed edges associated to an ordered pair of vertices

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

What is adjacent?

A

Two vertices u and v in an undirected graph G are called adjacent (or neighbors) in G if u and v are endpoints of an edge e of G.

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

What is incident

A

An edge e is incident with two adjacent vertices

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

What is the neighborhood?

A

The neighborhood of a vertex of graph G(V,E) is the set of all neighbors of v.

Denoted N(v)

If A is a subset of V, we denote by N(A) the set of all vertices in G that are adjacent to at least one vertex in A.

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

What is the degree?

A

Degree of a vertex in an undirected graph is the number of edges incident with it, except that a loop at a vertex contributes twice to the degree of that vertex. The degree of the vertex v is denoted by deg(v)

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

What is isolated?

A

When a degree of a vertex is zero

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

What is pendant?

A

If a vertex has exactly degree one

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

What is the handshaking theorem?

A

In a graph G = (V,E) an undirected graph with m edges,

the sum of all degrees of all vertices equal two times the number of edges.

An undirected graph has an even number of vertices of odd degree

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

What is in-degree and out-degree?

A

in-degree (deg-(v) ) is the number of edges with v as their terminal vertex.

the out-degree of v is the number of edges with v as their initial vertex.

A loop contributes 1 to both the in-degree and out-degree

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

What is theorem 3?

a graph with directed edges

A

The sum of all in-degrees of the vertices is equal to the number of edges, which is also equal to the number of out-degree

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