2

Can someone explain me how to find the value of

$$L = \int_1^2 \sqrt{1+9x} \,\mathrm{d}x$$

I do not know how to approach it after having $z = 1+9x$ and $\mathrm{d}x = \mathrm{d}z/9$.

Peter
  • 21

1 Answers1

1

Your substitution gives

$$L=\frac{1}{9}\int_{10}^{19}\sqrt{z}\,\mathrm{d}z=\frac{1}{9}\left[\frac23z^{3/2}\right]_{10}^{19}=\frac{2}{27}\left(19^{3/2}-10^{3/2}\right)$$

Notice that for $a\neq-1$, a primitive of $z^a$ is

$$\frac{z^{a+1}}{a+1}$$

And $\sqrt{z}=z^ {1/2}$.


When doing integration by substitution of

$$I=\int_a^b f(x)\,\mathrm{d}x$$

With substitution $x=g(z)$, with a suitable $g$ (differentiable and bijective), you write $\mathrm{d}x=g'(z)\,\mathrm{d}z$ and

$$I=\int_{g^{-1}(a)}^{g^{-1}(b)} f(g(z)) \,g'(z)\,\mathrm{d}z$$

Actually, you simply replace $x$ with $g(z)$ in the integrand, you replace $\mathrm{d}x$ with $g'(z)\,\mathrm{d}z$, and you also replace the bounds $(a,b)$ with $(z_1,z_2)$. From $a=g(z_1)$ you get $z_1=g^{-1}(a)$ and likewise $z_2=g^{-1}(b)$.

Here, $1+9x=z$, so $x=g(z)=\frac{z-1}{9}$, and $a=1,b=2$ so $z_1=1+9a=10$ and $z_2=1+9b=19$.

  • Thank you for your answer. Can you tell me what you did I do have the solution but I do not know how you did it. – Peter May 19 '14 at 11:21
  • Thanks again. Could you explain what g(u) is in your example :) is it z? I only know z, dx, and dz probably another way to write it down right? – Peter May 19 '14 at 11:35
  • @Peter $u$ is your $z$. So, if you prefer, $g(z)=\frac{z-1}{9}$. I changed the variable names in the answer to follow yours. – Jean-Claude Arbaut May 19 '14 at 11:37
  • Ok amazing. Well I will take a look at this thank you for your help. – Peter May 19 '14 at 11:43