2

$$ \iint 4y - (x^2 + y^2) dxdy$$ over region $x^2 + (y-2)^2 = 2^2$. Basically I tried to solve this using twoo methods but I am getting different results.I want to know whether my method are correct (not computation part but otherwise setting up of integral)

  1. I put $x = r \cos\theta$ and $y = r \sin\theta$ and my $r$ goes from $0$ to $4\sin\theta$ and $\theta $ goes from $0$ to $\pi$

  2. I use change of variables by putting $x = r \cos\theta$ and $y = 2 + 2r \sin\theta$. and i get $J= 4r\,drd\theta$. o integral limits are $r$ goes from $0$ to $1$ and theta goes from $0$ to $2\pi$

My question is if my limits and integrand are correct in both methods or not

mechanodroid
  • 46,490
Gathdi
  • 1,402

1 Answers1

0

With the first substitution you get:

$$I = \iint_D(4y- x^2-y^2)\,dxdy=\int_0^\pi \int_0^{4\sin \theta} (4r\sin\theta - r^2)\cdot r\,drd\theta = 8\pi$$

The second substitution should be $x = r\cos\theta, y = 2+r\sin\theta$. The Jacobian is again $r$, and the limits are $r \in [0,2], \theta \in [0,2\pi]$. We get

$$I = \iint_D (-x^2-(y-2)^2+4) \,dxdy = \int_0^{2\pi}\int_0^2 (-r^2+4)\cdot r\,drd\theta = 8\pi$$ which is the same.

mechanodroid
  • 46,490