We create a random graph $G(n,1/2)$.
Next, we choose randomly $k$ vertices, and form a clique out of these $k$ vertices.
My question is: how do you prove (with high probability) that when
$$k > C {\sqrt{n{\log(n)}}}$$
for some sufficiently large constant $C$, that the vertices of the clique are the highest degree vertices in the graph?
I'm assuming that you look to the degrees after the formation of your clique, ok?
Observe that if $v \in V(G) $ then $ deg(v) \sim bin(n-1, 1/2) $, right? What you know about random variable with binomial distribution? They are exponentially close to its mean. Using Chernoff Bound
$$ P(deg(v) > n/2 + \lambda) \le exp\{-\frac{\lambda^2}{2(n/2+\lambda/3)}\}$$
If you let $ \lambda = \sqrt{Cnlog(n)}$ what you have, for $n$ large, is
$$ P(deg(v) > n/2 + \sqrt{Cnlog(n)}) \le n^{-C} $$
Actually you have a very simular inequality for $P(deg(v) < n/2 - \lambda)$, so you have
$$ P(|deg(v) - n/2| > \sqrt{Cnlog(n)}) \le 2n^{-C}$$ and finally
$$P(\exists v \text{ such that } |deg(v) - n/2| > \sqrt{Cnlog(n)} ) \le 2n^{-C+1} $$
We proved that the degree of all vertices are close to $n/2$, if $C>1$, and they can't have a deviation of $\sqrt{Cnlog(n)}$.
But observe that all the vertices in the clique have their degrees increased by $k-1$, so if you let $k > \sqrt{Cnlog(n)}$ you have the result with high probability.