Understanding Probability Distributions: Normal, Binomial, Poisson, and Bernoulli
In data science and statistics, probability distributions help us describe how data behaves . Different types of data follow different patterns, and that's where distributions come in. In this post, we’ll look at four key distributions: Normal Distribution Binomial Distribution Poisson Distribution Bernoulli Distribution Let’s explore what they mean, when to use them, and see a few examples. 1. Bernoulli Distribution What is it? The Bernoulli distribution models a single trial with only two possible outcomes: success (1) or failure (0) . P ( X = x ) = { p if x = 1 1 − p if x = 0 P(X = x) = \begin{cases} p & \text{if } x = 1 \\ 1 - p & \text{if } x = 0 \end{cases} Where: p p is the probability of success 1 − p 1 - p is the probability of failure Example: Tossing a coin (Head = 1, Tail = 0) A customer buys (1) or doesn’t buy (0) a product When to Use: When you're modeling a single yes/no event . 2. Binomial Distribution What is...