| Defining clusters, part one: connected components |
|
The following sections present a "semi-formal" definition of clusters in three parts:
Given an undirected graph G=(V,E), we define a connected component to be a subgraph induced by node set S⊆V (i.e., GS = (S,ES)) with the following two properties:
The above 2 mathematical properties of a connected component translate into the button-and-thread metaphor as follows:
For example: The graph G2 (drawn above and again below) is not a connected component because it violates property #1: it is not connected. ![]() The subgraph induced by S={c,d,e,f} (drawn with dark nodes and edges below) is not a connected component because it violates property #2. There are edges in E that join nodes in S to node b, which is a node not in S. ![]()
|

