April 2024 Graph Theory Exam Paper
April 2024 Graph Theory Exam Paper
A connected graph without cycles is called a tree. This structure uniquely differentiates trees from more complex graph structures, as adding any edge to a tree will form at least one cycle, violating its acyclic nature .
The complement of a graph is used to explore properties not evident in the original graph, especially regarding non-edges. It contains exactly those edges that are present in a complete graph but absent in the original graph. The complement focuses on the absence of connections, highlighting indirect relationships .
The Handshaking Lemma states that the sum of the degrees of all vertices in a graph is twice the number of edges, which is an even number. This implies that the number of vertices with odd degree must be even, as an odd count would result in an odd sum of degrees, contradicting the lemma .
A tree is a connected graph with no cycles. It is always a bipartite graph because trees do not contain odd-length cycles, making it possible to divide the vertices into two sets such that no two vertices within the same set are adjacent .
Euler's formula for planar graphs states that for any connected plane graph, the relationship n - m + f = 2 holds true, where 'n' is the number of vertices, 'm' is the number of edges, and 'f' is the number of faces .
Self-loops are counted twice in the degree of a vertex because each loop adds to both the incoming and outgoing degree simultaneously, affecting traversal, connectivity, and the degree sequence calculations. This impacts the graph’s properties like connectivity, symmetry, and traversal algorithms .
The number of spanning trees in a complete graph with 'v' vertices is calculated using Cayley's formula as v^(v-2). For example, a complete graph with 4 vertices has 4^(4-2) = 16 spanning trees. This highlights the connectivity and redundancy inherent in complete graphs .
A degree sequence can represent a simple graph if the sum of the degrees is even and satisfies the Handshaking Lemma. Sequence 7, 6, 5, 4, 4, 3, 2, 1 has an even sum, but sequence 8, 7, 7, 6, 4, 2, 1, 1 violates this by not being graphical, showing an inconsistency in constructing a valid simple graph .
In a simple undirected graph, the adjacency matrix is symmetric because if an edge exists between vertices i and j, the edge is bidirectional, implying that both (i,j) and (j,i) are entries in the matrix. This symmetry is crucial for structural analysis and operations within the graph .
The maximum number of edges in a simple graph with 'n' vertices is n(n-1)/2, which occurs when the graph is complete and every pair of distinct vertices is connected by a unique edge. This property emphasizes the maximum connectivity between vertices in a graph .