Skip to main content

Objectivesupon Completion Of This Assignment You Will Be Abl

Page 1


Objectivesupon Completion Of This Assignment You Will Be Able To1 C

Objectives: Upon completion of this assignment you will be able to: 1. Calculate probabilities for various distributions. Rational: Much of control chart and acceptance sampling theory is based on probability.

Fundamentals of Probability, Chapter 8 [25 points]

1. [5 points] A finite lot of 40 digital watches includes 30% nonconforming units. Using the hypergeometric distribution, what is the probability that a sample of 6 will contain 3 nonconforming watches? Show your work.

2. [5 points] Find the probability, using the binomial distribution, of obtaining 4 or more nonconforming units when sampling 30 computers from a batch known to be 10% nonconforming. Show your work.

3. [5 points] An injection molding machine produces golf tees that are 20.0% nonconforming. Using the normal distribution as an approximation to the binomial, find the probability that, in a random sample of 360 golf tees, 65 or less are nonconforming. Show your work.

4. [5 points] A sample of 10 printed labels is selected from a process that is 15% nonconforming. What is the probability of 2 nonconforming labels in the sample? Use the Poisson distribution. Show your work.

5. [5 points] Using Excel, construct one graph showing the entire distribution from 0 to 10 for: a. Hypergeometric, where n = 10, N = 50, D = 15; b. Binomial, where n = 50 and p = 0.06; c. Poisson, where np = 4.

1. A regional director responsible for business development in the state of Pennsylvania is concerned about the number of small business failures. If the mean number of small business failures per month is 10, what is the probability that exactly four small businesses will fail during a given month? Assume that the probability of a failure is the same for any two months and that the occurrence or non-occurrence of a failure in any month is independent of failures in any other month.

Paper For Above instruction

The present assignment focuses on understanding and calculating probabilities associated with different probability distributions, including hypergeometric, binomial, normal approximation, and Poisson distributions. These are fundamental tools in statistical quality control, process analysis, and reliability engineering, providing insights into variability and risk assessment in manufacturing and business processes.

Introduction

Probability distributions underpin many statistical methods used in quality assurance and operational management. Accurate probability calculations enable professionals to make informed decisions about process control, acceptance sampling, and risk mitigation. This paper addresses five problems involving various probability distributions relevant to industrial quality control scenarios. Each problem emphasizes understanding the appropriate distribution, performing calculations, and interpreting results to assess process performance or risks effectively.

Problem 1: Hypergeometric Distribution in Quality Control

The first problem involves a finite lot of 40 digital watches with 30% nonconforming units, indicating that 12 units are defective. The hypergeometric distribution correctly models this scenario because the sampling is without replacement, and the population is finite.

The probability that exactly 3 nonconforming watches are in a sample of 6 is given by:

P(X=3) = [C(12, 3) * C(28, 3)] / C(40, 6)

Where C(n, k) is the combination function, calculated as n! / (k!(n - k)!).

Calculating each component:

C(12, 3) = 220

C(28, 3) = 3276

C(40, 6) = 3,838,380

Thus, the probability:

P(X=3) = (220 * 3276) / 3,838,380 ≈ 720,720 / 3,838,380 ≈ 0.1877

Interpretation: There is approximately a 18.77% chance that a randomly selected sample of 6 watches contains exactly 3 defective units.

Problem 2: Binomial Distribution for Nonconforming Computers

In the second problem, a batch of computers has a known nonconforming rate of 10%. Sampling 30 units, the binomial distribution models the number of defective computers, since each draw is independent with the same probability.

The probability of 4 or more nonconforming units is:

P(X ≥ 4) = 1 - P(X ≤ 3) = 1 - [P(0) + P(1) + P(2) + P(3)]

The binomial probability mass function is:

P(k) = C(n, k) * p^k * (1 - p)^{n - k}

Where p = 0.10, n = 30.

Calculations for P(0), P(1), P(2), P(3):

P(0) = C(30,0)*0.1^0*0.9^{30} ≈ 0.0424

P(1) = C(30,1)*0.1^1*0.9^{29} ≈ 0.1413

P(2) = C(30,2)*0.1^2*0.9^{28} ≈ 0.2270

P(3) = C(30,3)*0.1^3*0.9^{27} ≈ 0.2271

Sum of these: ≈ 0.0424 + 0.1413 + 0.2270 + 0.2271 ≈ 0.6388

Therefore:

