How can I simplify this integral with trigonometric functions involved?

  • Context: Undergrad 
  • Thread starter Thread starter ls_boy
  • Start date Start date
  • Tags Tags
    Integral
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
ls_boy
Messages
2
Reaction score
0
I'm trying to understand this integral.

[itex]\int \frac {x^3 dx}{x^4 + 1}dx\\[/itex]

One possible answer is this formula.
[itex]\int \frac {dx}{x}dx = \ln |x|+ C\\[/itex]

I've seen a couple of other formulas where if [itex]x^2 + a^2[/itex] is a part of the integrand
than trigonometric functions become part of the end formula. There are too many
formulas to choose from.
 
Last edited:
Physics news on Phys.org
The key here is finding the proper substitution

[itex]u = x^{4}+1[/itex]

[itex]du = 4x^{3}dx[/itex]

sub in

[itex]\displaystyle\frac{1}{4}\int \frac{du}{u}[/itex]

[itex]\displaystyle\frac{\ln u}{4}+c[/itex]

re-sub

[itex]\displaystyle\frac{\ln (x^{4}+1)}{4}+c[/itex]
 
saminator910 said:
The key here is finding the proper substitution

[itex]u = x^{4}+1[/itex]

[itex]du = 4x^{3}dx[/itex]
There are other ways to solve this problem. Yours happens to be the easiest.

For example, you could start with the u-substitution ##u=x^2##. With this, the integral becomes ##\int \frac {x^3}{x^4+1}\,dx = \frac 1 2 \int \frac{u}{u^2+1}\,du##. From here, you could recognize that this is of the form ##\int \frac {dx}{x}## and get the same result as you did (but with an extra step).

Let's say one recognized this as instead needing a trig substitution. The ##u^2+1## denominator suggests using ##u = \tan \theta##. With this, the integral becomes ##\int \frac{u}{u^2+1}\,du = \int \frac{\tan \theta}{\tan^2\theta+1}\sec^2\theta\,d\theta = \int \tan\theta \,d\theta##. Some people will immediately recognize that as being ##-\log(\cos\theta)##. For those that don't know this off the top of their heads, they'd have to finally recognize that ##\int \tan\theta \,d\theta = \int \frac{\sin \theta}{\cos\theta}\,d\theta## is of the form ##\int \frac {dx}{x}##.

Now you have to substitute back so the integral is expressed in terms of ##u## rather than ##\theta##, and then in terms of ##x## rather than ##u##. Eventually you'll get ##\log(x^4+1)/4## as the result, the same result as the easy route. But getting there by this trig route is a lot more torturous than recognizing the easy form right off the bat.
 
A trick that you should certainly remember is

[tex]\int \frac{f^\prime(x)}{f(x)}dx = \log|f(x)| + C[/tex]

This is easily proven by differentiating the RHS.

It will make your life simpler in many occasions (including now), and sometimes it is the only way to solve the problem!

Of course, this comes down to what the previous posters have said, but it's still a good trick to know.