What is a Bernoulli random variable?
A discrete random variable that takes value 1 with probability p and 0 with probability 1 − p, modeling a single success/failure trial.
What is a typical use case for a Bernoulli distribution?
Modeling outcomes of yes/no events such as click vs no click, success vs failure, or positive vs negative label.
What are the parameters of a Bernoulli distribution?
A single parameter p, the probability of success (X=1).
What are the mean and variance of a Bernoulli(p) random variable?
Mean is p and variance is p(1 − p).
What is a Binomial random variable?
A discrete random variable that counts the number of successes in n independent Bernoulli trials with success probability p.
What are the parameters of a Binomial distribution?
Two parameters: n (number of trials) and p (success probability per trial).
What are the mean and variance of a Binomial(n,p) random variable?
Mean is np and variance is np(1 − p).
What is a typical ML-related use case of the Binomial distribution?
Modeling counts of positive events in a fixed number of trials, such as number of clicks in n impressions.
What is a Geometric random variable?
A discrete random variable that represents the number of trials needed to get the first success in repeated Bernoulli trials.
What is the key property of the Geometric distribution?
The memoryless property: the probability of needing k more trials does not depend on how many failures occurred previously.
What is a common use of the Geometric distribution?
Modeling waiting times for the first occurrence of an event, such as first success or first failure.
What is a Poisson random variable?
A discrete random variable that counts the number of events occurring in a fixed interval when events happen independently at a constant average rate.
What is the parameter of a Poisson distribution?
A single parameter λ, the average rate or expected count over the interval.
What are the mean and variance of a Poisson(λ) random variable?
Both mean and variance are equal to λ.
What is a typical ML-related use case for Poisson distributions?
Modeling count data such as number of events, calls, or arrivals per time window.
How is the Poisson distribution related to the Binomial distribution?
When the number of trials n is large and p is small with np fixed, a Binomial(n,p) can be approximated by a Poisson with λ = np.
What is a discrete uniform distribution on a finite set?
A distribution where each of a finite set of k outcomes has equal probability 1/k.
What is a continuous uniform distribution on an interval [a,b]?
A distribution where the random variable is equally likely to take any value in [a,b], with constant density 1/(b − a).
What is the mean of a Uniform(a,b) continuous distribution?
The mean is (a + b)/2.
What is the variance of a Uniform(a,b) distribution?
The variance is (b − a)² / 12.
What is a Normal (Gaussian) random variable?
A continuous random variable whose distribution has the bell-shaped curve defined by a mean μ and variance σ².
What are the parameters of a Normal distribution?
Mean μ and variance σ² (or equivalently standard deviation σ).
What is the mean and variance of a Normal(μ,σ²) distribution?
Mean is μ and variance is σ² by definition.
Why is the Normal distribution important in ML and statistics?
Because many aggregated effects approximate a normal distribution (via CLT), and many models assume Gaussian noise or priors.