Consider the region R bounded by the curve rt sin2ti sintj
Consider the region R bounded by the curve r(t) = sin(2t)i + sin(t)j, 0 lessthanorequalto t lessthanorequalto pi. Use the ezplot command to plot this curve and identify the region R. Use Green\'s theorem to find the area of the region R
Solution
function z = myfun(x,y,t); t=0:0.01:pi; z = sin(2*t)+sin(t); ezplot(@(x,y)myfun(x,y,t))