Example of Binomial Distribution

Problem Statement

Let's consider a coin toss experiment as an example of a binomial distribution.

Example Data

Suppose we flip a fair coin 10 times. Each flip has:

The number of heads in 10 flips follows a binomial distribution.


1. Probability Calculation

Q: What is the probability of getting exactly 6 heads in 10 flips?

Using the Binomial Probability Formula:

P(X = k) = C(n, k) * p^k * (1 - p)^(n - k)
    

Where:

First, compute the binomial coefficient:

C(10, 6) = 10! / (6!(10-6)!) = 210
    

Now, calculate the probability:

P(X = 6) = 210 * (0.5)^6 * (0.5)^4
         = 210 * (0.015625) * (0.0625)
         = 0.2051
    

So, the probability of getting exactly 6 heads in 10 flips is 20.51%.


2. Visual Representation

The binomial distribution for 10 flips of a fair coin would look like:

📊 Probability Mass Function (PMF) Representation

Binomial Distribution
Above is Binomial Distribution.

3. Real-World Applications in AI