Tiny example
A tiny network
Draw four dots. Join A to B, B to C and C to D.
A can reach D, but only by travelling through B and C.
Studying dots and the connections between them.
In graph theory, a graph is a network. The dots are vertices and the lines are edges. The exact drawing often matters less than what connects to what.
Tiny example
Draw four dots. Join A to B, B to C and C to D.
A can reach D, but only by travelling through B and C.
Why it matters
Graph theory models maps, social networks, routes, conflicts, dependencies and search problems.
Build a graph and step through breadth-first and depth-first search.
ExplorationExplore weighted shortest paths, tentative distances and settled nodes.
ExplorationExplore planar graphs, Euler's formula, crossings and map colouring.
Exploration