I have what I believe is a fairly simple stats problem on my hands that I can't properly wrap my head around:
Given a set of data, state the type of distribution that applies to this data, and perform a goodness-of-fit test.
Data (from a sample of 100 monitors):
Code:
Number of Bad Pixels| 0 1 2 3 4 5 6 7
Number of Screens| 46 37 10 3 1 1 1 1
Now, I'm pretty sure this should follow a geometric distribution., with expected values of 50, 25, 12.5 etc, for 0, 1, 2, etc., respectively. However, I'm having trouble wrapping my head around how to express this mathematically, since most similar problems I've done involve coin tosses, and the "Number of Bad Pixels" in that case are number of coin tosses, and "Number of Screens" is instead number of heads (or tails), with the number of coin tosses data starting at 1, instead of 0.
The coin, of course, follows an expected value function of [(1-p)^(k-1)]*np, where p is the probability (0.5), k is the number of "successes", and n is the total number of trials. A similar setup doesn't work with the screen/pixel problem, since I can't really use k=0, and I'm not sure I can work with the presumption that the chances of a pixel being stuck/dead is 50/50.
I can proceed with the goodness of fit test simply using my own assumption, but since I can't exactly put a proper function to the situation, I don't feel 100% confident about it.