ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Introduction to Statistics
    STAT2115
    Progress0 / 24 topics
    Topics
    1. Scope of Statistics2. Introduction to Basic Concepts of Statistics: Descriptive and Inferential Statistics3. Population, Sample, Parameter, and Statistic4. Types of Data and Scales of Measurement5. Frequency Distribution and Graphical Representation6. Bar Chart, Pie Chart, and Histogram7. Frequency Polygon, Frequency Curve, and Cumulative Frequency Polygon8. Measures of Central Tendency9. Quantiles10. Absolute and Relative Measures of Dispersion11. Moments, Skewness and Kurtosis12. Basic Concepts of Probability13. Counting Rules: Multiplication Principle, Permutation and Combination14. Probability Spaces and Laws of Probability15. Conditional Probability and Bayes' Theorem16. Discrete and Continuous Random Variables17. Probability Distributions: Binomial, Poisson, and Hypergeometric18. Probability Distributions: Uniform, Exponential, and Normal19. Overview of Sampling: Sample Design and Sampling Frame20. Sampling and Non-Sampling Errors21. Sampling Distributions for Mean and Proportion22. Sampling Distributions for Difference of Means and Difference of Proportions23. Overview of Hypothesis Testing24. Overview of Regression Analysis
    STAT2115›Probability Distributions: Binomial, Poisson, and Hypergeometric
    Introduction to StatisticsTopic 17 of 24

    Probability Distributions: Binomial, Poisson, and Hypergeometric

    7 minread
    1,218words
    Intermediatelevel

    1. Probability Distributions

    A probability distribution describes how probabilities are assigned to each possible value of a random variable.

    • For discrete random variables, it is often given by a Probability Mass Function (PMF).
    • For continuous random variables, it is described by a Probability Density Function (PDF).

    2. Binomial Distribution

    Definition: The Binomial distribution models the number of successes in n independent trials, each with the same probability of success (p).

    • Random variable: XXX = number of successes
    • Parameters: nnn = number of trials, ppp = probability of success

    PMF

    P(X=k)=(nk)pk(1−p)n−k,k=0,1,2,...,nP(X = k) = \binom{n}{k} p^k (1-p)^{n-k}, \quad k = 0,1,2,...,nP(X=k)=(kn​)pk(1−p)n−k,k=0,1,2,...,n

    Mean and Variance

    E(X)=np,Var(X)=np(1−p)E(X) = np, \quad Var(X) = np(1-p)E(X)=np,Var(X)=np(1−p)

    Example:

    • Toss a coin 5 times, count heads (p=0.5p = 0.5p=0.5, n=5n=5n=5)
    • P(X=3)=(53)(0.5)3(0.5)2=10⋅0.125⋅0.25=0.3125P(X=3) = \binom{5}{3}(0.5)^3(0.5)^2 = 10 \cdot 0.125 \cdot 0.25 = 0.3125P(X=3)=(35​)(0.5)3(0.5)2=10⋅0.125⋅0.25=0.3125

    3. Poisson Distribution

    Definition: The Poisson distribution models the number of events occurring in a fixed interval of time or space, given that events occur independently and at a constant rate λ\lambdaλ.

    • Random variable: XXX = number of occurrences
    • Parameter: λ\lambdaλ = expected number of occurrences

    PMF

    P(X=k)=e−λλkk!,k=0,1,2,...P(X = k) = \frac{e^{-\lambda} \lambda^k}{k!}, \quad k = 0,1,2,...P(X=k)=k!e−λλk​,k=0,1,2,...

    Mean and Variance

    E(X)=λ,Var(X)=λE(X) = \lambda, \quad Var(X) = \lambdaE(X)=λ,Var(X)=λ

    Example:

    • Cars passing through a toll booth in an hour, average 4 per hour (λ=4\lambda = 4λ=4)
    • Probability exactly 2 cars pass: P(X=2)=e−4422!=16e−42=8e−4≈0.1465P(X=2) = \frac{e^{-4} 4^2}{2!} = \frac{16 e^{-4}}{2} = 8 e^{-4} \approx 0.1465P(X=2)=2!e−442​=216e−4​=8e−4≈0.1465

    Note: Poisson is a limit of Binomial for large nnn and small ppp (np=λnp = \lambdanp=λ).


    4. Hypergeometric Distribution

    Definition: The Hypergeometric distribution models the number of successes in a sample drawn without replacement from a finite population.

    • Random variable: XXX = number of successes in the sample

    • Parameters:

      • NNN = population size
      • KKK = total successes in population
      • nnn = sample size

    PMF

    P(X=k)=(Kk)(N−Kn−k)(Nn),max⁡(0,n−(N−K))≤k≤min⁡(K,n)P(X = k) = \frac{\binom{K}{k} \binom{N-K}{n-k}}{\binom{N}{n}}, \quad \max(0,n-(N-K)) \le k \le \min(K,n)P(X=k)=(nN​)(kK​)(n−kN−K​)​,max(0,n−(N−K))≤k≤min(K,n)

    Mean and Variance

    E(X)=nKN,Var(X)=nKNN−KNN−nN−1E(X) = n \frac{K}{N}, \quad Var(X) = n \frac{K}{N} \frac{N-K}{N} \frac{N-n}{N-1}E(X)=nNK​,Var(X)=nNK​NN−K​N−1N−n​

    Example:

    • A box contains 10 red and 15 blue balls (N=25,K=10N=25, K=10N=25,K=10), draw 5 balls (n=5n=5n=5)
    • Probability exactly 2 are red: P(X=2)=(102)(153)(255)=45⋅45553130≈0.385P(X=2) = \frac{\binom{10}{2} \binom{15}{3}}{\binom{25}{5}} = \frac{45 \cdot 455}{53130} \approx 0.385P(X=2)=(525​)(210​)(315​)​=5313045⋅455​≈0.385

    Key: Unlike Binomial, Hypergeometric samples without replacement, so probabilities change after each draw.


    5. Summary Table

    Distribution Random Variable Parameters PMF Mean Variance Notes
    Binomial # of successes n, p (nk)pk(1−p)n−k\binom{n}{k} p^k (1-p)^{n-k}(kn​)pk(1−p)n−k npnpnp np(1−p)np(1-p)np(1−p) Independent trials, with replacement
    Poisson # of events in interval λ\lambdaλ e−λλkk!\frac{e^{-\lambda} \lambda^k}{k!}k!e−λλk​ λ\lambdaλ λ\lambdaλ Events rare, independent, constant rate
    Hypergeometric # of successes in sample N, K, n (Kk)(N−Kn−k)(Nn)\frac{\binom{K}{k} \binom{N-K}{n-k}}{\binom{N}{n}}(nN​)(kK​)(n−kN−K​)​ nK/NnK/NnK/N nK(N−K)(N−n)/N2(N−1)nK(N-K)(N-n)/N^2(N-1)nK(N−K)(N−n)/N2(N−1) Sampling without replacement

    Key Points to Remember

    1. Binomial → independent trials, fixed probability, with replacement.
    2. Poisson → models rare events, often approximates Binomial.
    3. Hypergeometric → no replacement, probabilities change after each draw.
    Previous topic 16
    Discrete and Continuous Random Variables
    Next topic 18
    Probability Distributions: Uniform, Exponential, and Normal

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time7 min
      Word count1,218
      Code examples0
      DifficultyIntermediate