Look at the additional exercise 12.8.1. Probability of manufacturing defects. The probability that a circuit board produ
Posted: Sun May 15, 2022 1:20 pm
Look at the additional exercise 12.8.1. Probability of manufacturing defects. The probability that a circuit board produced by a particular manufacturer has a defect is 1%. You can assume that errors are independent, so the event that one circuit board has a defect is independent of whether a different circuit board has a defect. You are going to create a program that calculates and the outputs the probabilities for a different number of outputs. At the end of the numeric output have a statement to help the software user understand what they are seeing. 1. What is the probability that out of 100 circuit boards made exactly have defects? (3 points) 2. What is the probability that out of 100 circuit boards made exactly 1 have defects? (3 points) 3. What is the probability that out of 100 circuit boards made exactly 2 have defects? (3 points) 4. What is the probability that out of 100 circuit boards made at least 3 have defects? (3 points) 5. Output a summary explaining the findings. (3 points) Example: There is a probability of ______ to have no defects in a batch of 100 circuit boards. There is a probability of to have 1 defect in a batch of 100 circuit boards. There is a probability of ______ to have 2 defects in a batch of 100 circuit boards. There is a probability of to have 3 or more defects in a batch of 100 circuit boards. Upload a java file.