$$\arcsin \frac{1}{\sqrt{1+x}}.$$ I tried differentiating it but every time my answer came wrong. The answer in my book is $$- \frac{1}{2(x+1)\sqrt x}.$$
-
8Could you please show us the steps in your differentiation? – Minus One-Twelfth Jul 22 '19 at 10:26
-
3How did you try to do it? – Botond Jul 22 '19 at 10:26
-
@Botond I found the derivative of arcsin 1/sqrt( 1+x) and multiplied it with the derivative of 1/sqrt( 1+x) – Mad Dawg Jul 22 '19 at 10:49
-
@Botond i was making an error in the explanation i told you now ive got it! – Mad Dawg Jul 22 '19 at 10:51
-
1I'm glad to hear that you found the problem! Next try please try to include your work in the question :) – Botond Jul 22 '19 at 11:12
3 Answers
Rules I will use:
- The derivative of $\arcsin x$ is $\frac{1}{\sqrt{1-x^2}}$
- The derivative of $x^\alpha$ is $\alpha\cdot x^{\alpha-1}$
- The chain rule, i.e. the derivative of $f(g(x))$ is $f'(g(x))\cdot g'(x)$.
First, take $f(x)=\arcsin(x)$ and $g(x)=\frac{1}{\sqrt{1+x}}$, and use the chain rule. The derivative of $f(g(x))$ is
$$\begin{align}f'(g(x))\cdot g'(x)&= \frac{1}{\sqrt{1-g(x)^2}}\cdot g'(x)\\ &= \frac{1}{\sqrt{1-\left(\frac{1}{\sqrt{1+x}}\right)^2}}\cdot g'(x) \\&= \frac{1}{\sqrt{1-\frac{1}{1+x}}}\cdot g'(x)\\&=\frac{1}{\sqrt{\frac{1+x-1}{1+x}}}\cdot g'(x)\\&=\frac{\sqrt{1+x}}{\sqrt x}\cdot g'(x)\end{align}$$
I leave the computation of $g'(x)$ to you.
- 123,496
- 6
- 128
- 204
-
-
-
-
2The derivative of $x^{\alpha}$ is $\alpha x^{\alpha -1}$ even if $\alpha=-1$. I think you messed it up with the integral of $x^\alpha$. – Botond Jul 22 '19 at 11:13
If you set $y$ equal to your expression and take $\sin$ of both side you have
$$\sin y = \frac{1}{\sqrt{1+x}}.$$
Do implicit differentiation to get
$$(\cos y) y'= \frac{-1}{2(1+x)^{3/2}}.$$
Using the first equation we get
$$\cos y = \sqrt{1-\sin^2 y }= \sqrt{1- \left(\frac{1}{\sqrt{1+x}}\right)^2 }= \sqrt{\frac{x}{1+x}}.$$
Plug this in the first equation and solve for $y'.$
The function $$ f(x) = \arcsin{\frac{1}{\sqrt{1+x}}} $$ can be seen as a composite function $f(x) = u(s(x))$, where $u(x) = \arcsin{x}$ and $s(x)= \frac{1}{\sqrt{1+x}}$. Their derivatives are (I will assume these as given - I won't prove these) $$ u'(x) = \frac{1}{\sqrt{1-x^2}} $$ $$ s'(x) = -\frac{1}{2(x+1)^{2/3}} $$ Now, the derivative of a composite function is $$ f'(x) = s'(x) u'(s(x)) = -\frac{1}{2(x+1)^{2/3}} \frac{1}{\sqrt{1-s^2(x)}} $$ The latter terms is a bit tricky to evaluate, we should take it aside: $$ \frac{1}{\sqrt{1-s^2(x)}} = \frac{1}{\sqrt{1-\left(\frac{1}{\sqrt{1+x}} \right)^2}} = \frac{1}{\sqrt{1-\left(\frac{1}{1+x} \right)}} = \frac{1}{\sqrt{\frac{1+x}{1+x}-\frac{1}{1+x}}} = \frac{1}{\sqrt{\frac{x}{1+x}}} = \frac{(1+x)^{1/2} }{ \sqrt{x} } $$ therefore, the derivative can be simplified to $$ f'(x) = -\frac{1}{2(x+1)^{2/3}} \frac{(1+x)^{1/2} }{ \sqrt{x} } = -\frac{1}{2\sqrt{x}(x+1)} $$
- 6,012
-
-
1The derivative of $$ (1+x)^{-\frac{1}{2}} $$ is $$ -\frac{1}{2} (1+x)^{-\frac{1}{2} - 1} = - \frac{1}{2}(1+x)^{-2/3} $$ – Matti P. Jul 22 '19 at 10:57
-
-
1Since when is $-\frac12-1=-\frac23$? That should also make you understand the downvotes... – 5xum Jul 22 '19 at 11:01
-