In the appendix: The CBS Theorem.

Recap of last time

Walks, Paths, Reachability

A walk in a graph is a sequence of one or more nodes $v_1, v_2, \dots, v_n$ such that any two consecutive nodes in the sequence are adjacent.

A closed walk in a graph is a walk from a node back to itself. (By convention, a closed walk cannot have length zero, i.e. a walk with just one node).

A path in a graph is a walk that does not repeat any nodes. (This also implies a path never repeats an edge).

A cycle in a graph is a closed walk that does not repeat any nodes or edges except the first/last node.

Reachability

A node $v$ is reachable from a node $u$ if there exists a path from $u$ to $v$.

a graph $G$ is called connected if all pairs of distinct nodes in $G$ are reachable.

a connected component (or CC) of $G$ is a maximal set of mutually reachable nodes.