I would like to find the area under the following parametric plot in Wolfram Mathematica:
F[j_] := NIntegrate[2 Sqrt[1 - j^2/r^2], {r, j, 1}]
ParametricPlot[{{F[j], F[j] + 2 Pi*j}, {F[j] + 2 Pi *j, F[j]}}, {j, 0,
1}]
I tried to do it via the calculus formula $A=\int_0^1 y(j)x'(j)dj$, using NIntegrate, but Mathematica returns some limit errors.
I would really appreciate if somebody had an easy way to do this.
You have two identical areas, just rotated by 90 degrees, plus a
2*2block in the lower left corner. Create aRegionfrom aPolygonto approximate one of those areas, multiply that area by 2, add2*2and you have the area under your parametric curve.which returns
and
Change that 1/10 step size to 1/100 or 1/200 and you should have a good enough approximation of your area because your parametric curve is nice and smooth.
Test this brutally before you even think of trusting this.