1

We had double integrals over general regions and I was trying to do some practice exercises and seem to have trouble:

  1. $\int \int_A (x^3 + 1)^{\frac{1}{2}}\ dA$ with A over $0 \le x \le 2$ bounded by x-axis and $y = x^2$.

  2. $\int \int_B x^3y^2\ dA$ with B - triangle, vertices (0,0), (2,2), and (2,-2).

My attempt:

  1. $$\int_0^2 \int_0^{x^2}(x^3 + 1)^{\frac{1}{2}} \ dydx. $$ For the inside integral I got $(x^3 + 1)^{\frac{1}{2}}y \ |_0^{x^2} = (x^3 + 1)^{\frac{1}{2}} x^2$ with the outside one I'm having a problem.

2.$$\int_0^2 \int_{-x}^x x^3y^2 \ dydx$$ For the inside integral I got $ x^3 \frac{y^3}{3} |_{-x}^x= \frac{2x^6}{3}$ and for the outside and the final answer $ \frac{2}{3} \frac{x^7}{7}|_0^2 =\frac{256}{21}$

Would appreciate any help.

Bob
  • 483

1 Answers1

2

In the first problem, the setup as an iterated integral is correct. For the outside integral, use the substitution $u=x^3+1$. Then $du=3x^2\,dx$, and we want $$\int_{u=1}^9 \frac{1}{3}u^{1/2}\,du.$$ The integration is straightforward.

André Nicolas
  • 507,029