Chapter 3 Flashcards

1
Q

Defn/ An Eulerian circuit is:

A

A Eulerian circuit is a circuit (repeated edges, no repeat vertices) in a multigraph containing all edges.

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

Defn/ A graph is Eulerian if:

A

it has an Eulerian circuit

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

Lemma: A multigraph G contains a circuit if every vertex is even, some with positive degree.

A

Pick vertex v with degree >0, and form a travel T by randomly choosing edges not previously traversed. Suppose this stops at vertex w. If v=w, done. If v!=w, that means number of edges in T incident to w is odd (there must be another way out if they were even) thus contradiction.

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

Thm: A multigraph G is Eulerian IFF the vertices of G are even and connected.

A

Pf (Eulerian => Even degree).
Let C be Uelerian cicuit. For each v in G, there are even num edges in C incident. since C Eulerian, vertex degree is equal to the # of incident edges in C.
(Even deg => Eulerian)
Apply lemma, G has a circuit C. If C is not Eurlerian, there exists a vertex u in C, incident to edges not in C. Construct a multigraph H by removing edges in C. H also has vertices of even degree, so by lemma, there exists a curcuit C’ containing u in H. Then create a new circuit by concatenating C, C’. Repeat until all edges are accounted for.

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

Corr: A multigraph is Eulerian IFF its edge set can be partitioned into cycles

A

no proof

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

Def/ A multigraph G is traversible if:

A

Traversible if G has a trail T which has all edges of G, AKA has a Eulerian trail.

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

Thm: G is traversible IFF all but 2 vertices of G are even, and G is connected.

A

Let v1, v2 be vert of odd degree. Then, G+v1v2 is Eulerian (could be 2 edges between the verts).
G + v1v2 has Eulerian circuit C
G + v1v2 is an Eulerian trail in G.

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

Def/ A graph G is Hamiltonian if:

A

there is a cycle (no repeated edges or vert) in G containing all vertices

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

Thm: If G has order p>= 3 (123 all trivial), min degv >=p/2, then G is Hamiltonian.

A

Pf: Step 1: Let path P = u1,u2,u3,…, u.k by a maximal path. Since degu1 >= p/2, |P|>= 1 + p/2.
Step 2: Claim there exists a vertex u.2, 2<=i<=k so u.1 adjacent to u.i and u.k adjacent to u.i-1. BWOC, suppose for each u.1 adjacent to u.1, u.i-1 is NOT adjacent to u.k.
There are at least p/2 vertices adjacent to u.k

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

Lemma: If u,v non-adj. and degu + degv >= p, then if G+uv Ham. => G also Ham.

A

Same idea as the “If G has order p>=4, and min degv >= p/2, then G is Hamiltonian” proof with proving the vertex path setup exists due to how many vertices are connected.

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

Def/ the closure of G is:

A

the closure of G is obtained by recursively joining pairs of nonadj. vert. uv where degu + degv >=p

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

Thm: A graph is Ham IFF it’s closure is Ham.

A

First way follows from lemma that G + uv, where u,v degrees summed are >=p implies that G also Ham, and second way is simply because adding edges does not affect if something is Ham.

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