document.write( "Question 1164885: The average production cost for major movies is 60 million dollars and the standard deviation is 19 million dollars. Assume the production cost distribution is normal. Suppose that 44 randomly selected major movies are researched. Answer the following questions. Give your answers in millions of dollars, not dollars. Round all answers to 4 decimal places where possible.\r
\n" );
document.write( "\n" );
document.write( "What is the distribution of X?X~ N(_______,_________)\r
\n" );
document.write( "\n" );
document.write( "What is the distribution of ¯x?¯x~ N(_________,_________)\r
\n" );
document.write( "\n" );
document.write( "For a single randomly selected movie, find the probability that this movie's production cost is between 57 and 60 million dollars. \r
\n" );
document.write( "\n" );
document.write( "For the group of 44 movies, find the probability that the average production cost is between 57 and 60 million dollars. \r
\n" );
document.write( "\n" );
document.write( "For part d), is the assumption of normal necessary? Yes or No \n" );
document.write( "
Algebra.Com's Answer #853505 by CPhill(2189) You can put this solution on YOUR website! ```python \n" ); document.write( "import scipy.stats as stats \n" ); document.write( "import math\r \n" ); document.write( "\n" ); document.write( "mu = 60 \n" ); document.write( "sigma = 19 \n" ); document.write( "n = 44\r \n" ); document.write( "\n" ); document.write( "# 1. Distribution of X \n" ); document.write( "# 2. Distribution of x_bar \n" ); document.write( "sigma_x_bar = sigma / math.sqrt(n)\r \n" ); document.write( "\n" ); document.write( "# 3. P(57 < X < 60) \n" ); document.write( "prob_single = stats.norm.cdf(60, loc=mu, scale=sigma) - stats.norm.cdf(57, loc=mu, scale=sigma)\r \n" ); document.write( "\n" ); document.write( "# 4. P(57 < x_bar < 60) \n" ); document.write( "prob_avg = stats.norm.cdf(60, loc=mu, scale=sigma_x_bar) - stats.norm.cdf(57, loc=mu, scale=sigma_x_bar)\r \n" ); document.write( "\n" ); document.write( "print(f\"{mu=}\") \n" ); document.write( "print(f\"{sigma=}\") \n" ); document.write( "print(f\"{sigma_x_bar=}\") \n" ); document.write( "print(f\"{prob_single=}\") \n" ); document.write( "print(f\"{prob_avg=}\")\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "```\r \n" ); document.write( "\n" ); document.write( "```text \n" ); document.write( "mu=60 \n" ); document.write( "sigma=19 \n" ); document.write( "sigma_x_bar=2.8643577734887544 \n" ); document.write( "prob_single=0.06273012728359711 \n" ); document.write( "prob_avg=0.3525321063551667\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "```\r \n" ); document.write( "\n" ); document.write( "To solve these problems, we use the properties of the normal distribution and the Central Limit Theorem.\r \n" ); document.write( "\n" ); document.write( "### Given Data:\r \n" ); document.write( "\n" ); document.write( "* Population Mean () = million dollars \n" ); document.write( "* Population Standard Deviation () = million dollars \n" ); document.write( "* Sample Size () = \r \n" ); document.write( "\n" ); document.write( "---\r \n" ); document.write( "\n" ); document.write( "### a) What is the distribution of ?\r \n" ); document.write( "\n" ); document.write( "The distribution of the individual production costs () is given as normal.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "### b) What is the distribution of ?\r \n" ); document.write( "\n" ); document.write( "According to the Central Limit Theorem, the sampling distribution of the mean () has the same mean as the population, but a smaller standard deviation (known as the standard error).\r \n" ); document.write( "\n" ); document.write( "* Mean of = \n" ); document.write( "* Standard Error () = \r \n" ); document.write( "\n" ); document.write( "---\r \n" ); document.write( "\n" ); document.write( "### c) For a single randomly selected movie, find the probability that this movie's production cost is between 57 and 60 million dollars.\r \n" ); document.write( "\n" ); document.write( "We need to find . We convert these values to z-scores:\r \n" ); document.write( "\n" ); document.write( "* For : \n" ); document.write( "* For : \r \n" ); document.write( "\n" ); document.write( "Using the standard normal table or calculator:\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "**Probability = 0.0627**\r \n" ); document.write( "\n" ); document.write( "---\r \n" ); document.write( "\n" ); document.write( "### d) For the group of 44 movies, find the probability that the average production cost is between 57 and 60 million dollars.\r \n" ); document.write( "\n" ); document.write( "We need to find . Using the standard error calculated in part (b):\r \n" ); document.write( "\n" ); document.write( "* For : \n" ); document.write( "* For : \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "**Probability = 0.3525**\r \n" ); document.write( "\n" ); document.write( "---\r \n" ); document.write( "\n" ); document.write( "### e) For part d), is the assumption of normal necessary?\r \n" ); document.write( "\n" ); document.write( "**No**. Because the sample size () is greater than 30, the Central Limit Theorem guarantees that the distribution of the sample mean will be approximately normal regardless of the shape of the population distribution. \n" ); document.write( " |