Autonomous Vehicle/Theory

(prerequisite-Poisson distribution) Binomial Distribution

Naranjito 2024. 3. 15. 19:06
  • Binomial Distribution

 

It is the discrete probability distribution that gives only two possible results in an experiment, either Success or Failure. For example, if we toss a coin, there could be only two possible outcomes: heads or tails, and if any test is taken, then there could be only two results: pass or fail. 

 

Pr(K=k)=(nk)pk(1p)nk

- k=0,1,2,,n

(nk)=n!k!(nk)!=nCk

- p : Success Probability

- n : The number of events occurring within a given interval of time or space.

- (pk) : The success of the k times.

- ((1p)nk) : The probability of nk times failure.

Example.

 

k=0,1,2,,10 : The number of times to toss the coin.

p : The probability of a HEAD coming out when you toss a coin, assume 1/2.

k=0:10!0!10!(12)0(112)10=0.0010 k=1:10!1!9!(12)1(112)9=0.0098 k=2:10!2!8!(12)2(112)8=0.0439 k=10:10!10!0!(12)10(112)0=0.0010

Pr(K=k)=[0.0010,0.0098,0.0439,0.1172,0.2051,0.2461,0.2051,0.1172,0.0439,0.0098,0.0010]

 

https://angeloyeo.github.io/2021/04/23/binomial_distribution.html