Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

In a configuration model where each node has a degree 2. What is probability that a node belongs to a component of size n.

share|improve this question

1 Answer

I don't know what a "configuration model" is, and this looks more like combinatorial graph theory than statistics. You also need to know whether multiple edges between nodes are allowed, whether loops are allowed, and how many nodes there are.

Let's suppose there are $v$ nodes and that multiple edges and loops are allowed. Start at a particular node $A$ and choose one of its edges. The probability of being a loop (i.e. $A$ belongs to a component of size $1$) is $\frac{1}{v}$. If not, suppose it attaches to some other node; then the probability of the second edge from the second node goes back to $A$ (i.e. $A$ belongs to a component of size $2$) is $\frac{v-1}{v}\times\frac{1}{v-1} = \frac{1}{v}$. And so on.

So the probability $A$ belongs to a component of size $n$ is $\frac{1}{v}$ (for $1 \le n \le v$).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.