Hi, I'm working with a definite integral and get a decimal approximation as my answer. I'd like to also get the exact solution:
y1=sin(pi*x/2); y2=x; x1=-1; x2=1;
A=int((abs(y2-y1)),x1,x2);
Gives the answer as 0.2732 which is a correct decimal approximation. The exact solution is:
How do I get that?