B Probability of n events over a time period

AI Thread Summary
To calculate the probability of n drops from a leaking tap over a minute, one can use a binomial distribution model with a probability of success (drop) of 0.01 for each second. The probability of no drops in a minute is calculated as 0.99^60, while the probability of one or more drops is 1 - 0.99^60. For exactly n drops, the formula involves binomial coefficients: P(n) = C(N, n) * p^n * (1-p)^(N-n), where N is the total number of trials (60 seconds). Although a Poisson distribution could also be considered, the binomial model is more appropriate for this scenario. Understanding these calculations can help in accurately predicting the behavior of the dripping tap.
MrOd67
Messages
2
Reaction score
0
TL;DR Summary
How do you calculate the probability of n number of events over a time period given a constant probability p of the event occuring independently at any given time?
Let's say you have a leaking tab, and the probability of a droplet in any given second is 1%, regardless of whether there was a drop previously.

How would you calculate the probability of n drops in a minute?

No drops in a second is 0.99, so no drops over a minute is 0.99^60. Hence one or more drops is 1-0.99^60. But how about exactly n drops?
 
Physics news on Phys.org
The way you are modelling it you have a binomial distribution with effectively a trial every second and a independent probability of ##p= 0.01## of success in each and every trial.

https://en.wikipedia.org/wiki/Binomial_distribution

The probability of exactly ##n## drops involves binomial coefficients: $$P(n) = \binom{N}{n}p^n(1-p)^{N-n}$$ where ##N = 60## is the total number of trials.

You could model this sort of thing using a Poisson distribution:

https://en.wikipedia.org/wiki/Poisson_distribution

Although, for a dripping tap, maybe neither of these is quite right.
 
PeroK said:
The way you are modelling it you have a binomial distribution with effectively a trial every second and a independent probability of ##p= 0.01## of success in each and every trial.

https://en.wikipedia.org/wiki/Binomial_distribution

The probability of exactly ##n## drops involves binomial coefficients: $$P(n) = \binom{N}{n}p^n(1-p)^{N-n}$$ where ##N = 60## is the total number of trials.

You could model this sort of thing using a Poisson distribution:

https://en.wikipedia.org/wiki/Poisson_distribution

Although, for a dripping tap, maybe neither of these is quite right.
Perfect, that's exactly what I was looking for. Thank you very much!
 
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...

Similar threads

Back
Top