What is a graph?
A representation of a set of points (vertices) and how they are connected by lines (edges).
What are the points in a graph called?
Vertices.
What does the degree of a vertex represent?
The number of edges connected to that vertex.
What are multiple edges in a graph?
Edges that connect the same pair of vertices.
What is a loop in a graph?
An edge that connects a vertex to itself.
What is a simple graph?
A graph that contains no loops or multiple edges.
What is a directed graph (digraph)?
A graph where edges have a direction, indicated by arrows.
What is a walk in graph theory?
A sequence of edges that connects a sequence of vertices.
What is a path in graph theory?
A walk in which no vertex appears more than once.
What is a cycle in graph theory?
A walk that starts and ends at the same vertex.
What are Eulerian graphs?
Graphs that contain a walk that includes every edge exactly once.
What are Hamiltonian graphs?
Graphs that contain a walk that includes every vertex exactly once.
What is a connected graph?
A graph where there is a path between any two vertices.
What is a disconnected graph?
A graph that consists of two or more components that are not connected.
What is a tree in graph theory?
A connected graph that contains no cycles.
What is a planar graph?
A graph that can be drawn on a plane without any edges crossing.
What is the four-colour theorem?
A theorem stating that any planar graph can be coloured with four colours such that no two adjacent vertices share the same colour.
What does it mean for two graphs to be isomorphic?
Two graphs G1 and G2 are isomorphic if there is a one-to-one correspondence between their vertices such that the number of edges between corresponding vertices is the same.
What does the term ‘degree of a vertex’ refer to?
The degree of a vertex is the number of edges incident to that vertex.
What is the maximum number of edges in a simple graph with n vertices?
The maximum number of edges in a simple graph with n vertices is given by n(n-1)/2.
What are the components of a graph?
Components are maximal connected subgraphs within a disconnected graph.
What is the relationship between labelled and unlabelled graphs?
Labelled graphs have specific names for vertices, while unlabelled graphs do not; counting them reveals differences in structure.
What does it mean for two vertices in a graph to be adjacent?
Two vertices v and w are adjacent if there is an edge vw joining them.
What is the contribution of a loop to the degree of a vertex?
A loop at vertex v contributes 2 to the degree of v.