Poisson Process. Let be a non-negative valued function, called the intensity function of a spatial Poisson process. Then:
the number of events, , in any planar region follows a Poisson distribution with mean
given , the locations of the events in form an independent random sample from the distribution on with pdf proportional to
If , for all , the process is a homogeneous Poisson process, sometimes referred to as complete spatial randomness. Otherwise the process is inhomogeneous. Informally, complete spatial randomness means that the (expected) density of points is constant across any region, and there is no interaction between the points. See Figure 2.1.
Let be a homogeneous Poisson process.
for any two disjoint planar regions and , the random variables and are independent
, for all
distribution function of the distance from an arbitrary point to the nearest event is
There are various approaches to simulating a realisation of a Poisson process. We outline one for a Poisson process with intensity function , which we wish to simulate on a region .
Recall from Definition 2.4:
The number of points in has a Poisson distribution with mean .
The location of each point is iid from the density proportional to .
Therefore we (i) simulate the number of points; then (ii) simulate the position of each point. This is straightforward for homogeneous processes, for which .
For inhomogeneous processes, if the simulation in (ii) is not straightforward then we can resort to rejection sampling (assuming for some and all ). This proceeds by simulating points uniformly on , and accepting each with probability . We repeat this until we have simulated the correct number of points (the number simulated in part (i)).
Examples are given in the lab sessions.
An early, simple, but now rarely-used method used to test complete spatial randomness (CSR) was based on quadrats. This method relies on the fact that, under CSR, the expected number of observations within any region of equal size is the same.
In Figure 2.2, there are observed points, and regions of equal size, so the expected number in each region is . Let be the number of points in region .
It can be shown that under CSR, the quantity
has a distribution. The chi-squared distribution with degrees of freedom () is a special case of the gamma distribution, specifically a distribution. It has mean and variance .
The observed counts for the point process in Figure 2.2 are
11 | 5 | 16 |
---|---|---|
8 | 12 | 7 |
13 | 4 | 14 |
This gives rise to the test statistic . The critical point of the distribution (at the 5% level of significance) is 15.5, so there is no strong evidence against CSR (the -value is 0.08). Indeed, the points in the figure were generated from a homogeneous Poisson process. The test described here is an example of a chi-squared goodness-of-fit test.