Planted Clique Model

The planted clique model is a variant of this model where we assume that there is a hidden clique of size that is present in the graph. More precisely, a graph is generated as follows:

  1. We first sample from .
  2. Then, we select a subset of vertices uniformly at random.
  3. Finally, we add all the missing edges between the vertices in , ensuring that forms a clique in the graph.

We can think of this as a more general two-step process: first, we generate a random graph, and then we β€œplant” a clique of size in it.

Finding a Planted Clique on Dense Random Graphs

Case

Theorem

Let be a random graph with a planted clique of size . Each node receive at least of new incident edges by adding the planted clique to the underlying Erdos-Renyi random graph (i.e., after step 3 ), with (high) probability at least .

Proof

For every , let be the random variable denoting the number of neighbours of in considering only the edges of the unerlying random graph , with expectation . By using Chernoff’s bound

Since the number neighborhood of in before step 3 is at most with high probability, the number of new edges incident to after step 3 must be at least with high probability.

Since we know that, with high probability, the degree of any vertex outside the planted clique is

for sufficiently large value of the vertices of the planted clique are those with maximum degrees.

Indeed, by choosing we have that the degree of each vertex is, with high probability, at least

Case

🚧TODO🚧