An LCD display can be modeled as a rectangular region in which faulty pixels occur independently at random. This example models faulty pixels with a spatial Poisson point process, computes the proportion of 1920×1080 displays that are accepted when at most 15 pixels are faulty, and then determines the largest pixel failure rate that still gives at least a 90% acceptance rate for a 4000×2000 display.
Define the faulty-pixel process and the display region:
In[1]:=
faultProcess=PoissonPointProcess[5
-6
10
,2];
In[2]:=
display=Rectangle[{0,0},{1920,1080}];
Generate sample faulty-pixel configurations to visualize possible defect patterns on the display: