Solved Binomial Distribution Questions

This post is about some solved Binomial distribution Questions. These solved binomial distribution questions make use of computation of (i) the exact probability case, (ii) at least case, (iii) at most case, and (iv) between cases.

Binomial-Probability-Distribution
Binomial distribution questions
  • The sum of all probabilities in the distribution sums up to 1
  • The probability of success in all $n$ trials is $p^n$
  • The probability of failure in all $n$ trials is $(1 – p)^n = q^n$
  • Probability of success in at least one trial = $P(X \ge 1) = 1 – P(X = 0) = 1 – q^n$.
  • Probability of at least $x$ successes = $P(X \ge x) = \sum\limits_{x} \binom{n}{x}p^xq^{n-x}\quad (x = x, x + 1,\cdots, n$)
  • Probability of at most $x$ successes = $P(X \le x) =\sum\limits_{x} \binom{n}{x}p^x q^{n-x}\quad (x=0,1,\cdots,x)$
  • If in $n$ trials, the experiment is repeated $N$ times, the expected frequencies are $N\cdot P(x)$ for $x = 0, 1, 2, 3, \cdots, n$.

Solved Binomial Distribution Questions

Question 1: A die is rolled 5 times and a 5 or 6 is considered a success. Find the probability of (i) no success, (ii) at least 2 successes, (iii) at least one but not more than 3 successes.

Solution:

The Sample Space is $S=\{1, 2, 3, 4, 5, 6\}$. Since the occurrence of 5 or 6 is considered a success, therefore, $p=\frac{2}{6}=\frac{1}{3} \Rightarrow q=1-p = 1-\frac{1}{3} = \frac{2}{3}$.

(i) No success

$n=5, p=\frac{1}{3}, q=\frac{2}{3}$, x=0$

\begin{align*}
P(X=x) &= \binom{n}{x}p^x q^{n-x}\\
P(X=0) &= \binom{5}{0} \left(\frac{1}{3}\right)^0\left(\frac{2}{3}\right)^5=0.1316
\end{align*}

(ii) At least 2 successes

\begin{align*}
P(X \ge 2) & = 1 – P(X<2)\\
&= 1 – [P(X=0) + P(X=1)]\\
&= 1- [0.13168 + 0.3292] = 0.5391
\end{align*}

(iii) At least one but not more than 3 successes

\begin{align*}
P(1 \le x \le 3) &= P(X=1) + P(X=2) + P(X=3)\\
&= 0.3292 + 0.3292 + 0.1646 = 0.823
\end{align*}

Question 2: Find the probability of getting (i) exactly 4 heads and (ii) not more than 4 heads when 6 coins are tossed.

Solution:

From the given information, $n = 6, x = 4, p = q = \frac{1}{2}$

(i) Exactly 4 heads

\begin{align*}
P(X=x) &= \binom{n}{x} p^x q^{n-x}\\
&= \binom{6}{4} \left(\frac{1}{2}\right)^4 \left(\frac{1}{2}\right)^{6-4} = 0.234
\end{align*}

(ii) Not more than 4 heads

\begin{align*}
P(X\le 4) & = 1 – p(X\ge 4)\\
&= 1 – P(X=4) + P(X=5) + P(X=6)
\end{align*}

Question 3: If 60% of the voters in a large district prefer candidate-A, what is the probability that in a sample of 12 voters, exactly 7 will prefer A?

Solution:

From given information in the questions, $p=06, q=0.4, n=12, x=7$

\begin{align*}
P(X=x)&= \binom{n}{x}p^x q^{n-x}\\
P(X=7) &= \binom{12}{7} (0.6)^7(0.4)^5&= 0.227
\end{align*}

Question 4: The probability that a patient recovers from a delicate heart operation is 0.9. What is the probability that exactly 5 of the next 7 patients having this operation survive?

Solution:

From the given information in the question, $n=7, x=5, p=0.9, q=0.10$

\begin{align*}
P(X=x)&= \binom{n}{x}p^x q^{n-x}\\
P(X=5) &= \binom{7}{5}(0.9)^5(0.1)^2 = 0.124
\end{align*}

Question 5: The incidence of occupational disease in an industry is such that the workmen have a 20% chance of suffering from it. What is the probability that out of 6 workmen (i) not more than 2, and (ii) 4 or more will catch the disease?

Solution:

From the given information in the questions

Probability of suffering from occupational disease = $\frac{20}{100}=\frac{1}{5}=0.20$

Probability of not suffering from occupational disease = $1 – \frac{1}{5} = \frac{4}{5}=0.80$

(i) Probability that out of 6 workers, not more than two will suffer