P(X ≥ 4) ≈ 1 - 0.6388 = 0.3612

Conclusion: There is approximately a 36.12% probability that 4 or more computers in the sample are defective.

Problem 3: Normal Approximation to Binomial in Golf Tee Quality

The third problem considers a shot of 360 golf tees with a 20% nonconforming rate. Using the normal distribution to approximate the binomial, the parameters are:

Mean (µ) = n * p = 360 * 0.20 = 72

Standard deviation (σ) = √(n * p * (1 - p)) = √(360 * 0.20 * 0.80) ≈ √(57.6) ≈ 7.6

We seek the probability that 65 or fewer tees are nonconforming:

P(X ≤ 65)

Applying the continuity correction, P(X ≤ 65.5):

Z = (65.5 - µ) / σ = (65.5 - 72) / 7.6 ≈ -0.868

Using standard normal tables, P(Z ≤ -0.868) ≈ 0.192.

Thus, the probability that 65 or fewer tees are defective is approximately 19.2%.

Problem 4: Poisson Distribution for Nonconforming Labels

This problem models a small sample of 10 printed labels with a 15% defect rate. The expected number of defective labels (λ) is:

λ = n * p = 10 * 0.15 = 1.5

The probability of observing exactly 2 defective labels is given by:

P(X=2) = (e^{-λ} * λ^{2}) / 2!

Calculating:

P(X=2) = (e^{-1.5} * 1.5^{2}) / 2 ≈ (0.2231 * 2.25) / 2 ≈ 0.2517

Hence, there's about a 25.17% probability of exactly two defective labels in the sample.

Problem 5: Constructing Distribution Graphs in Excel

The final task involves creating graphs for three distributions across values 0 to 10:

Hypergeometric Distribution:

with parameters n=10, N=50, D=15. The probability P(k) = [C(D, k) * C(N - D, n - k)] / C(N, n). This distribution models the probability of k defective units in a sample of 10 from a finite population with 15 defectives out of 50 items.

Binomial Distribution:

with parameters n=50 and p=0.06, modeling the probability of k defectives in n=50 trials.

Poisson Distribution:

approximated with λ=4, based on np=4, modeling the probability of k events within a fixed interval or space.

Constructing these graphs involves calculating probabilities across the range 0–10 for each distribution and plotting them using Excel’s chart functions. Visual comparison facilitates understanding the shape and spread of each distribution, critical in process analysis and decision-making.

Additional Scenario: Business Failure Rate Analysis

The last problem examines the likelihood of small business failures in Pennsylvania, modeled by a Poisson distribution with a mean (λ) of 10 failures per month. The probability of exactly four failures is:

P(X=4) = (e^{-10} * 10^{4}) / 4!

Calculating:

P(X=4) ≈ (4.5399e^{-5} * 10,000) / 24 ≈ 0.0182

Thus, the probability of exactly four failures equals approximately 1.82%, helping policymakers understand the risk of low failure counts, which is essential for planning and resource allocation.

Conclusion

This analysis showcases the importance of selecting the correct probability distribution based on the characteristics of a dataset whether finite without replacement, binomial, normal approximation, or Poisson. Each distribution provides unique insights, aiding in process monitoring, quality control, and risk assessment. Mastery of these concepts enhances decision-making capacity in industrial and business contexts, contributing to improved operational efficiency and quality assurance.

References

Blischke, W. R., & Murthy, D. N. P. (2008). Quality planning and analysis: From product development to manufacturing. John Wiley & Sons.

Devore, J. L. (2015). Probability and statistics for engineering and the sciences. Cengage Learning.

Montgomery, D. C. (2019). Introduction to statistical quality control. John Wiley & Sons.

Ross, S. M. (2014). Introduction to probability models. Academic Press.

Wetherill, G., & Brown, D. (2014). Statistical process control. CRC Press.

Ott, S. H., & Longnecker, M. (2017). An introduction to statistical methods and data analysis. Cengage Learning.

Hogg, R. V., McKean, J. W., & Craig, A. T. (2018). Introduction to mathematical statistics. Pearson.

Klein, J. (2015). Reliability engineering and risk analysis. CRC Press.

Lehmann, E. L., & Romano, J. P. (2005). Testing statistical hypotheses. Springer. Wilkinson, L. (2005). The grammar of graphics. Springer.

Turn static files into dynamic content formats.

Create a flipbook
Objectivesupon Completion Of This Assignment You Will Be Abl by Dr Jack Online - Issuu