1

I am trying to show that $\int_{a}^{b} \frac{f'(x)}{f^2(x)} dx = \frac{f(b) -f(a)} {f(a) f(b)}$ given that $f(x)$ is, continuous in $[a,b]$, differentiable in $(a,b)$ and $f(x) \neq 0$ in $[a,b]$.
New Edit : i have understood my doubt answer from this post https://math.stackexchange.com/a/470460/961436 , but now a question arise is if we are asked to show the proof of the above integration, we will take help of fundamental theorem of calculus with compositon rule ?like as done in there , because otherwise if i do like what i was taught as in below old method of mine it would cause confusion that whether i was supposing it to be injective or not ? Or the below proof is fine in its own way ? ,

My steps: I was taught this method so I am writing this down letting $f(x) = t$ we have $f'(x)dx=dt$ substituting this in the integrand and changing the limits we arrived at $\int_{f(a)}^{f(b)} \frac{1}{t^2} dt$ which by knowing that $\int x^ndx$ = $\frac{x^{n+1}}{n+1} + C$ gives the required result. My query is in the substitution used, as such we want the integration when $x$ goes from $a$ to $b$, so we need to integrate at all possible values of $x$ lying between $a$ and $b$, but how are we sure that the substitution will give the same range of $x$ for which the integral is being evaluated, its not given as such that $f(x)$ is injective in $[a,b]$ so how can we do such substitution? Or this approach is not correct therefore?

  • Like the case of $f(x) = (x-2) ^2 + 1 $, from $[1,4]$, we can observe its not injective at all, but still the integration of $\frac{2(x-2)}{({x-2})^2 + 1 }$ integrated from $1$ to $4$, gives the correct answer as $0.3$, I am not gettting at all why as such.
  • This may help: https://math.stackexchange.com/questions/470411/why-should-the-substitution-be-injective-when-integrating-by-substitution – Gary May 18 '22 at 05:43
  • @Gary thats what i am asking , i know that injective needs to be satisfied bur still its not being satiafied in the method by which we are deriving the result here – Paracetamol May 18 '22 at 05:57
  • Can you show as a answer to that in the above case of f(x) example i took via both the intervals approach and the wrong approach and telling why its always seems to working in this type of f'(x) /f(x)^2 form the wrong method ? @KurtG. sir ( the method which i was showed by someone ) – Paracetamol May 18 '22 at 05:58
  • 1
    @Paracetamol I was refering to the answers there, but see also https://math.stackexchange.com/q/2518470 – Gary May 18 '22 at 06:04
  • Nice answers there thanks @Gary – Paracetamol May 18 '22 at 13:08
  • Yeah even i thought same @KurtG. But it seems not too obvious too why both gives same , , althought would you always suggest me to only give injective the better credit compared to any other substitutions? – Paracetamol May 18 '22 at 13:09
  • @Paracetamol . Reading this answer clears it nicely up. Esp. the last sentence. It boils down to $f$ does not have to be injective but the new integration bounds are easier to write down when it is. I will have to delete a few comments here so that nobody gets the wrong impression that injectivity is required. Every time I am on MSE I learn something new. – Kurt G. May 18 '22 at 17:03
  • Wonderful answer thanks Sir @KurtG. , Just one thing the g function should be integrable i mean even though G' = g , but it needs to be bounded so as to get it integrable right ? – Paracetamol May 21 '22 at 06:41
  • Integrable yes. But we have lots of unbounded $g$'s that are integrable. I am not a big theoretician. Take $g(x)=1/\sqrt{x}$ and $\int_0^1g(x)dx$ and see how far you get with Chrisitan Blatter's wonderful answer. – Kurt G. May 21 '22 at 06:50
  • I see thanks Sir – Paracetamol May 21 '22 at 09:29
  • 1
    Use $$\frac{\mathrm d}{\mathrm dx}\frac{-1}{f(x)}=\frac{f'(x)}{f(x)^2}$$ – K.defaoite May 21 '22 at 13:07

1 Answers1

2

There are two parts to the Fundamental Theorem, the second one (according to p.384 of Stewart's Calculus 6E) states:

"If $f$ is continuous on $[a,b]$, then $$\int_a^bf(x)dx = F(b)-F(a)$$ where $F$ is any antiderivative of $f$, that is, a function such that $F'=f$."

We want to show: $$\int_a^b\frac{f'(x)}{f^2(x)}dx = \frac{f(b)-f(a)}{f(a)f(b)}.$$ given the assumptions that $f$ is continuous on $[a,b]$, differentiable on $(a,b)$ and nonzero.

These technical assumptions give us that the integrand is continuous on $[a,b]$ (as it is the quotient of nonzero continuous functions). Hence we should expect the RHS to be in terms of an antiderivative.

Guessing the form: $$F(x):= \frac{f(x)-f(x_0)}{f(x_0)f(x)}$$ (for some fixed $x_0\in [a,b]$) we may deduce that: $$F(b)-F(a) = \frac{f(b)-f(x_0)}{f(x_0)f(b)} - \frac{f(a)-f(x_0)}{f(x_0)f(a)} = \frac{f(b)-f(a)}{f(a)f(b)}.$$ If we can show this guess is actually an antiderivative, the theorem provides the equality and we're done.

Accordingly, $$F'(x) = \frac{d}{dx}\bigg[\frac{f(x)-f(x_0)}{f(x_0)f(x)}\bigg] = \frac{d}{dx}\bigg[\frac{1}{f(x_0)} - \frac{1}{f(x)}\bigg]$$ $$ = \frac{d}{dx}\bigg[\frac{1}{f(x_0)}\bigg] - \frac{d}{dx}\bigg[\frac{1}{f(x)}\bigg] = 0 - \bigg[\frac{-1}{f^2(x)}\cdot f'(x)\bigg] = \frac{f'(x)}{f^2(x)},$$ by linearity of $\frac{d}{dx}$, the power rule and chain rule. $\blacksquare$

Kevin
  • 990
  • 4
  • 16