1

$$ (\dots, 1, \dots, 0, \dots, 0, \dots) - \\ (\dots, 1, \dots, 1, \dots, 0, \dots) - \\ (\dots, 0, \dots, 1, \dots, 0, \dots) - \\ (\dots, 0, \dots, 1, \dots, 1, \dots) - \\ (\dots, 0, \dots, 0, \dots, 1, \dots) - \\ (\dots, 1, \dots, 0, \dots, 1, \dots) - \\ (\dots, 1, \dots, 0, \dots, 0, \dots) $$

2

(a)

It suffices to show that every connected graph has a closed walk that traverses each edge exactly twice. This can be done by induction.

Another method is Depth-First Search.

Another method is constructing a graph that doubles the edges between every pair of vertices and therefore must have an Euler circuit.

(b)

Constructing a graph G’ based on graph G that triples the edges between every pair of vertices. The $deg_{G'}(v) = 3 deg_G(v)$ and therefore G’ has an Euler circuit if and only if G has an Euler circuit. Then we can disprove this statement by picking a connected graph with no Euler circuit, according to Euler’s Theorem.

3

The size of a maximum independent set in the Petersen Graph is 4, as illustrated below since no set with size 5 is an independent set. The number of maximum independent sets is 5. This is because to obtain an independent set with size 4, the set must include two vertices in the outer cycle, which has 5 choices. Once this is settled, the choice of two inner vertices is fixed.

Untitled

5

(left)