Polar Example 1
Picture and Computations
> | with(plots): |
Warning, the name changecoords has been redefined
> | polarplot(3-2*sin(theta),theta=0..2*Pi,thickness=3,numpoints=100,scaling=constrained); |
> |
> | Area:=Int((3-2*sin(theta))^2/2,theta=0..2*Pi); |
> | value(%); |
> | Perimeter:=Int(sqrt((3-2*sin(theta))^2+(2*cos(theta))^2),theta=0..2*Pi); |
> | value(%); |
> | evalf(%); |
> | Perimeter:=Int(sqrt(13-12*sin(theta)),theta=0..2*Pi); |
> | value(%); |
> |