The Binomial distribution answers: "In $n$ independent trials (each with probability $p$ of success), what is the probability of exactly $x$ successes?" Requirements: fixed number of trials, only two outcomes per trial (success/failure), same $p$ each time, and trials are independent. The Poisson distribution models how many times an event occurs in a fixed interval when the average rate is $\lambda$. Use it when events happen randomly over time or space (calls per hour, defects per meter of pipe, accidents per month). Mean and variance of Binomial: $\mu = np$, $\sigma^2 = np(1-p)$. For Poisson: $\mu = \sigma^2 = \lambda$.
Final answer: P(exactly 1) = 0.3826; P(at most 1) = 0.8131.
🧭 Jump to:
Scroll to zoom
Exam Generator Problems
Additional board-style practice items for this topic.
Question Bank: q662
MSTE - Statistics and Probability / Probability / Engr. Janclyde Espinosa (Clidez)
A contractor estimated that one of his two bricklayers would take 9 hours to build a certain wall and the other 10 hours. However, from experience he knew that if they worked together 10 fewer bricks get laid per hour. Since he was in a hurry, he put both men on the job and found it took exactly 5 hours to build the wall.
How many bricks did it contain?
900
800
1000
1100
Let the wall contain $N$ bricks. Individual rates are $N/9$ and $N/10$ bricks/hr. Together they lay 10 fewer bricks per hour than the sum of rates, and finish in 5 hr: $5\left(\frac{N}{9}+\frac{N}{10}-10\right)=N$ $5\left(\frac{19N}{90}-10\right)=N$ $\frac{19N}{18}-50=N$ $\boxed{N=900}$
Question Bank: t18
MSTE - Statistics and Probability / Probability / Civil Engineering Refresher
A manufacturer finds that 1 out of 2000 chips is defective. How many chips must be ordered so the probability of at least one defect is 45%?
MSTE - Statistics and Probability / Probability / Civil Engineering Refresher
The probability that both stages of a missile function correctly is 0.95. If the first stage has a 0.98 probability of success, find the probability the second functions correctly given the first did.
MSTE - Statistics and Probability / Probability / Besavilla CE Pre-Board Math & Surveying
The probability of a component failing in one year due to excessive temperature is 0.05, due to excessive vibration is 0.04 and due to excessive humidity is 0.02. Determine the probability that during one year period, a component fails due to excessive temperature and excessive vibration.
0.045
0.085
0.002
0.012
0.112
Assuming the two causes are independent, multiply the probabilities for excessive temperature and excessive vibration. $P(T\cap V)=P(T)P(V)$ $P(T\cap V)=(0.05)(0.04)$ $\boxed{P(T\cap V)=0.002}$
Question Bank: w19
MSTE - Statistics and Probability / Probability / MSTE May 2019
Samsung, a computer chip manufacturer, has found that only 1 out of 2000 chips is defective. A certain company ordered a shipment of chips. How many chips will the company order before the probability that at least one chip is defective is 45%?
1246
1428
1086
1194
$P(\text{at least one defective}) = 1 - q^n$, where $q = \frac{1999}{2000}$. $0.45 = 1 - \left(\frac{1999}{2000}\right)^{n}$ $n = \frac{\ln 0.55}{\ln(1999/2000)} \approx 1{,}195$ $\boxed{n \approx 1194\text{ chips}}$
Question Bank: w80
MSTE - Statistics and Probability / Probability / MSTE November 2019
A box contains 5 defective and 195 non-defective cell phones. A quality control engineer selects 2 cell phones at random without replacement. What is the probability that exactly 1 is defective?
0.049
0.043
0.038
0.027
Exactly one defective occurs as (defective then good) or (good then defective): $P = \dfrac{5}{200}\cdot\dfrac{195}{199} + \dfrac{195}{200}\cdot\dfrac{5}{199} = 0.049$ $\boxed{P = 0.049}$
Question Bank: w81
MSTE - Statistics and Probability / Probability / MSTE November 2019
Smith and Jones, both 50% marksmen, decide to fight a duel in which they exchange alternate shots until one is hit. What are the odds in favor of the man who shoots first?
2/3
1/4
1/3
1/2
Let the first shooter win on his 1st, 2nd, 3rd, … shot. Each shot hits with probability $\tfrac{1}{2}$, and reaching a later shot requires both having missed (probability $\tfrac{1}{4}$ per round): $P = \tfrac{1}{2} + \tfrac{1}{2}\!\left(\tfrac{1}{4}\right) + \tfrac{1}{2}\!\left(\tfrac{1}{4}\right)^2 + \cdots$ Infinite geometric series with $a_1 = \tfrac{1}{2}$, $r = \tfrac{1}{4}$: $P = \dfrac{a_1}{1 - r} = \dfrac{1/2}{1 - 1/4} = \dfrac{2}{3}$ $\boxed{\tfrac{2}{3}}$