3033: CHAPTER 1: BASIC NOTIONS Flashcards

(47 cards)

1
Q

Definition of a graph

A

A graph is a pair of sets G=(V,E) such that E ⊆ V^{2}

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

What is A^{2}?

A

The set of 2 element subsets of A

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

What is the maximum number of vertices for a graph of n vertices?

A

(n 2) = n!/2!*(n-2)!

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

For 2<=k

A

It is the graph whose vertices are the k-element subsets of {1,…,n} with two k-subsets adjacent if they intersect in a (k-1)-subset

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

What does it mean for 2 vertices to be adjacent?

A

There is an edge between them

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

When are two vertices u and v neighbours?

A

When there is an edge between them

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

What does it mean for a vertex v to be incident to an edge e?

A

The edge e has an endpoint at v

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

What is the d(v)?

A

The number of edges incident to v

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

When is a vertex isolated?

A

When it has degree 0

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

What is the handshaking lemma?

A

SUM (i=1 n)(d(xi)) = 2|E|

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

For a graph G=(V,E), what is a subgraph?

A

A graph G’=(V’,E’) where V′⊆V and E′⊆E.

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

When is a subgraph a spanning subgraph?

A

When V’=V

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

When is a subgraph an induced subgraph?

A

When for all u,v ∈ V′, if uv ∈ E then uv ∈ E′.

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

When is a graph G complete?

A

When there is an edge between any two vertices

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

When is a graph G null?

A

When it has no edges

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

Let G = (V,E) be a graph. What is a bipartition of G?

A

It is a pair of subsets X,Y ⊆ V such that X ∪ Y = V, X ∩ Y =∅ and every edge of G has one endpoint in X and the other in Y

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

When is G complete bipartite

A

If it has a bipartition X , Y such that every vertex in X is adjacent to every vertex in Y .

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

Let G be a graph. For k ∈ N, what does it for G to be k-regular?

A

All the vertices of G have degree k.

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

Let G = (V,E) be a graph. For a subset V′ ⊆ V, what is G −V′?

A

It is the graph obtained from G by deleting the vertices in V ′ and deleting all edges incident with them

20
Q

Let G = (V,E) be a graph. For a subset E′ ⊆ E, what is G−E′?

A

It is the graph obtained from G by deleting the edges in E′?

21
Q

Let G = (V , E ) be a graph. What is the complement of G?

A

It is the graph Gc = (Vc, Ec), where Vc =V and Ec = V^{2}\E

22
Q

Let G = (V,E) and G′ = (V′,E′) be graphs. What is an isomorphism f : G → G′ ?

A

It is a bijective function f : V → V′ such that u and v are adjacent in G if and only if f(u) and f(v) are adjacent in G ′ , for all u , v ∈ V .

23
Q

If G ∼= H then what can we say about Gc and Hc

24
Q

What is an automorphism?

A

It is an isomorphism of a graph G to itself

25
Let G = (V , E ) be a graph. When is G vertex-transitive
When if for any u, v ∈ V, there is an automorphism α: G → G with α(u) = v.
26
If G is vertex-transitive graph. Then what can we say about it?
(i) G is regular (ii) the complement Gc of G is also vertex-transitive
27
What is an edge sequence of G?
It is a sequence of vertices v0 v1 ... vk such that v0v1,v1v2,...vk−1vk ∈ E.
28
What is a path?
It is an edge sequence where all the vertices in it, except possibly its initial and final vertex, are distinct.
29
Let G = (V,E) be a graph. For u,v ∈ V, what is d(u,v)?
It is the length of the shortest path from u to v
30
If there is no path between u and v what is d(u,v)?
31
What is the diameter of G?
max{d(u,v) | u,v ∈ V}
32
Let G = (V,E) be a graph and u,v ∈ V. Then what can we say about uv-edge sequences and uv-paths?
Every uv-edge sequence contains a uv-path
33
What does it mean for an edge sequence to be closed?
It’s initial and final vertex are the same
34
What is a cycle?
A closed path
35
What is the birth of G?
The length of the shortest cycle in G
36
What does it mean for G to be connected?
If for any two vertices u, v of G there is a path from u to v.
37
Let G = (V,E) be a graph. When is an edge e ∈ E a bridge?
if removing e from G disconnects the graph, i.e. G − e is disconnected
38
What is a connected component of G
It is a maximal connected subgraph of G
39
Let G = (V , E ) be a graph with n vertices and k edges. What can we say if G connected
k ≥ n − 1
40
What is a forest?
A graph with no cycles
41
What is a tree?
A connected graph with no cycles
42
Given a tree T, what is a leaf?
A vertex of degree 1
43
What can we say about a tree with n ≥ 2 vertices.
i) G has at least two leaves. (ii) If v is a leaf, then G −v is a tree with n−1 vertices.
44
Let G be a graph with n ≥ 1 vertices. Then the following conditions are equivalent to G being a tree?
(ii) G has no cycles and has n − 1 edges. (iii) G is connected and has n − 1 edges. (iv) G is connected, and every edge is a bridge. (v) each pair of vertices in G is connected by a unique path. (vi) G has no cycles, but adding any one edge creates a cycle.
45
Let G = (V,E) be a graph. When is G an Eulerian graph?
If G has an Eulerian tour, i.e. a closed edge sequence that contains every edge of G exactly once.
46
If every vertex of a graph has degree of at least 2, what can we say about it?
G has a cycle
47
Let G be a connected graph. When is G Eulerian?
Iff every vertex has even degree