1. A student needs to find the area enclosed by $y = x^2 - 4x + 3$ and $y = -x^2 + 2x + 3$. After setting the equations equal they obtain $x^2 - 4x + 3 = -x^2 + 2x + 3$. What are the intersection points and which function is on top between them? <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:500px;height:400px;"></div><script> var x1=[],y1=[],y2=[],xF=[],yT=[],yB=[]; for(var i=-0.5;i<=3.5;i+=0.02){x1.push(i);y1.push(i*i-4*i+3);y2.push(-i*i+2*i+3);} for(var i=0;i<=3;i+=0.02){xF.push(i);yT.push(-i*i+2*i+3);yB.push(i*i-4*i+3);} var t1={x:x1,y:y1,mode:'lines',name:'y = x²−4x+3',line:{color:'blue'}}; var t2={x:x1,y:y2,mode:'lines',name:'y = −x²+2x+3',line:{color:'red'}}; var t3={x:xF,y:yT,mode:'lines',line:{color:'rgba(0,0,0,0)'},showlegend:false}; var t4={x:xF,y:yB,fill:'tonexty',fillcolor:'rgba(200,200,100,0.35)',mode:'lines',line:{color:'rgba(0,0,0,0)'},showlegend:false}; Plotly.newPlot('chart',[t1,t2,t3,t4],{title:'Two parabolas enclosing a region',xaxis:{title:'x'},yaxis:{title:'y'}}); </script></body></html> </custom_artifact>
- A.$x = 0$ and $x = 3$; $y = x^2 - 4x + 3$ is on top
- B.$x = 0$ and $x = 3$; $y = -x^2 + 2x + 3$ is on top
- C.$x = 1$ and $x = 3$; $y = -x^2 + 2x + 3$ is on top
- D.$x = -1$ and $x = 3$; $y = x^2 - 4x + 3$ is on top
View Answer
Answer: $x = 0$ and $x = 3$; $y = -x^2 + 2x + 3$ is on top
Solve for intersection points: $x^2 - 4x + 3 = -x^2 + 2x + 3$ simplifies to $2x^2 - 6x = 0$, so $2x(x - 3) = 0$, giving $x = 0$ and $x = 3$. Determine which curve is on top: Test $x = 1$: $y_1 = 1 - 4 + 3 = 0$ and $y_2 = -1 + 2 + 3 = 4$. Since $y_2 > y_1$, the downward-opening parabola $y = -x^2+2x+3$ is on top on $(0,3)$. Why distractors fail: Option A has the correct intersection points but reverses which curve is on top. Option C has incorrect intersection points ($x=1$ is not a solution of $2x^2-6x=0$). Option D uses $x=-1$, which does not satisfy the equation.