1. A student evaluates $\int_1^3 (x^2 - 2x)\,dx$ and gets $\frac{2}{3}$. They claim this is the area between $y = x^2 - 2x$ and the $x$-axis on $[1, 3]$. Critique this claim. <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 x = [], y = []; for (var i = 0; i <= 100; i++) { var t = 1 + i*2/100; x.push(t); y.push(t*t - 2*t); } var trace = {x: x, y: y, mode: 'lines', name: 'y = x² - 2x', line: {color: 'green'}}; Plotly.newPlot('chart', [trace], {title: 'y = x² - 2x on [1, 3]', xaxis: {title: 'x'}, yaxis: {title: 'y'}, shapes: [{type: 'line', x0: 1, x1: 3, y0: 0, y1: 0, line: {dash: 'dash', color: 'gray'}}]}); </script></body></html> </custom_artifact>
- A.The claim is correct because the integral always gives the geometric area
- B.The integral gives the net signed area; since $y = x^2 - 2x < 0$ on part of $[1, 3]$, the actual area requires splitting the integral at $x = 2$ and using absolute values, giving area $= 2$
- C.The claim is wrong because the function has no roots in $[1, 3]$
- D.The integral is evaluated incorrectly; the correct value is $0$
View Answer
Answer: The integral gives the net signed area; since $y = x^2 - 2x < 0$ on part of $[1, 3]$, the actual area requires splitting the integral at $x = 2$ and using absolute values, giving area $= 2$
Check where $x^2 - 2x = 0$: $x(x-2) = 0$, so $x = 0$ and $x = 2$. The function is negative on $(0, 2)$ and positive on $(2, \infty)$. Compute the actual area: Area $= \int_1^2 |x^2-2x|\,dx + \int_2^3 (x^2-2x)\,dx = \int_1^2 (2x-x^2)\,dx + \int_2^3(x^2-2x)\,dx$. First piece: $\left[x^2 - \frac{x^3}{3}\right]_1^2 = (4-\frac{8}{3}) - (1-\frac{1}{3}) = \frac{4}{3} - \frac{2}{3} = \frac{2}{3}$. Second piece: $\left[\frac{x^3}{3} - x^2\right]_2^3 = (9-9)-(\frac{8}{3}-4) = 0 + \frac{4}{3} = \frac{4}{3}$. Total area $= \frac{2}{3} + \frac{4}{3} = 2$. Why distractors fail: Option A ignores the sign issue. Option C is wrong—$x = 2$ is a root in $[1,3]$. Option D's calculation is incorrect; $\int_1^3(x^2-2x)\,dx = \frac{2}{3}$ is correct as a signed integral.