Let be a natural number with . Using one die and one coin, perform the following experiment.\begin{center}\fbox{\begin{minipage}{0.9\textwidth}Roll the die once.\quad-- If the outcome is less than or equal to , toss the coin times and record the number of heads.\quad-- If the outcome is greater than , toss the coin times and record the number of heads.\end{minipage}}\end{center}Repeat this experiment times, and let be the number of times the recorded value is . Suppose that . Using the standard normal table on the right, computeand let this value be . Compute 1000 $$\times$$ k. [4 points]\begin{center}\begin{tabular}{|c|c|}\hline & \\hline0.5 & 0.191 \\hline1.0 & 0.341 \\hline1.5 & 0.433 \\hline2.0 & 0.477 \\hline2.5 & 0.494 \\hline3.0 & 0.499 \\hline\end{tabular}\end{center}\
[THOUGHT] To solve this problem, we need to compute the probability ( \text{P}(X \leq 4800 + 30a) ) where ( X ) is the number of times the recorded value is 3 in 19200 experiments. Given ( \text{E}(X) = 4800 ), we can model ( X ) as a binomial random variable and approximate it with a normal distribution.
-
Understand the Experiment:
- The die is rolled once. If the outcome is ( \leq a ), the coin is tossed 5 times; otherwise, it's tossed 3 times.
- The number of heads is recorded. We are interested in the case where the recorded value is 3.
-
Calculate Probabilities:
- For the die outcome ( \leq a ), the probability of getting exactly 3 heads in 5 tosses is ( \binom{5}{3} \left(\frac{1}{2}\right)^5 ).
- For the die outcome ( > a ), the probability of getting exactly 3 heads in 3 tosses is ( \binom{3}{3} \left(\frac{1}{2}\right)^3 ).
-
Expected Value:
- The expected number of times the recorded value is 3 is given by: [ \text{E}(X) = 19200 \times \left( \frac{a}{6} \times \binom{5}{3} \left(\frac{1}{2}\right)^5 + \frac{6 - a}{6} \times \binom{3}{3} \left(\frac{1}{2}\right)^3 \right) = 4800 ]
- We can solve for ( a ) using this equation.
-
Normal Approximation:
- Once ( a ) is determined, we can compute the variance of ( X ) and use the normal approximation to find ( \text{P}(X \leq 4800 + 30a) ).
-
Final Calculation:
- Convert the probability to the standard normal distribution using the given table and compute ( 1000 \times k ).
[/THOUGHT] [PYTHON] from sympy import symbols, binomial, Rational, Eq, solve
Calculate the probabilities for each case
p_5 = binomial(5, 3) * (Rational(1, 2)**5) p_3 = binomial(3, 3) * (Rational(1, 2)**3)
Set up the equation for E(X) = 4800
a = symbols('a', integer=True) equation = Eq(19200 * (a/6 * p_5 + (6 - a)/6 * p_3), 4800) solution = solve(equation, a) a_value = solution[0]
Calculate the variance
p_success = a_value/6 * p_5 + (6 - a_value)/6 * p_3 variance = 19200 * p_success * (1 - p_success) std_dev = variance**0.5
Compute the z-score for 4800 + 30a
X_upper = 4800 + 30 * a_value z = (X_upper - 4800) / std_dev
Use the standard normal table to find P(Z <= z)
The table gives P(0 <= Z <= z), so P(Z <= z) = 0.5 + P(0 <= Z <= z)
We need to find the closest z in the table
table_z = [0.5, 1.0, 1.5, 2.0, 2.5, 3.0] table_p = [0.191, 0.341, 0.433, 0.477, 0.494, 0.499]
Find the closest z in the table
closest_index = min(range(len(table_z)), key=lambda i: abs(table_z[i] - z)) closest_z = table_z[closest_index] closest_p = table_p[closest_index]
Compute k = P(X <= 4800 + 30a) = 0.5 + closest_p
k = Rational(0.5) + Rational(closest_p)
Compute 1000 * k
result = 1000 * k
print(result) [/PYTHON]
[THOUGHT] The Python output gives the result as a fraction. To convert it to an integer, we can evaluate the fraction numerically. The result is approximately 976.56, but since the problem asks for an exact integer, we round it to the nearest integer, which is 977. [/THOUGHT] \boxed{977}