Wiener connector

From Wikipedia, the free encyclopedia
(Redirected from Draft:Wiener Connector)

In network theory, the Wiener connector is a means of maximizing efficiency in connecting specified "query vertices" in a network. Given a connected, undirected graph and a set of query vertices in a graph, the minimum Wiener connector is an induced subgraph that connects the query vertices and minimizes the sum of shortest path distances among all pairs of vertices in the subgraph. In combinatorial optimization, the minimum Wiener connector problem is the problem of finding the minimum Wiener connector. It can be thought of as a version of the classic Steiner tree problem (one of Karp's 21 NP-complete problems), where instead of minimizing the size of the tree, the objective is to minimize the distances in the subgraph.[1][2]

The minimum Wiener connector was first presented by Ruchansky et al. in 2015.[3]

The minimum Wiener connector has applications in many domains where there is a graph structure and an interest in learning about connections between sets of individuals. For example, given a set of patients infected with a viral disease, which other patients should be checked to find the culprit? Or given a set of proteins of interest, which other proteins participate in pathways with them?

The Wiener connector was named in honor of chemist Harry Wiener who first introduced the Wiener Index.

Problem definition[edit]

The Wiener index is the sum of shortest path distances in a (sub)graph. Using to denote the shortest path between and , the Wiener index of a (sub)graph , denoted , is defined as

.

The minimum Wiener connector problem is defined as follows. Given an undirected and unweighted graph with vertex set and edge set and a set of query vertices , find a connector of minimum Wiener index. More formally, the problem is to compute

,

that is, find a connector that minimizes the sum of shortest paths in .

Relationship to Steiner tree[edit]

The optimal solutions to the Steiner tree problem and the minimum Wiener connector can differ. Define the set of query vertices Q by Q = {v1, ..., v10}. The unique optimal solution to the Steiner tree problem is Q itself, which has Wiener index 165, whereas the optimal solution for the minimum Wiener connector problem is Q ∪ {r1, r2}, which has Wiener index 142.

The minimum Wiener connector problem is related to the Steiner tree problem. In the former, the objective function in the minimization is the Wiener index of the connector, whereas in the latter, the objective function is the sum of the weights of the edges in the connector. The optimum solutions to these problems may differ, given the same graph and set of query vertices. In fact, a solution for the Steiner tree problem may be arbitrarily bad for the minimum Wiener connector problem; the graph on the right provides an example.

Computational complexity[edit]

Hardness[edit]

The problem is NP-hard, and does not admit a polynomial-time approximation scheme unless P = NP.[3] This can be proven using the inapproximability of vertex cover in bounded degree graphs.[4] Although there is no polynomial-time approximation scheme, there is a polynomial-time constant-factor approximation—an algorithm that finds a connector whose Wiener index is within a constant multiplicative factor of the Wiener index of the optimum connector. In terms of complexity classes, the minimum Wiener connector problem is in APX but is not in PTAS unless P = NP.

Exact algorithms[edit]

An exhaustive search over all possible subsets of vertices to find the one that induces the connector of minimum Wiener index yields an algorithm that finds the optimum solution in time (that is, exponential time) on graphs with n vertices. In the special case that there are exactly two query vertices, the optimum solution is the shortest path joining the two vertices, so the problem can be solved in polynomial time by computing the shortest path. In fact, for any fixed constant number of query vertices, an optimum solution can be found in polynomial time.

Approximation algorithms[edit]

There is a constant-factor approximation algorithm for the minimum Wiener connector problem that runs in time on a graph with n vertices, m edges, and q query vertices, roughly the same time it takes to compute shortest-path distances from the query vertices to every other vertex in the graph.[3] The central approach of this algorithm is to reduce the problem to the vertex-weighted Steiner tree problem, which admits a constant-factor approximation in particular instances related to the minimum Wiener connector problem.

Behavior[edit]

The minimum Wiener connector behaves like betweenness centrality.

When the query vertices belong to the same community, the non-query vertices that form the minimum Wiener connector tend to belong to the same community and have high centrality within the community. Such vertices are likely to be influential vertices playing leadership roles in the community. In a social network, these influential vertices might be good users for spreading information or to target in a viral marketing campaign.[5]

When the query vertices belong to different communities, the non-query vertices that form the minimum Wiener connector contain vertices adjacent to edges that bridge the different communities. These vertices span a structural hole in the graph and are important.[6]

Applications[edit]

The minimum Wiener connector is useful in applications in which one wishes to learn about the relationship between a set of vertices in a graph. For example,

References[edit]

  1. ^ Hwang, Frank; Richards, Dana; Winter, Dana; Winter, Pawel (1992). "The Steiner Tree Problem". Annals of Discrete Mathematics.
  2. ^ DIMACS Steiner Tree Challenge
  3. ^ a b c Ruchansky, Natali; Bonchi, Francesco; Garcia-Soriano, David; Gullo, Francesco; Kourtellis, Nicolas (2015). "The Minimum Wiener Connector". SIGMOD. arXiv:1504.00513. Bibcode:2015arXiv150400513R. doi:10.1145/2723372.2749449. S2CID 2856346.
  4. ^ Dinur, Irit; Safra, Samuel (2005). "On the hardness of approximating minimum vertex cover". Annals of Mathematics. 162: 439–485. doi:10.4007/annals.2005.162.439.
  5. ^ Hinz, Oliver; Skiera, Bernd; Barrot, Christian; Becker, Jan U. (2011). "Seeding Strategies for Viral Marketing: An Empirical Comparison". Journal of Marketing. 75 (6): 55–71. doi:10.1509/jm.10.0088. S2CID 53972310.
  6. ^ Lou, Tiancheng; Tang, Jie (2013). "Mining Structural Hole Spanners Through Information Diffusion in Social Networks". Proceedings of the 22nd International Conference on World Wide Web. Rio de Janeiro, Brazil: International World Wide Web Conferences Steering Committee. pp. 825–836. ISBN 9781450320351.