假设我们使用一组无向边E连接的点,使得(i ,j )连接到(i + 1 ,j + 1 )或(i + 1 ,j )连接到(i ,j + 1 ),对所有i ,j随机独立和均匀地分布。
(灵感来自本书的标题和封面。)
该图具有无限大的连通分量的概率是多少?类似地,考虑,即图的平面嵌入的补码。补码具有无限个连通分量的概率是多少?
显然,如果所有对角线都指向相同的方向,则图及其补码都将具有无限分量。上面的均匀随机图怎么样?
假设我们使用一组无向边E连接的点,使得(i ,j )连接到(i + 1 ,j + 1 )或(i + 1 ,j )连接到(i ,j + 1 ),对所有i ,j随机独立和均匀地分布。
(灵感来自本书的标题和封面。)
该图具有无限大的连通分量的概率是多少?类似地,考虑,即图的平面嵌入的补码。补码具有无限个连通分量的概率是多少?
显然,如果所有对角线都指向相同的方向,则图及其补码都将具有无限分量。上面的均匀随机图怎么样?
Answers:
概率为0。
这遵循以下定理(请参见Grimmett的“图论概率”中的定理5.33,http://www.statslab.cam.ac.uk/~grg/books/USpgs-rev3.pdf):
Theorem Consider bond percolation on , where each edge between lattice points is open with probability . The probability that the origin is in an infinite connected component is 0.
我们可以从问题简化为这个问题:基本上,它只是上键渗滤的2个不相交(但从属)的副本。考虑配置D 1,其中边缘形成包含原点的钻石的无限晶格。如果翻转所有边缘,则会得到另一个无限的菱形晶格D 2。考虑实际配置与D 1和D 2的交集。每个这些正是上键渗流模型Ž 2,只是旋转45 ∘。因此,任意点在无穷簇中的概率为0(D 1中没有边)可以连接到的边缘。)
总而言之,请注意,概率为0的可数事件的总和的概率为0;否则,概率为0。任何晶格点在无限簇中的概率之和。
(任意大的组件的存在都是一个红色的鲱鱼。应该固定一个点,并询问它是否在无界的组件中。)
Hmm, well, here's one first attempt. Let's observe two important things:
So, is it zero or one? It's not immediately clear, though we can make a guess, since by the "infinite monkeys with typewriters" theorem, this graph contain simple paths of arbitrarily large length with probability one. Of course, more is needed to rigorously prove that it actually has an infinite path with probability one.
Here's some weak empirical evidence that the answer is yes. Let be a random graph on the lattice defined by picking each diagonal randomly. Here's a plot of reachability probability estimates vs. (ignoring the vertices which are always unreachable due to parity).
If we rescale the square to , the probability appears to converge to a smooth function independent of scale, which would mean even more: that the probability of the origin reaching infinity is positive.
However, it's also possible that I haven't computed far enough out to see the downwards trend (the plot does seem a little smaller than the others).
Code here: https://gist.github.com/girving/16a0ffa1f0abb08934c2
Update: As pointed out in the comments, the lemma does not imply infinite paths after all, so this answer overall is wrong. Not sure if it can be used in another probabilistic way.
The answer is yes: an infinite path exists. Indeed, an infinite path exists for every such graph; probability is not required.
Lemma: Let be any diagonal graph on the lattice, with . Then there is either a path from left to the right through even parity vertices or a path from the top to the bottom through odd parity vertices.
Proof sketch: This is essentially the determinacy theorem in Hex on a different graph. The even and odd parity halves of are locally dual, so an obstruction in one parity is a connection in the other. However, I will omit the details since they're hard to write down without pictures and/or case analysis.
If the lemma is true, the infinite version follows from König as noted by Joe. (Update: Wrong, see comments)