\begin{align*}
P(X\le 2) &= \binom{6}{0}\left(\frac{4}{5}\right)^0 \left(\frac{1}{5}\right)^6 + \binom{6}{1}\left(\frac{4}{5}\right)^1 \left(\frac{1}{5}\right)^5 + \binom{6}{2}\left(\frac{4}{5}\right)^2 \left(\frac{1}{5}\right)^4\\
&=0.01696
\end{align*}

(ii) Probability that out of 6 workers, 4 or more will suffer

\begin{align*}
P(X\ge 4) &= \binom{6}{4}\left(\frac{4}{5}\right)^4 \left(\frac{1}{5}\right)^2 + \binom{6}{5}\left(\frac{4}{5}\right)^5 \left(\frac{1}{5}\right)^1 + \binom{6}{6}\left(\frac{4}{5}\right)^6 \left(\frac{1}{5}\right)^0\\
&=0.90112
\end{align*}

Question 6: A multiple-choice has 15 questions, each with 4 possible answers of which only 1 is the correct answer. What is the probability that sheer guesswork yields from 5 to 10 correct answers?

Solution:

Probability of answering any question correctly: $p=\frac{1}{4}=0.25$

Probability of answering any question wrongly: $q=\frac{3}{4}=0.75$

\begin{align*}
P(5 \le x \le 10) &= P(X=5) + P(X=6) + \cdots + P(X=10)\\
&=\binom{15}{5}\left(\frac{1}{4}\right)^5\left(\frac{3}{4}\right)^{10}+\cdots + \binom{15}{10}\left(\frac{1}{4}\right)^5\left(\frac{3}{4}\right)^{5} \\
&= 0.31339
\end{align*}

Question 7: A commuter drivers to work each morning. The route she takes each day includes ten stoplights. Assume the probability each stoplight is red when she gets to it is 0.2 and that these stoplights (trials) are independent. What is the distribution of $X$, the number of times she must stop for a red light on her way to work? Evaluates $P(X=0) and $P(X<3).

Solution:

The distribution of $X$ is binomial because trials are independent. The probability of getting red spotlight (success) is 0.2 which remains the same, the number of trials is fixed ($n=10$).

The further information given in the Question is: $n=10, p=0.2, q=0.8$

\begin{align*}
P(X=0)&=\binom{10}{0} (0.2)^0(0.8)^{10} = 0.10737\\
P(X<3) &=\binom{10}{0} (0.2)^0(0.8)^{10} + \binom{10}{1} (0.2)^1(0.8)^{9} + \binom{10}{2} (0.2)^2(0.8)^{8} = 0.6777
\end{align*}

Application of Binomial Probability Distribution

  • Quality Control:
    • Assessing Product Reliability: Manufacturers use binomial distribution to estimate the probability of defective products in a batch, helping them maintain quality standards.
    • Predicting Failure Rates: By analyzing past data, companies predict the likelihood of equipment failure using a binomial probability distribution, aiding in preventive maintenance and reducing downtime.
  • Genetics:
    • Predicting Inheritance Patterns: In genetics, Binomial distribution helps to predict the probability of offspring inheriting specific traits based on parental genotypes.
    • Analyzing Genetic Mutations: Binomial distribution is used to study the frequency of genetic mutations in populations.
  • Medicine:
    • Clinical Trials: Binomial distribution is essential for designing and analyzing clinical trials, assessing the effectiveness of treatments, and determining the probability of side effects.
    • Epidemiology: Binomial distribution helps to model the spread of infectious diseases and predict outbreak risks.
  • Finance:
    • Risk Assessment: Financial institutions use Binomial Probability Distribution to assess the risk of loan defaults or investment failures.
    • Option Pricing: Binomial probability distribution is a key component of option pricing models, helping to determine the fair value of options contracts.
  • Social Sciences:
    • Survey Analysis: Binomial distribution is used to analyze survey data, such as predicting voter behavior or public opinion on specific issues.
    • Market Research: Binomial Probability Distribution helps businesses to understand consumer preferences and predict market trends.

Computer MCQs Online Test

Learn R Language

Data Analytics Quiz 1

The post is about MCQs Data Analytics Quiz. There are 20 multiple-choice questions for preparation for various subjects related to BS Data Analytics Degree Programs. Let us start with the Data Analytics Quiz.

Online MCQs Data Analytics Quiz with Answers

1. A data professional practices active listening when they allow others to —————- before offering a response.

 
 
 
 

2. Data engineers are responsible for making data —————.

 
 
 
 

3. Which of the following are data engineer responsibilities?

 
 
 
 

4. Data Analytics uses ————- to get insights from data.

 
 
 
 

5. What type of data professional is responsible for organizing information and making it accessible?

 
 
 
 

