3
$\begingroup$

I have no idea how to do this, it seems so complex I do not know what to do.

$\int_0^1 x\sqrt{2- \sqrt{1-x^2}}dx$

I tried to do double trig identity substitution but that did not seem to work.

  • 0
    There are often multiple ways to solve these integrals, as demonstrated below. You just have to experiment with different substitutions. Also bear in mind that these integrals are designed to be solved, so there is usually a simple trick. If you see a $1-x^2$, we can try sin or cos because that will get rid of a square term. If you have linear terms you can try making a substitution by changing the term that is in an awkward place, for example under a square root sign.2012-06-05

2 Answers 2

11

Since you tried to use a trig identity, I'll use one in this solution. Let $x = \sin \theta$ so that $1 - x^2 = 1 - \sin^2 \theta = \cos^2 \theta$, and $\mathrm d x = \cos \theta \mathrm{d}\theta$. Our integral becomes:

$ \int_0^{\frac \pi 2} \sin \theta \cos \theta \sqrt{2 - \cos\theta} \mathrm d \theta.$

Now set $u = \cos\theta$ to give $\mathrm d \mathrm u = - \sin \theta \mathrm d \theta$. Our integral becomes

$\int_1^0 - u\sqrt{2-u} \mathrm \ \mathrm d u.$

Can you solve that?

  • 0
    OK, just substitute $v = 2-u$, then $\mathrm d v \mathrm =- d u$, so this will give us the integral $\int_1^2 (2-v) \sqrt{v} \mathrm d v.$ This is definitely correct.2012-06-05
5

Here is how I would do it, and for simplicity I would simply look at the indefinite integral. First make the substitution $u = x^2$ so that $du = 2xdx$. We get: $\frac{1}{2} \int \sqrt{2-\sqrt{1-u}} du$ Then, make the substitution $v = 1-u$ so that $dv = -du$. We get: $-\frac{1}{2} \int \sqrt{2 - \sqrt{v}} dv$ Then make the substitution $w = \sqrt{v}$ so that $dw = \frac{1}{2\sqrt{v}} dv$ meaning that $dv = 2w \text{ } dw$. So we get: $-\int \sqrt{2-w} \text{ } w \text{ } dw$ Now make the substitution $s = 2-w$ so that $ds = -dw$ to get: $-\int \sqrt{s}(s-2) ds$ The rest should be straightforward.