1. A student is performing a complete curve sketch of $f(x) = \frac{x^2 - 1}{x^2 + 1}$. They correctly find $f'(x) = \frac{4x}{(x^2+1)^2}$ and state that $f$ is decreasing on $(-\infty, 0)$ and increasing on $(0, \infty)$. They then claim that $x = 0$ is a local and absolute minimum. Is the claim about the absolute minimum justified? <custom_artifact type="plotly_visualization"> <html><head><script src="https://cdn.plot.ly/plotly-latest.min.js"></script></head> <body><div id="chart" style="width:100%;max-width:520px;"></div><script> var xv=[];var yv=[]; for(var i=-8;i<=8;i+=0.08){xv.push(i);yv.push((i*i-1)/(i*i+1));} Plotly.newPlot('chart',[{x:xv,y:yv,type:'scatter',mode:'lines',line:{color:'#e11d48',width:2.5},name:'f(x)'},{x:[-8,8],y:[1,1],type:'scatter',mode:'lines',line:{color:'gray',width:1,dash:'dash'},name:'y = 1',showlegend:true}],{title:'f(x) = (x²−1)/(x²+1)',xaxis:{title:'x',zeroline:true},yaxis:{title:'y',zeroline:true,range:[-1.3,1.3]},margin:{t:40,b:40,l:50,r:20}}); </script></body></html> </custom_artifact>
- A.No, because an absolute minimum can only be guaranteed on a closed interval by the Extreme Value Theorem.
- B.Yes, because $f(0) = -1$ is the only local minimum and $f(x) > -1$ for all $x \neq 0$, confirming it is also the absolute minimum.
- C.No, because $f(x) \to 1$ as $x \to \pm\infty$, so there may be a lower value somewhere.
- D.No, because the Second Derivative Test must be used to confirm absolute extrema.
View Answer
Answer: Yes, because $f(0) = -1$ is the only local minimum and $f(x) > -1$ for all $x \neq 0$, confirming it is also the absolute minimum.
Analyze the function's behavior: $f(0) = \frac{-1}{1} = -1$. Since $f$ is decreasing on $(-\infty, 0)$ and increasing on $(0, \infty)$, the function reaches its lowest value at $x = 0$. Verify global behavior: $f(x) = \frac{x^2-1}{x^2+1} = 1 - \frac{2}{x^2+1}$. The term $\frac{2}{x^2+1}$ is maximized at $x = 0$ (where it equals 2), so $f(0) = 1 - 2 = -1$ is the smallest value. As $|x| \to \infty$, $f(x) \to 1$. Why the correct answer works: Since $f$ decreases to $-1$ and then increases forever (approaching 1), $f(0) = -1$ is both the only local minimum and the absolute minimum on the entire real line. Why distractors fail: Option A incorrectly implies absolute extrema cannot be found on open intervals — they can when there is only one critical point and the function increases away from it. Option C is backwards: $f(x) \to 1 > -1$, which confirms $f(0)$ is the lowest. Option D invents a requirement — the Second Derivative Test classifies local extrema, not absolute ones.