For an undirected random graph with n nodes and probability p that any node u connects to any node v (apart from node u, i.e. no self-loops), the degree distribution is the binomial:
$$p_k = {n-1 \choose k} p^k (1-p)^{n-k-1}$$
However, what if the graph is random but directed? Are the in-degree and out-degree distributions the same as the above? Intuitively it feels like this is the case, but how do I show it?
As long as edges are independently generated, we still get a binomial distribution for the in-degree and out-degree.
Specifically, there's two ways we can try to generate a random directed graph:
The formula $\binom{n-1}{k} p^k (1-p)^{n-1-k}$ for random graphs does not come out of nowhere: we have $\binom{n-1}{k}$ ways to pick $k$ potential edges out of a vertex, $p^k$ probability that all of them are present, and $(1-p)^{n-1-k}$ probability that all the others are absent. As long as we can do the same in the directed case (which we can), the same formula holds.