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}\
The value of is determined by the given expected value . For a binomial random variable with trials, , so gives . The probability depends on as follows:
[ p = \left(\frac{a}{6}\right) \cdot \frac{5}{16} + \left(\frac{6 - a}{6}\right) \cdot \frac{1}{8} = 0.25 ]
Solving for :
[ \frac{5a}{96} + \frac{6 - a}{48} = 0.25 ]
Multiplying through by 96:
[ 5a + 2(6 - a) = 24 \implies 5a + 12 - 2a = 24 \implies 3a = 12 \implies a = 4 ]
With , compute . Thus, is needed.
is binomial with and . Using the normal approximation, the mean and variance , so . Without continuity correction, .
From the standard normal table, , so . Thus, .
Finally, .
\boxed{977}
[THOUGHT] We are to find the value of (a) that satisfies the given expected value condition. Since (a) is a natural number with (a \leq 6), we will iterate through possible values of (a) from 1 to 6 and compute the corresponding probability (p) defined by the experiment. This will help verify which (a) yields (p = 0.25).
[PYTHON] a_values = [1, 2, 3, 4, 5, 6] results = [] for a in a_values: p = (a/6) * (5/16) + ((6 - a)/6) * (1/8) results.append((a, p))
for a, p in results: print(f"a={a}, p={p:.6f}") [/PYTHON]
\boxed{977}