Weak component

From HandWiki
Short description: Partition of vertices of a directed graph

In graph theory, the weak components of a directed graph partition the vertices of the graph into subsets that are totally ordered by reachability. They form the finest partition of the set of vertices that is totally ordered in this way.

Definition

The weak components were defined in a 1972 paper by Ronald Graham, Donald Knuth, and (posthumously) Theodore Motzkin, by analogy to the strongly connected components of a directed graph, which form the finest possible partition of the graph's vertices into subsets that are partially ordered by reachability. Instead, they defined the weak components to be the finest partition of the vertices into subsets that are totally ordered by reachability.[1][2]

In more detail, (Knuth 2022) defines the weak components through a combination of four symmetric relations on the vertices of any directed graph, denoted here as [math]\displaystyle{ \Leftrightarrow }[/math], [math]\displaystyle{ \parallel }[/math], [math]\displaystyle{ \approx }[/math], and [math]\displaystyle{ \asymp }[/math]:

  • For any two vertices [math]\displaystyle{ u }[/math] and [math]\displaystyle{ v }[/math] of the graph, [math]\displaystyle{ u\Leftrightarrow v }[/math] if and only if each vertex is reachable from the other: there exist paths in the graph from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ v }[/math] and from [math]\displaystyle{ v }[/math] to [math]\displaystyle{ u }[/math]. The [math]\displaystyle{ \Leftrightarrow }[/math] relation is an equivalence relation, and its equivalence classes are used to define the strongly connected components of the graph.
  • For any two vertices [math]\displaystyle{ u }[/math] and [math]\displaystyle{ v }[/math] of the graph, [math]\displaystyle{ u\parallel v }[/math] if and only if neither vertex is reachable from the other: there do not exist paths in the graph in either direction between [math]\displaystyle{ u }[/math] and [math]\displaystyle{ v }[/math].
  • For any two vertices [math]\displaystyle{ u }[/math] and [math]\displaystyle{ v }[/math] of the graph, [math]\displaystyle{ u\approx v }[/math] if and only if either [math]\displaystyle{ u\Leftrightarrow v }[/math] or [math]\displaystyle{ u\parallel v }[/math]. That is, there may be a two-way connection between these vertices, or they may be mutually unreachable, but they may not have a one-way connection.
  • The relation [math]\displaystyle{ \asymp }[/math] is defined as the transitive closure of [math]\displaystyle{ \approx }[/math]. That is, [math]\displaystyle{ u\asymp v }[/math] when there is a sequence [math]\displaystyle{ u\approx\cdots\approx v }[/math] of vertices, starting with [math]\displaystyle{ u }[/math] and ending with [math]\displaystyle{ v }[/math], such that each consecutive pair in the sequence is related by [math]\displaystyle{ \approx }[/math].

Then [math]\displaystyle{ \asymp }[/math] is an equivalence relation: every vertex is related to itself by [math]\displaystyle{ \asymp }[/math] (because it can reach itself in both directions by paths of length zero), any two vertices that are related by [math]\displaystyle{ \asymp }[/math] can be swapped for each other without changing this relation (because [math]\displaystyle{ \asymp }[/math] is built out of the symmetric relations [math]\displaystyle{ \Leftrightarrow }[/math] and [math]\displaystyle{ \parallel }[/math]), and [math]\displaystyle{ \asymp }[/math] is a transitive relation (because it is a transitive closure of another relation). As with any equivalence relation, it can be used to partition the vertices of the graph into equivalence classes, subsets of the vertices such that two vertices are related by [math]\displaystyle{ \asymp }[/math] if and only if they belong to the same equivalence class. These equivalence classes are the weak components of the given graph.[2]

The original definition by Graham, Knuth, and Motzkin is equivalent but formulated somewhat differently. Given a directed graph [math]\displaystyle{ G }[/math], they first construct another graph [math]\displaystyle{ \hat G }[/math] as the complement graph of the transitive closure of [math]\displaystyle{ G }[/math]. As (Tarjan 1974) describes, the edges in [math]\displaystyle{ \hat G }[/math] represent non-paths, pairs of vertices that are not connected by a path in [math]\displaystyle{ G }[/math].[3] Then, two vertices belong to the same weak component when either they belong to the same strongly connected component of [math]\displaystyle{ G }[/math] or of [math]\displaystyle{ \hat G }[/math].[1][3] As Graham, Knuth, and Motzkin prove, this condition defines an equivalence relation,[1] the same one defined above as [math]\displaystyle{ \asymp }[/math].[4]

Corresponding to these definitions, a directed graph is called weakly connected if it has exactly one weak component. This means that its vertices cannot be partitioned into two subsets, such that all of the vertices in the first subset can reach all of the vertices in the second subset, but such that none of the vertices in the second subset can reach any of the vertices in the first subset. It differs from other notions of weak connectivity in the literature, such as connectivity and components in the underlying unconnected graph, for which Knuth suggests the alternative terminology undirected components.[2]

