document.write( "Question 1165189: A psychiatrist is testing a new antianxiety drug, which seems to have the potentially harmful side effect of lowering the heart rate. For a sample of 50 medical students whose pulse was measured after 6 weeks of taking the drug, the mean heart rate was 70 beats per minute (bpm). If the mean heart rate for the population is 72 bpm with a standard deviation of 12, can the psychiatrist conclude that the new drug lowers heart rate significantly? \n" ); document.write( "
Algebra.Com's Answer #853112 by CPhill(2138) You can put this solution on YOUR website! This is a hypothesis testing problem. We will use a one-sample $Z$-test for the mean, as the population standard deviation ($\sigma$) is known and the sample size ($n=50$) is large.\r \n" ); document.write( "\n" ); document.write( "## 1. State the Hypotheses\r \n" ); document.write( "\n" ); document.write( "The psychiatrist is concerned that the drug **lowers** the heart rate.\r \n" ); document.write( "\n" ); document.write( "* **Null Hypothesis ($H_0$):** The drug has no effect; the mean heart rate ($\mu$) is still $72$ bpm. \n" ); document.write( " $$H_0: \mu = 72$$ \n" ); document.write( "* **Alternative Hypothesis ($H_1$):** The drug lowers the mean heart rate ($\mu$). (This is a left-tailed test.) \n" ); document.write( " $$H_1: \mu < 72$$\r \n" ); document.write( "\n" ); document.write( "## 2. Identify the Given Data\r \n" ); document.write( "\n" ); document.write( "| Variable | Symbol | Value | \n" ); document.write( "| :---: | :---: | :---: | \n" ); document.write( "| Population Mean (Hypothesized) | $\mu_0$ | $72 \text{ bpm}$ | \n" ); document.write( "| Population Standard Deviation | $\sigma$ | $12 \text{ bpm}$ | \n" ); document.write( "| Sample Size | $n$ | $50$ | \n" ); document.write( "| Sample Mean | $\bar{x}$ | $70 \text{ bpm}$ | \n" ); document.write( "| Significance Level | $\alpha$ | $0.05$ (Standard assumption since none is given) |\r \n" ); document.write( "\n" ); document.write( "## 3. Calculate the Test Statistic ($Z_{\text{test}}$)\r \n" ); document.write( "\n" ); document.write( "We use the $Z$-test formula: \n" ); document.write( "$$Z_{\text{test}} = \frac{\bar{x} - \mu_0}{\sigma / \sqrt{n}}$$\r \n" ); document.write( "\n" ); document.write( "### a. Calculate the Standard Error ($\text{SE}$) \n" ); document.write( "$$\text{SE} = \frac{\sigma}{\sqrt{n}} = \frac{12}{\sqrt{50}} \approx \frac{12}{7.071}$$ \n" ); document.write( "$$\text{SE} \approx 1.697 \text{ bpm}$$\r \n" ); document.write( "\n" ); document.write( "### b. Calculate the $Z$-score \n" ); document.write( "$$Z_{\text{test}} = \frac{70 - 72}{1.697} = \frac{-2}{1.697}$$ \n" ); document.write( "$$Z_{\text{test}} \approx -1.1786$$\r \n" ); document.write( "\n" ); document.write( "## 4. Determine the P-value\r \n" ); document.write( "\n" ); document.write( "Since this is a left-tailed test, the $P$-value is the probability of observing a $Z$-score of $-1.1786$ or lower. \n" ); document.write( "$$P\text{-value} = P(Z \le -1.1786)$$\r \n" ); document.write( "\n" ); document.write( "Using a standard normal distribution table or calculator: \n" ); document.write( "$$P\text{-value} \approx 0.1192$$\r \n" ); document.write( "\n" ); document.write( "## 5. Make a Decision and Conclusion\r \n" ); document.write( "\n" ); document.write( "We compare the $P$-value to the assumed significance level, $\alpha = 0.05$.\r \n" ); document.write( "\n" ); document.write( "$$P\text{-value} (0.1192) > \alpha (0.05)$$\r \n" ); document.write( "\n" ); document.write( "**Decision:** Since the $P$-value is greater than $\alpha$, we **fail to reject the null hypothesis ($H_0$)**.\r \n" ); document.write( "\n" ); document.write( "**Conclusion:** \n" ); document.write( "The psychiatrist **cannot conclude** that the new drug significantly lowers the heart rate. The sample mean of $70 \text{ bpm}$ is not far enough below the population mean of $72 \text{ bpm}$ to be considered statistically significant at the $0.05$ level. The observed difference could easily be due to random sampling variation. \n" ); document.write( " |