Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Not sure whats it's asking can you please assist me: The manufacturing process at a factory produces ball bearings that are sold to automotive manufacturers.

Not sure whats it's asking can you please assist me:

The manufacturing process at a factory produces ball bearings that are sold to automotive manufacturers. The factory wants to estimate the average diameter of a ball bearing that is in demand to ensure that it is manufactured within the specifications. Suppose they plan to collect a sample of 50 ball bearings and measure their diameters to construct a 90% and 99% confidence interval for the average diameter of ball bearings produced from this manufacturing process.

The sample of size 50 was generated using Python's NumPy module. This data set will be unique to you, and therefore your answers will be unique as well. Run Step 1 in the Python script to generate your unique sample data. Check to make sure your sample data is shown in your attachment.

In your own post, address the following items. Be sure to answer the questions about both confidence intervals and hypothesis testing.

  1. In the Python script, you calculated the sample data to construct a 90% and 99% confidence interval for the average diameter of ball bearings produced from this manufacturing process. These confidence intervals were created using the Normal distribution based on the assumption that the population standard deviation is known and the sample size is sufficiently large. Report these confidence intervals rounded to two decimal places. See Step 2 in the Python script.
  2. Interpret both confidence intervals. Make sure to be detailed and precise in your interpretation.

It has been claimed from previous studies that the average diameter of ball bearings from this manufacturing process is 2.30 cm. Based on the sample of 50 that you collected, is there evidence to suggest that the average diameter is greater than 2.30 cm? Perform a hypothesis test for the population mean at alpha = 0.01.

In your own initial post, address the following items:

  1. Define the null and alternative hypothesis for this test in mathematical terms and in words.
  2. Report the level of significance.
  3. Include the test statistic and the P-value. See Step 3 in the Python script. (Note that Python methods return two-tailed P-values. You must report the correct P-value based on the alternative hypothesis.)
  4. Provide your conclusion and interpretation of the results. Should the null hypothesis be rejected? Why or why not?

Here is a copy of my HTML page:

Step 1: Generating sample data

This block of Python code will generate a unique sample of size 50 that you will use in this discussion. Note that your sample will be unique and therefore your answers will be unique as well. The numpy module in Python allows you to create a data set using a Normal distribution. Note that the mean and standard deviation were chosen for you. The data set will be saved in a Python dataframe that will be used in later calculations.

Click the block of code below and hit theRunbutton above.

In[1]:

import pandas as pd import numpy as np import math import scipy.stats as st # create 50 randomly chosen values from a Normal distribution. (arbitrarily using mean=2.48 and standard deviation=0.50).  diameters = np.random.normal(2.4800,0.500,50) # convert the array into a dataframe with the column name "diameters" using pandas library. diameters_df = pd.DataFrame(diameters, columns=['diameters']) diameters_df = diameters_df.round(2) # print the dataframe (note that the index of dataframe starts at 0). print("Diameters data frame ") print(diameters_df) Diameters data frame diameters 0 1.87 1 2.47 2 3.16 3 2.18 4 3.14 5 2.75 6 2.27 7 2.56 8 3.11 9 1.35 10 2.50 11 2.70 12 2.62 13 1.46 14 1.97 15 2.81 16 2.56 17 2.13 18 2.24 19 3.09 20 1.96 21 1.91 22 2.11 23 2.58 24 2.14 25 2.34 26 1.61 27 1.94 28 2.32 29 2.66 30 2.61 31 2.01 32 3.44 33 3.23 34 3.22 35 2.69 36 2.48 37 2.20 38 1.33 39 2.18 40 2.61 41 3.25 42 2.10 43 2.97 44 3.26 45 2.68 46 2.65 47 2.90 48 2.25 49 3.46 

Step 2: Constructing confidence intervals

You will assume that the population standard deviation is known and that the sample size is sufficiently large. Then you will use the Normal distribution to construct these confidence intervals. You will use the submodule scipy.stats to construct confidence intervals using your sample data.

Click the block of code below and hit theRunbutton above.

In[2]:

# Python methods that calculate confidence intervals require the sample mean and the standard error as inputs. # calculate the sample mean mean = diameters_df['diameters'].mean() # input the population standard deviation, which was given in Step 1. std_deviation = 0.5000 # calculate standard error = standard deviation / sqrt(n) where n is the sample size. stderr = std_deviation/math.sqrt(len(diameters_df['diameters'])) # construct a 90% confidence interval. conf_int_90 = st.norm.interval(0.90, mean, stderr) print("90% confidence interval (unrounded) =", conf_int_90) print("90% confidence interval (rounded) = (", round(conf_int_90[0], 2), ",", round(conf_int_90[1], 2), ")") print("") # construct a 99% confidence interval. conf_int_99 = st.norm.interval(0.99, mean, stderr) print("99% confidence interval (unrounded) =", conf_int_99) print("99% confidence interval (rounded) = (", round(conf_int_99[0], 2), ",", round(conf_int_99[1], 2), ")") 90% confidence interval (unrounded) = (2.3642912846323325, 2.5969087153676673) 90% confidence interval (rounded) = ( 2.36 , 2.6 ) 99% confidence interval (unrounded) = (2.2984613632281548, 2.662738636771845) 99% confidence interval (rounded) = ( 2.3 , 2.66 ) 

Step 3: Performing hypothesis testing for the population mean

Since you were given the population standard deviation in Step 1 and the sample size is sufficiently large, you can use the z-test for population means. The z-test method in statsmodels.stats.weightstats submodule runs the z-test. The input to this method is the sample dataframe and the value under the null hypothesis. The output is the test-statistic and the two-tailed P-value.

Click the block of code below and hit theRunbutton above.

In[3]:

from statsmodels.stats.weightstats import ztest # run z-test hypothesis test for population mean. The value under the null hypothesis is 2.30. test_statistic, p_value = ztest(x1 = diameters_df['diameters'], value = 2.30) print("z-test hypothesis test for population mean") print("test-statistic =", round(test_statistic,2)) print("two tailed p-value =",round(p_value,4)) z-test hypothesis test for population mean test-statistic = 2.4 two tailed p-value = 0.0163 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Precalculus Enhanced With Graphing Utilities (Subscription)

Authors: Michael Sullivan, Michael Sullivan III

7th Edition

0134273125, 9780134273129

More Books

Students also viewed these Mathematics questions

Question

The number of people commenting on the statement

Answered: 1 week ago

Question

Peoples understanding of what is being said

Answered: 1 week ago