Does any know of a math program where I can measure the area of a closed parametric curve ?
I know that I can measure the area between 2 curves with the TI-Nspire, but not for one curve in parametric form.
I'm looking to verify my answer for the following curve (area of left and right side separately).
If you're curious the parametric equation of the curve is :
$$x(t) = e^{\sin(\pi t)}$$ $$y(t) = e^{\sin(2\pi t)}$$ $$ 0 \leq t \leq 2 $$
Using Greens Theorem, I get $0.8445 \text{ units}^2$ for the left side and $2.7726 \text{ units}^2$ for the right side.
I'm just looking for a software where I can check my answers my self.
Thanks,
Liam

The parametric equation of the boundary is $$0\leq t \leq 2,\ \begin{cases} x(t) = e^{\sin(\pi t)}\\ y(t) = e^{\sin(2\pi t)} \end{cases}$$ First, change it to the non-parametric form. Let $p=\ln x$ and $q=\ln y$. Thus $$q^2=4p^2(1-p^2)\Rightarrow q=\pm 2p\sqrt{1-p^2}$$ or $$y=e^{\pm 2\ln x \ \sqrt{1-(\ln x)^2}}$$
We are interested in the region $R=R_1\cap R_2$ between the two curves. We consider it in two cases:
$\frac{1}{e}<x \le 1 \Rightarrow R_1=\{(x,y):e^{2\ln x \ \sqrt{1-(\ln x)^2}} \le y\le e^{- 2\ln x \ \sqrt{1-(\ln x)^2}}\}$
$1<x \le e \Rightarrow R_2=\{(x,y):e^{-2\ln x \ \sqrt{1-(\ln x)^2}} \le y\le e^{ 2\ln x \ \sqrt{1-(\ln x)^2}}\}$
Now we calculate the probability that a random point in a box $B$ defined as
$$B=\{(x,y): 0\le x\le 3, 0\le y\le3\}$$
is inside the regions $R_1$ and $R_2$, respectively.
To do that, we randomly select $N$ points $(x,y)$ in the given box and count those that are inside the desired region. If $M_i$ points are inside the desired region $R_i$, then the desired probability is $M_i/N$ (for $i=1,2$). But this probability is related to the area of the box and the area of the desired region as
$$\frac{\mathsf{Area}(R_i)}{\mathsf{Area}(B)}\approx\frac{M_i}{N}$$ Thus
$$\boxed{\mathsf{Area}(R_i)\approx\frac{9M_i}{N}}$$
Based on the above explanation, one can use the following Matlab code:
which gives
A1 = 0.8474andA2 = 2.7940.The accuracy can be improved by increasing $N$.