Planted clique

From HandWiki
Short description: Complete subgraph added to a random graph
A 15-vertex planted clique (blue vertices and upper edges) in a 32-vertex random graph (all vertices and lower edges). Every pair of blue vertices is adjacent; the remaining pairs are adjacent randomly with probability 1/2.

In computational complexity theory, a planted clique or hidden clique in an undirected graph is a clique formed from another graph by selecting a subset of vertices and adding edges between each pair of vertices in the subset. The planted clique problem is the algorithmic problem of distinguishing random graphs from graphs that have a planted clique. This is a variation of the clique problem; it may be solved in quasi-polynomial time but is conjectured not to be solvable in polynomial time for intermediate values of the clique size. The conjecture that no polynomial time solution exists is called the planted clique conjecture; it has been used as a computational hardness assumption.

Definition

A clique in a graph is a subset of vertices, all of which are adjacent to each other. A planted clique is a clique created from another graph by adding edges between all pairs of a selected subset of vertices.

The planted clique problem can be formalized as a decision problem over a random distribution on graphs, parameterized by two numbers, n (the number of vertices), and k (the size of the clique). These parameters may be used to generate a graph, by the following random process:[1]

  1. Create an Erdős–Rényi random graph on n vertices by choosing independently for each pair of vertices whether to include an edge connecting that pair, with probability 1/2 for each pair.
  2. Decide whether or not to add a clique to the graph, with probability 1/2; if not, return the graph formed in step 1.
  3. Choose randomly a subset of k of the n vertices and add an edge (if one is not already present) between each pair of the selected vertices.

The problem is then to determine algorithmically whether one of the graphs resulting from this process contains a clique of at least k vertices.

Upper and lower bounds

There exists a function [math]\displaystyle{ f(n) \sim 2 \log_2 n }[/math] such that asymptotically almost surely, the size of the largest clique in an n-vertex random graph is either [math]\displaystyle{ f(n) }[/math] or [math]\displaystyle{ f(n)+1 }[/math],[2] and there exists some constant [math]\displaystyle{ c }[/math] such that the expected number of cliques of size [math]\displaystyle{ \geq f(n) -c }[/math] converges to infinity. Consequently, one should expect that the planting a clique of size [math]\displaystyle{ \sim 2 \log_2 n }[/math] cannot be detected with high probability.

By the central limit theorem, the vertex degrees of the random graph would be distributed close to a standard normal distribution with mean [math]\displaystyle{ \frac n2 }[/math] and standard deviation [math]\displaystyle{ \frac \sqrt{n} 2 }[/math]. Consequently, when [math]\displaystyle{ k }[/math] is on the order of [math]\displaystyle{ \sqrt n }[/math] it would create a detectable change in the shape of the distribution. Namely, if you plot out the vertex degree distribution, it would look like a deformed bell curve. Therefore, the most interesting range of values for the parameter k is between these two values,[1]

[math]\displaystyle{ 2\log_2 n \ll k \ll \sqrt n. }[/math]

Algorithms

Large cliques

For sufficiently large values of the parameter k, the planted clique problem can be solved (with high probability) in polynomial time.[1]

(Kučera 1995) observes that, when [math]\displaystyle{ k=\Omega(\sqrt{n\log n}) }[/math] then almost surely all vertices of the planted clique have higher degree than all vertices outside the clique, making the clique very easy to find. He describes a modification to the random process for generating planted clique instances, that makes the vertex degrees more uniform even for large values of k, but shows that despite this modification the planted clique may still be found quickly.[3]

(Alon Krivelevich) prove for [math]\displaystyle{ k\gt 10\sqrt n }[/math] a planted clique can be found with high probability by the following method:

  1. Compute the eigenvector of the adjacency matrix corresponding to its second highest eigenvalue.
  2. Select the k vertices whose coordinates in this eigenvector have the largest absolute values.
  3. Return the set of vertices that are adjacent to at least 3/4 of the selected vertices.

They show how to modify this technique so that it continues to work whenever k is at least proportional to some multiple of the square root of the number of vertices.Cite error: Closing </ref> missing for <ref> tag

