I want to express the excepted size of the component for a randomly chosen node in the random Erdos-Renyi graph $G(n,p)$. I already read this thread, but I want to express it asymptotically.
Let $p = \dfrac{c}{n}$. Let $S$ be the random variable which gives us the size of the considered node.
The results I want to show (as $n \rightarrow \infty$) :
- For $c<1$ : $\Bbb E[S] < \log(n)$
- For $1<c < \log (n)$ : $\Bbb E [S] = qqn + (1-q)\log(n)$
- For $c>1$ : $\Bbb E[S] = n$
Where $ q $ denotes the fraction of nodes in the giant component of the graph.
The results I already know:
If $np < 1$, then a graph in $G(n, p)$ will almost surely have no connected components of size larger than $O(\log(n))$.
If $np = 1$, then a graph in $G(n, p)$ will almost surely have a largest component whose size is of order $n^{2/3}$.
If $np → c > 1$, where $c$ is a constant, then a graph in $G(n, p)$ will almost surely have a unique giant component containing a positive fraction of the vertices. No other component will contain more than $O(\log(n))$ vertices.
If $p<\tfrac{(1-\epsilon)\ln n}{n}$, then a graph in $G(n, p)$ will almost surely contain isolated vertices, and thus be disconnected.
If $p>\tfrac{(1+\epsilon) \ln n}{n}$, then a graph in $G(n, p)$ will almost surely be connected.
Thus $\tfrac{\ln n}{n}$ is a sharp threshold for the connectedness of $G(n, p)$.
(Quote of the "Did"'s answer here)
What I tried: (the case $c<1$) We note $ k_n = a\log(n) $, with $a$ verifying $ \Bbb P(|C_{max}| \geq a\log(n)) \rightarrow 0$ where $|C_{max}|$ is the size of the biggest component. $$\begin{align} \Bbb E[S] &= \sum_{k=1}^n k\Bbb P(S=k)\\ & = \sum_{k=1}^{\lfloor k_n \rfloor} k\Bbb P(S=k) + \sum_{k\geq k_n}^n k\Bbb P(S=k) \\ & \leq \sum_{k=1}^{\lfloor k_n \rfloor} k\Bbb P(S=k) + n\times \sum_{k\geq k_n}^n\Bbb P(S=k)\\ & \leq \sum_{k=1}^{\lfloor k_n \rfloor} k\Bbb P(S=k) + n\times \Bbb P(|C_{max}| \geq a\log(n)) \end{align}$$
I don't know how to continue.