Neat Example
Switching the Order of Integration in Polar Coordinates
We are looking at finding the area of the region bounded by the graphs of and .
> | Int(Int(r,r=0..arcsin(theta)),theta=0..1); |
> | value(%); |
> | evalf(%); |
Using the integration order above we can only approximate the area (Maple does a good job of approximating).
> | Int(Int(r,theta=sin(r)..1),r=0..Pi/2); |
> | value(%); |
> | evalf(%); |
Switching the order of integration allowed Maple to compute the exact area.
The region is graphed below.
> | with(plots): |
> | rplot:=polarplot(arcsin(theta),theta=0..1,thickness=2): |
> | thetaplot:=polarplot([t,1,t=0..Pi/2],thickness=2): |
> | display(rplot,thetaplot); |
> |