If you have a square grid, and each square* has probability $n$ of being ground. If the other squares are water, what is the average area of an island? If $n$ is small then the average island would have an area of about $1$. With large values of $n$, the average size of islands is really big. Also diagonally touching squares don’t count as being the same island. Unless of course they connect somewhere else. *Each with an area of $1$.
2026-03-24 20:32:10.1774384330
What is the average size of an island?
2.9k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in PROBABILITY
- How to prove $\lim_{n \rightarrow\infty} e^{-n}\sum_{k=0}^{n}\frac{n^k}{k!} = \frac{1}{2}$?
- Is this a commonly known paradox?
- What's $P(A_1\cap A_2\cap A_3\cap A_4) $?
- Prove or disprove the following inequality
- Another application of the Central Limit Theorem
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- A random point $(a,b)$ is uniformly distributed in a unit square $K=[(u,v):0<u<1,0<v<1]$
- proving Kochen-Stone lemma...
- Solution Check. (Probability)
- Interpreting stationary distribution $P_{\infty}(X,V)$ of a random process
Related Questions in PERCOLATION
- Does a relation exist between the 2d random walk and edge percolation on a 2d lattice
- Estimating the critical probabilities $\mathrm{P_{c1}}$ and $\mathrm{P_{c2}}$ mathematically for the infinite system case
- Is this correct: Inflection points of Euler number graph in Island-Mainland transition correspond to spanning cluster site percolation threshold?
- On bernoulli percolation, increasing events and Russo's formula
- Good reference on solving the Smoluchowski coagulation equation with generating functions
- How to rigorously prove this very simple fact about percolation?
- How to make the description of my probabilistic binary lattice model more precise and succinct?
- Examples of graphs that are amenable and non-amenable
- Phase transition threshold for acyclic directed graph
- $a_{n+m+2} \leq a_m+a_n+g(n)$ with $g(n) = o(n)$. Show that $a_n \geq (n+2)\lambda-g(n)$ where $\lambda = \lim \frac{a_n}{n}$
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I did an experiment with some Java code.
Here are the results:
$$ \begin{array}{l|l} \text{Probability} & \text{Average Island Size} \\ 0.050000 & 1.108420 \\ 0.075000 & 1.171769 \\ 0.100000 & 1.239889 \\ 0.125000 & 1.322296 \\ 0.150000 & 1.409073 \\ 0.175000 & 1.509786 \\ 0.200000 & 1.627313 \\ 0.225000 & 1.756252 \\ 0.250000 & 1.904399 \\ 0.275000 & 2.080445 \\ 0.300000 & 2.295080 \\ 0.325000 & 2.528017 \\ 0.350000 & 2.823988 \\ 0.375000 & 3.180992 \\ 0.400000 & 3.618721 \\ 0.425000 & 4.142728 \\ 0.450000 & 4.827669 \\ 0.475000 & 5.725215 \\ 0.500000 & 6.911376 \\ 0.525000 & 8.596760 \\ 0.550000 & 10.841804 \\ 0.575000 & 14.148635 \\ 0.600000 & 18.840807 \\ 0.625000 & 26.346250 \\ 0.650000 & 35.965670 \\ 0.675000 & 50.930806 \\ 0.700000 & 73.566788 \\ 0.725000 & 106.523051 \\ 0.750000 & 161.343357 \\ 0.775000 & 242.921195 \\ 0.800000 & 383.797845 \\ 0.825000 & 613.803805 \\ 0.850000 & 1026.555037 \\ 0.875000 & 1425.019748 \\ 0.900000 & 1789.621500 \\ 0.925000 & 2132.510333 \\ 0.950000 & 2316.020000 \\ 0.975000 & 2427.573000 \\ 1.000000 & 2500.000000 \end{array} $$
It seems that the average size of the island starts to grow rapidly for $p\gt0.65$.
And here is the code if you want to check it for correctness:
I'm currently running the same simulation for the sea of size $100\times100$. It will take much, much more time but I still expect to get the curve of the same shape.