1. The graph below shows a function $f(x)$ with a jump discontinuity at $x = 1$. From the left, $f(x)$ approaches $3$. From the right, $f(x)$ approaches $6$. What are $\lim_{x \to 1^-} f(x)$, $\lim_{x \to 1^+} f(x)$, and $\lim_{x \to 1} f(x)$? <custom_artifact type="plotly_visualization"> <html><head><script src="https://cdn.plot.ly/plotly-latest.min.js"></script></head> <body><div id="chart"></div><script> var xL=[]; var yL=[]; for(var i=0;i<=19;i++){var v=-1+i*0.1; xL.push(v); yL.push(2*v+1);} var xR=[]; var yR=[]; for(var i=0;i<=20;i++){var v=1.01+i*0.1; xR.push(v); yR.push(2*v+4);} var data=[ {x:xL,y:yL,mode:'lines',line:{color:'blue',width:2},showlegend:false}, {x:xR,y:yR,mode:'lines',line:{color:'blue',width:2},showlegend:false}, {x:[1],y:[3],mode:'markers',marker:{color:'blue',size:10},showlegend:false}, {x:[1],y:[6],mode:'markers',marker:{color:'blue',size:10,symbol:'circle-open',line:{width:2}},showlegend:false} ]; var layout={title:'Graph of f(x) with Jump at x=1',xaxis:{title:'x',range:[-1,3.5]},yaxis:{title:'y',range:[-1,11]},width:500,height:400}; Plotly.newPlot('chart',data,layout); </script></body></html> </custom_artifact>
- A.$\lim_{x \to 1^-} f(x) = 3$, $\lim_{x \to 1^+} f(x) = 6$, $\lim_{x \to 1} f(x) = 3$
- B.$\lim_{x \to 1^-} f(x) = 3$, $\lim_{x \to 1^+} f(x) = 6$, $\lim_{x \to 1} f(x) = 6$
- C.$\lim_{x \to 1^-} f(x) = 3$, $\lim_{x \to 1^+} f(x) = 6$, $\lim_{x \to 1} f(x)$ does not exist
- D.$\lim_{x \to 1^-} f(x) = 6$, $\lim_{x \to 1^+} f(x) = 3$, $\lim_{x \to 1} f(x)$ does not exist
View Answer
Answer: $\lim_{x \to 1^-} f(x) = 3$, $\lim_{x \to 1^+} f(x) = 6$, $\lim_{x \to 1} f(x)$ does not exist
Read the one-sided limits from the graph: Tracing from the left, the curve approaches $y = 3$ as $x \to 1^-$. Tracing from the right, the curve approaches $y = 6$ as $x \to 1^+$. Determine the two-sided limit: Since $3 \neq 6$, the one-sided limits disagree, so $\lim_{x \to 1} f(x)$ does not exist. Why distractors fail: Options A and B both claim the two-sided limit exists (as $3$ or $6$), which is impossible when the one-sided limits differ. Option D swaps the left and right limits.