Quasipolynomial time

It is also possible to solve the planted clique problem, regardless of the choice of k, in quasi-polynomial time.[4] Because the largest clique in a random graph typically has size near 2 log2 n,[5] a planted clique of size k (if it exists) can be found with high probability by the following method:

  1. Loop through all sets S of [math]\displaystyle{ \min(k,3\log_2 n) }[/math] vertices.
  2. For each choice of S, test whether S is a clique. If it is, and [math]\displaystyle{ |S| = k }[/math], return S. Otherwise, find the set T of vertices that are adjacent to all vertices in S. If [math]\displaystyle{ |T|\ge k }[/math], return T.

The running time of this algorithm is quasipolynomial, because there are quasipolynomially many choices of S to loop over. This method is guaranteed to try a set S that is a subset of the planted clique; with high probability, the set T will consist only of other members of the planted clique.

As a hardness assumption

The planted clique conjecture is the conjecture that there is no polynomial time algorithm that takes as input graphs produced by the planted clique process and distinguishes the ones with planted cliques from the ones that don't have planted cliques with probability significantly better than random chance.[6]

(Hazan Krauthgamer) used the assumption that finding planted cliques is hard as a computational hardness assumption to prove that, if so, it is also hard to approximate the best Nash equilibrium in a two-player game.[4] The planted clique conjecture has also been used as a hardness assumption to show the difficulty of property testing k-independence of random distributions,[7] finding clusters in social networks,[8] and machine learning.[9]

References

  1. 1.0 1.1 1.2 Arora, Sanjeev; Barak, Boaz (2009), Computational Complexity: A Modern Approach, Cambridge University Press, pp. 362–363, ISBN 9780521424264, https://books.google.com/books?id=8Wjqvsoo48MC&pg=PA362 .
  2. Bollobas, B.; Erdös, P. (November 1976), "Cliques in random graphs" (in en), Mathematical Proceedings of the Cambridge Philosophical Society 80 (3): 419–427, doi:10.1017/S0305004100053056, ISSN 1469-8064, Bibcode1976MPCPS..80..419B, https://www.cambridge.org/core/journals/mathematical-proceedings-of-the-cambridge-philosophical-society/article/abs/cliques-in-random-graphs/27321102B82EDEEF362556BE714FACD9 
  3. Kučera, Luděk (1995), "Expected complexity of graph partitioning problems", Discrete Applied Mathematics 57 (2–3): 193–212, doi:10.1016/0166-218X(94)00103-K .
  4. 4.0 4.1 Hazan, Elad; Krauthgamer, Robert (2011), "How hard is it to approximate the best Nash equilibrium?", SIAM Journal on Computing 40 (1): 79–91, doi:10.1137/090766991 .
  5. "On colouring random graphs", Mathematical Proceedings of the Cambridge Philosophical Society 77 (2): 313–324, 1975, doi:10.1017/S0305004100051124, Bibcode1975MPCPS..77..313G .
  6. Braverman, Mark; Ko, Young Kun; Rubinstein, Aviad; Weinstein, Omri (2015), ETH hardness for densest-k-subgraph with perfect completeness, Bibcode2015arXiv150408352B .
  7. "Testing k-wise and almost k-wise independence", STOC'07—Proceedings of the 39th Annual ACM Symposium on Theory of Computing, New York: ACM, 2007, pp. 496–505, doi:10.1145/1250790.1250863, ISBN 9781595936318 .
  8. "Finding Endogenously Formed Communities", Proceedings of the Twenty-Fourth Annual ACM-SIAM Symposium on Discrete Algorithms (SODA '13), SIAM, 2013, pp. 767–783, ISBN 978-1-611972-51-1, http://dl.acm.org/citation.cfm?id=2627817.2627872 .
  9. Berthet, Quentin; Rigollet, Philippe (2013), "Complexity theoretic lower bounds for sparse principal component detection", Journal of Machine Learning Research 30: 1046–1066, http://jmlr.org/proceedings/papers/v30/Berthet13.html .