By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Common distributions are fundamental concepts in business analytics that help us model and analyze real-world data. They enable us to make informed decisions by understanding the underlying patterns and relationships in the data. For instance, a company might use the Poisson distribution to model the number of customer complaints per day, allowing them to anticipate and respond to potential issues.
scipy.stats
pandas
stats
dplyr
WEIBULL.DIST
NORM.DIST
Problem: Compute the probability of at least 5 customer complaints in a day, given a Poisson distribution with λ = 3.
Answer: P(X ≥ 5) = 1 - P(X < 5) = 1 - (e^(-3) * (3^0 + 3^1 + 3^2 + 3^3 + 3^4)) / 5! ≈ 0.17
Explanation: Use the Poisson distribution formula to compute the probability of at least 5 customer complaints.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.