Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124

Probability isn’t just about “chance”; it’s about patterns in outcomes.
To study these patterns, we use probability distributions — mathematical functions that describe how likely each outcome is.
Two of the simplest and most important distributions are the Bernoulli and Binomial distributions.
A Bernoulli trial is a single experiment with exactly two possible outcomes:
If the probability of success is \( p \), then:
\[ P(X = 1) = p, \quad P(X = 0) = 1 – p \]

Example: Tossing a fair coin:
\[ P(\text{Head}) = 0.5, \quad P(\text{Tail}) = 0.5 \]
Mean (Expected Value):
\[ \mu = p \]
Variance:
\[ \sigma^2 = p(1-p) \]
The Binomial distribution models the number of successes in \( n \) independent Bernoulli trials.
If \( X \) is the number of successes, then:
\[ P(X = k) = \frac{n!}{k!(n-k)!} \, p^k (1-p)^{n-k} \]
where:
. \( n \) = number of trials
. \( k \) = number of successes
– \( p \) = probability of success in each trial
Example:
If you toss a fair coin 5 times, the probability of getting exactly 3 heads is:
\[ P(X = 3) = \frac{5!}{3!(5-3)!} (0.5)^3 (0.5)^2 = 10 \times 0.125 \times 0.25 = 0.3125 \]
Mean:
\[ \mu = np \]
Variance:
\[ \sigma^2 = np(1-p) \]

Q1. A coin has a probability \( p = 0.7 \) of landing heads. What is the mean and variance of one toss (Bernoulli)?
Q2. A die is rolled 6 times. What is the probability of getting exactly two “4”s?
Answers:
A1:
Mean: \( \mu = 0.7 \)
Variance: \( \sigma^2 = 0.7(0.3) = 0.21 \)
A2:
Here \( n = 6, k = 2, p = \frac{1}{6} \):
\[ P(X = 2) = \frac{6!}{2!(6-2)!} \left(\frac{1}{6}\right)^2 \left(\frac{5}{6}\right)^4 \]