Given a directed graph with n vertices and the probability of any edge existing being p, what is the size of the largest strongly connected component in the graph? What if its undirected graph? Can we also estimate the number of components too in terms of n and p?
What is the expected size of the largest strongly connected component of a graph?
3.4k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 2 best solutions below
On
The random directed graph on $n$ vertices, where each potential arc is present with probability $p$ independent of any other arc is typically denoted by $D(n,p)$. As Did's link mentions, $p=\ln n/n$ is a sharp threshold for strong connectedness. The following results deal with sparse random digraphs.
A $complex$ strong component is a strong component with more arcs than vertices. In other words, a complex strong component is a strong component that is neither a single vertex or a cycle.
Karp (1990, "The transitive closure of a random digraph") and Luczak (1990, "The phase transition in the evolution of random digraphs") proved that for any $\omega(n)$ tending to $\infty$, with probability tending to 1,
1) each strong component of $D(n,p=c/n), c<1$ has size less than $\omega$ and there are no complex strong components.
2) there is an unique complex strong component in $D(n,p=c/n),c>1$ which is of size on the order of $n$, and each other strong component has size less than $\omega$.
As opposed to undirected random graphs, this $\omega$ can tend to $\infty$ however slowly!
The behavior of $D(n,p=1/n)$ has been difficult to establish. As far as I know, the most up to date information, proved by Luczak and Seierstad (2009, "The Critical Behavior of Random Digraphs"), is that there is some $a,b \in (0,1)$ such that for $n$ large enough
$$P(\text{there exists a complex component in }D(n,p=1/n)) \in [a,b]$$
In the same paper, they show analogous results to 1) and 2) above for $c$ tending to 1, but $n^{1/3}|c-1| \to \infty$.
Much is known about the behavior of the (undirected) random graph $G(n, p)$ in the Erdős–Rényi model, including the following:
$\langle$Begin quote$\rangle$
$\langle$End quote$\rangle$
The directed case is studied here.