Is It Binomial or Poisson Distribution for Element Damages in Large Systems?

Click For Summary
SUMMARY

The discussion centers on determining the appropriate statistical distribution for modeling damage occurrences in a large system with approximately 10^12 elements. The user derives a probability expression for a specific element acquiring k damages over t iterations, using the binomial coefficient K(t,k) and the probability of damage as 1/N. The conclusion drawn is that while the derived expression is correct, the observed behavior of the model aligns more closely with a Poisson distribution, which serves as a valid approximation for the binomial distribution under conditions of large N and fixed Np.

PREREQUISITES
  • Understanding of binomial distribution and its properties
  • Familiarity with Poisson distribution and its applications
  • Knowledge of probability theory, specifically binomial coefficients
  • Basic simulation techniques for modeling random processes
NEXT STEPS
  • Study the relationship between binomial and Poisson distributions in detail
  • Explore the concept of large number approximations in probability theory
  • Learn about statistical simulations using tools like Python's NumPy or R
  • Investigate real-world applications of Poisson processes in systems engineering
USEFUL FOR

Statisticians, data scientists, systems engineers, and anyone interested in modeling random events in large systems will benefit from this discussion.

zezima1
Messages
119
Reaction score
0
I might need you guys to help me see how this proces, will be distributed:

Suppose we have a large amount of elements N(≈1012). I'm simulating a system where I for each iteration damage a random element. If an element gets damaged its damagecounter goes up 1.
So say I pick element number 100123 on the first iteration. Its damagecounter will now count +1 whilst the damagecounters of the other elements in the system will be 0.

I want to write an expression for the probability that a specific element acquires k damages in t iterations. Here are my steps in deriving an expression:

1) The probability for a specific element to get damaged must be 1/N.

2) Thus the probability that a specific element gets k damages after t iterations must be:

p(x=k) = K(t,k) * (1/N)k * (1-1/N)t-k

where K(t,k) denotes the binomial coefficient.

Now, I want to find the total probability for an element to have acquired k damages during our t iterations. Thus I multiply by N and end up with:

p(x=k) = N * K(t,k) * (1/N)k * (1-1/N)t-k

Now first of all, I want to know: Would this expression be correct or am I making any mistakes/illegal assumptions in the derivation?

Second, my model appears to follow a poisson distribution, when I plot the amount of elements with damage 1->10 versus time. Does that fit with this theory? I can't quite see if that is a good thing or not?
 
Last edited:
Physics news on Phys.org
I won't comment on your derivation.

However, in general, Poisson distribution is a good approximation for the binomial for large N and Np fixed.
 

Similar threads

Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
8
Views
3K
  • · Replies 14 ·
Replies
14
Views
6K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 0 ·
Replies
0
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K