Thursday, August 9, 2018

functions - About integration by substitution



I know how the method goes: we want to find f(g(x))g(x)dx, which by the reverse chain rule equals f(u)du. My (maybe stupid) question comes from the integrals with the form



Ax+B(x+α)2+β2.



The explanation given in class was that, in order to solve it, you have to substitute x+α with βy, but how do you know that the original fraction does actually have the structure needed to be able to use the substitution method? Don't you have to determine first if it has the form of f(g(x)g(x)dx to justify the change?



EDIT: I overcomplicated the question, sorry. What I'm trying to say is that, most of the time, the substitution is done directly, without justifying that the original expression has the form of f(g(x))g(x)dx (and, therefore, the reverse chain rule applies), and I was wondering why. Is it because all expressions can be put so as to acquire that form?



Answer



The nice thing about the substitution y=x+αβ is that it's a linear substitution, and linear substitutions can always be made neatly. There is a nice shorthand using differentials that we use when making substitutions. We start by differentiating:
dydx=1βdx=βdy,


then we substitute into the integral:
Ax+B(x+α)2+β2dx=A(βyα)+B(βy)2+β2βdy.

We can still rigidly apply the formula provided. In this case, we wish to make g(x)=x+αβ. Then g(x)=1β. We can then write,
Ax+B(x+α)2+β2dx=Ax+B(x+α)2+β2βg(x)dx.

All we have to do is find a function f such that
f(g(x))=f(x+aβ)=Ax+B(x+α)2+β2β

for all x. To find such an x, take the above equation, and substitute into both sides x=βyα, giving us,

f(y)=A(βyα)+B(βy)2+β2β.

Using this definition of f, we have,
f(g(x))g(x)dx=Ax+B(x+α)2+β2dx,

which implies, taking u=g(x)=x+αβ, the integral is equal to,
f(u)du=A(βuα)+B(βu)2+β2βdu.



We get the same answer, and hopefully you can see how the steps mirror each other. It's just that the shorthand is a lot quicker to deal with.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...