Graph Theory Flashcards

(47 cards)

1
Q

Define an edge

A

Associates one vertex to itself or another.

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

What is a loop?

A

An edge with only one endpoint/vertex

Connecting a vertex with itself

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

Define parallel edges.

A

Two edges that have the same vertex/endpoint

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

When are two vertices adjacent?

A

When they are connected by an edge

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

What is a directed graph

A

A graph in which each edge has a direction (like an arrow pointing from one vertex to another)

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

Given a graph G and vertex, v of G

what does deg(v) denote?

A

The the degree of v. Meaning the number of edges that are incident on v. Loops are counted twice

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

What is the total degree of a graph?

A

The sum of the degrees of all the verticies of the graph

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

Given a graph where n=number of edges, d=total degree

What relation does n and d have?

A

d=2n. Basically, the total degree is just double the number of edges

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

True or false?

The total degree of graph is even

A

True. The total degree equals 2 times the number of edges where the number of edges is an integer.

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

Given a graph with an even number of vertices, what degree does each vertex have (odd or even)

A

Odd. In a graph with an even number of verticies, each vertex will have an odd degree

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

No. Because it has been proved that a graph with even number of verticies, each vertex must have an odd degree. In the question, there are some with even degrees

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

What is a simple graph?

A

A graph with no parallel edges nor loops. In other words, a graph where no two edges share the same set of end-points

21
Q

What is a complete graph?

A

A type of simple graph where each vertex is connected by exactly one edge

24
Q

What is a complete bipartite graph?

A

A graph where the vertices can be partitioned into two subsets (split into two subsets) where each vertex in one subset is connected to a vertex in the other subset by an edge

Note that no vertex is connected to a vertex of the same subset
25
# Given a graph with and verticies v and w What is a trail from v to w?
It is a walk from v to w such that no edges are repeated
26
# Given a graph with and verticies v and w What is a path from v to w?
It is a walk from v to w such that no verticies are repeated
27
# Given a graph What is a closed walk
It is a walk where you start and end on the same vertex
28
# Given a graph What is a circuit?
It is a walk where you start and end on the same vertex (closed walk) such that contains at least one edge and does not contain a repeated edge (trail walk)
29
# Given a graph What is a simple circuit?
It is a walk where you start and end on the same vertex (closed walk) such that contains at least one edge and does not contain a repeated edge (trail walk) nor repeated vertex (path walk) (except for start and end vertex)
30
What is the difference between simple circuit and circuit walk?
A simple circuit is just a circuit but with the added condition that no vertex is repeated (except for start and end vertex)
31
In the graph below, determine which of the following are either trails, paths, closed walks, circuits simple circuits or none of the above (just a walk)
32
# Given a graph G and H When is H said to be a subgraph of G
iff every vertex and edge in H is also in G and that every edge in H has the same endpoints as the corresponding edges in G
33
revision
34
What is the formal definition for a connected graph?
∀ vertices v and w in G, ∃ a walk from v to w | All vertices are connected by a walk (not an edge)
35
36
# True or false? Given verticies v and w that are part of a circuit in graph G. If one edge is removed from the circuit, then there still exists a trail from v to w
True.
37
# Given a graph H and a graph G When is H called the connected component of a graph G
iff 1. H is a subgraph of G 2. H is connected
38
39
What is an Euler circuit
A graph that has a circuit such that every vertex is utilised at least once and every edge is utilised exactly once
40
# True or false? If a graph has an euler circuit, then every vertex of the graph has an even degree
True.
41
42
Given a matrix A and B, when are these matrices equal?
iff A and B have the same size and ∀ entries a, b where a is an entry of A and b is an entry of B, a=b
43
44
What is an adjacency matrix of a graph G?
A matrix that shows the number of edges that connect to each vertex
45
When is a matrix symmetric?
Given any entries aij and aji of matrix A. Matrix A is symmetric iff aij = aji
46
What is an incidence matrix?
A matrix which basically shows how many times a vertex is incidence with an edge. (vertex=row, edge=column)
47
When is a graph a tree?
iff it is connected and is circuit-free