6. As a data analyst, you work with data about the life expectancy of sea turtles in the Coral Triangle. The dataset contains an estimated birthdate and death date for all tracked sea turtles. With the data you have, what questions are you able to answer?

 
 
 
 

7. In a situation where a data analyst wants to test whether the population mean is lower than some hypothesized value, the data analyst would employ.

 
 
 
 

8. What type of variables would a data professional use to classify types of homes, such as apartments, single-family, or townhouses?

 
 
 
 

9. A data professional minimizes the sum of squared residuals to estimate parameters in a linear regression model. What method are they using?

 
 
 
 

10. Which model might a data professional consider first if the outcome variable is binary?

 
 
 
 

11. In order to have a strong and thorough analysis, a data analyst must verify ————-.

 
 
 
 

12. Insights or ————— team managers supervise an organization’s analytical strategy.

 
 
 
 

13. What does a data professional do when cleaning data?

 
 
 
 

14. How would a data professional practice active listening?

 
 
 
 

15. What is the primary goal of active listening?

 
 
 
 

16. Amongst which of the following is/are not a major data analysis approach?

 
 
 
 

17. A data professional testing for linear regression assumptions plots their dependent variable against their independent variable and notices that the graph appears as an upward curve. Which model assumption does this invalidate?

 
 
 
 

18. Which of the following processes helps ensure a close alignment of data and business objectives?

 
 
 
 

19. A data professional is working on a project that involves labeling thousands of books by their various book genres. What type of variable should they use when working with this dataset?

 
 
 
 

20. A data professional uses a scatterplot to plot residuals and predicted values from a regression model to check for homoscedasticity and finds that this assumption is met. What shape do the points in the scatterplot appear as?

 
 
 
 

Online Data Analytics Quiz with Answers

  • As a data analyst, you work with data about the life expectancy of sea turtles in the Coral Triangle. The dataset contains an estimated birthdate and death date for all tracked sea turtles. With the data you have, what questions are you able to answer?
  • Which of the following processes helps ensure a close alignment of data and business objectives?
  • Data engineers are responsible for making data —————.
  • Insights or ————— team managers supervise an organization’s analytical strategy.
  • What type of data professional is responsible for organizing information and making it accessible?
  • In order to have a strong and thorough analysis, a data analyst must verify ————-.
  • How would a data professional practice active listening?
  • Which of the following are data engineer responsibilities?
  • A data professional practices active listening when they allow others to —————- before offering a response.
  • What does a data professional do when cleaning data?
  • What is the primary goal of active listening?
  • A data professional uses a scatterplot to plot residuals and predicted values from a regression model to check for homoscedasticity and finds that this assumption is met. What shape do the points in the scatterplot appear as?
  • A data professional minimizes the sum of squared residuals to estimate parameters in a linear regression model. What method are they using?
  • A data professional testing for linear regression assumptions plots their dependent variable against their independent variable and notices that the graph appears as an upward curve. Which model assumption does this invalidate?
  • Which model might a data professional consider first if the outcome variable is binary?
  • What type of variables would a data professional use to classify types of homes, such as apartments, single-family, or townhouses?
  • A data professional is working on a project that involves labeling thousands of books by their various book genres. What type of variable should they use when working with this dataset?
  • In a situation where a data analyst wants to test whether the population mean is lower than some hypothesized value, the data analyst would employ.
  • Data Analytics uses ————- to get insights from data.
  • Amongst which of the following is/are not a major data analysis approach?
Data Analytics Quiz with Answers

Basic Computer MCQs

R Programming Language

Data Analytics Quizzes 2025

The post is about the Data Analytics Quizzes list. Each data Analytics Quiz is of multiple-choice type questions. To start with a quiz click on the links below.

Online Data Analytics Quizzes

Quiz Data Analytics 5
Data Analytics MCQs Questions 4Data Analytics Quiz 3
Data Analytics Quiz 2Data Analytics Quiz 1
Data Analytics Quizzes

Data Analytics Definition

Data analytics is the process of collecting, analyzing, and interpreting data to find patterns, trends, and relationships between them. It is a multidisciplinary field that uses tools and techniques from mathematics, statistics, and computer science.

Data analytics can include

  • Data analysis: Working with data to glean useful information
  • Data science: High-level analysis
  • Data engineering: Creating the frameworks needed to store data
  • Data mining: Extracting usable data from a large dataset
  • Data modeling: Diagramming data flows
  • Data visualization: Presenting data in a clear picture using visuals like bar graphs, pie charts, and tables

Note that Data analytics can help:

  • Improve decision-making
  • Gain a deeper understanding of their processes and services
  • Identify new opportunities
  • Build related digital products
  • Create personalized customer experiences
  • Harness cost savings
  • Optimize operations
  • Increase employee productivity

R Language Frequently Asked Questions