Properties

If [math]\displaystyle{ X }[/math] and [math]\displaystyle{ Y }[/math] are two weak components of a directed graph, then either all vertices in [math]\displaystyle{ X }[/math] can reach all vertices in [math]\displaystyle{ Y }[/math] by paths in the graph, or all vertices in [math]\displaystyle{ Y }[/math] can reach all vertices in [math]\displaystyle{ X }[/math]. However, there cannot exist reachability relations in both directions between these two components. Therefore, we can define an ordering on the weak components, according to which [math]\displaystyle{ X\lt Y }[/math] when all vertices in [math]\displaystyle{ X }[/math] can reach all vertices in [math]\displaystyle{ Y }[/math]. By definition, [math]\displaystyle{ X\nless X }[/math]. This is an asymmetric relation (two elements can only be related in one direction, not the other) and it inherits the property of being a transitive relation from the transitivity of reachability. Therefore, it defines a total ordering on the weak components. It is the finest possible partition of the vertices into a totally ordered set of vertices consistent with reachability.[1]

This ordering on the weak components can alternatively be interpreted as a weak ordering on the vertices themselves, with the property that when [math]\displaystyle{ u\lt v }[/math] in the weak ordering, there necessarily exists a path from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ v }[/math], but not from [math]\displaystyle{ v }[/math] to [math]\displaystyle{ u }[/math]. However, this is not a complete characterization of this weak ordering, because two vertices [math]\displaystyle{ u }[/math] and [math]\displaystyle{ v }[/math] could have this same reachability ordering while belonging to the same weak component as each other.[2]

Every weak component is a union of strongly connected components.[2] If the strongly connected components of any given graph are contracted to single vertices, producing a directed acyclic graph (the condensation of the given graph), and then this condensation is topologically sorted, then each weak component necessarily appears as a consecutive subsequence of the topological order of the strong components.[3]

Algorithms

An algorithm for computing the weak components of a given directed graph in linear time was described by (Pacault 1974), and subsequently simplified by (Tarjan 1974) and (Knuth 2022).[2][3][5] As Tarjan observes, Tarjan's strongly connected components algorithm based on depth-first search will output the strongly connected components in (the reverse of) a topologically sorted order. The algorithm for weak components generates the strongly connected components in this order, and maintains a partition of the components that have been generated so far into the weak components of their induced subgraph. After all components are generated, this partition will describe the weak components of the whole graph.[2][3]

It is convenient to maintain the current partition into weak components in a stack, with each weak component maintaining additionally a list of its sources, strongly connected components that have no incoming edges from other strongly connected components in the same weak component, with the most recently generated source first. Each newly generated strongly connected component may form a new weak component on its own, or may end up merged with some of the previously constructed weak components near the top of the stack, the ones for which it cannot reach all sources.[2][3]

Thus, the algorithm performs the following steps:[2][3]

  • Initialize an empty stack of weak components, each associated with a list of its source components.
  • Use Tarjan's strongly connected components algorithm to generate the strongly connected components of the given graph in the reverse of a topological order. When each strongly connected component [math]\displaystyle{ S }[/math] is generated, perform the following steps with it:
    • While the stack is non-empty and [math]\displaystyle{ S }[/math] has no edges to the top weak component of the stack, pop that component from the stack.
    • If the stack is still non-empty, and some sources of its top weak component are not hit by edges from [math]\displaystyle{ S }[/math], again pop that component from the stack.
    • Construct a new weak component [math]\displaystyle{ W }[/math], containing as sources [math]\displaystyle{ S }[/math] and all of the unhit sources from the top component that was popped, and push [math]\displaystyle{ W }[/math] onto the stack.

Each test for whether any edges from [math]\displaystyle{ S }[/math] hit a weak component can be performed in constant time once we find an edge from [math]\displaystyle{ S }[/math] to the most recently generated earlier strongly connected component, by comparing the target component of that edge to the first source of the second-to-top component on the stack.

References

  1. 1.0 1.1 1.2 1.3 "Complements and transitive closures", Discrete Mathematics 2: 17–29, 1972, doi:10.1016/0012-365X(72)90057-X, https://mathweb.ucsd.edu/~fan/ron/papers/72_08_complements.pdf 
  2. 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 "Weak components", The Art of Computer Programming, Volume 4, Pre-Fascicle 12A: Components and Traversal, January 15, 2022, pp. 11–14, https://cs.stanford.edu/~knuth/fasc12a+.pdf 
  3. 3.0 3.1 3.2 3.3 3.4 3.5 3.6 "A new algorithm for finding weak components", Information Processing Letters 3 (1): 13–15, July 1974, doi:10.1016/0020-0190(74)90040-4 
  4. Knuth (2022), Exercise 81, p. 21.
  5. Pacault, Jean François (1974), "Computing the weak components of a directed graph", SIAM Journal on Computing 3: 56–61, doi:10.1137/0203005