1. The region bounded by $y = 6 - 2x$, $y = x$, and $y = 0$ is shown below. What is the area of this region? <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 t1 = {x: [0,2,3,0], y: [0,2,0,0], fill: 'toself', fillcolor: 'rgba(100,200,150,0.4)', line: {color: 'green'}, name: 'Region'}; var l1 = {x: [0,3], y: [6,0], mode: 'lines', name: 'y = 6 - 2x', line: {color: 'blue'}}; var l2 = {x: [0,3], y: [0,3], mode: 'lines', name: 'y = x', line: {color: 'red'}}; Plotly.newPlot('chart', [t1, l1, l2], {title: 'Region bounded by y = 6-2x, y = x, y = 0', xaxis: {title: 'x'}, yaxis: {title: 'y'}}); </script></body></html> </custom_artifact>
- A.$2$
- B.$3$
- C.$4$
- D.$6$
View Answer
Answer: $3$
Find vertices of the region: $y = x$ and $y = 6 - 2x$ intersect when $x = 6-2x \Rightarrow x = 2$, so $(2,2)$. $y = x$ meets $y = 0$ at $(0,0)$. $y = 6-2x$ meets $y = 0$ at $(3,0)$. Set up the integral: From $x = 0$ to $x = 2$, the top is $y = x$ and bottom is $y = 0$. From $x = 2$ to $x = 3$, the top is $y = 6-2x$ and bottom is $y = 0$. Area $= \int_0^2 x\,dx + \int_2^3(6-2x)\,dx$. Evaluate: $\int_0^2 x\,dx = 2$. $\int_2^3(6-2x)\,dx = [6x - x^2]_2^3 = (18-9) - (12-4) = 9 - 8 = 1$. Total $= 2 + 1 = 3$. Why distractors fail: Option A ($2$) only computes the first piece. Option C ($4$) may arise from a limit error. Option D ($6$) likely treats the region as a $3 \times 2$ rectangle.