How to integrate x^2/(1+x^2)

  • Thread starter Thread starter sckeen1988
  • Start date Start date
  • Tags Tags
    Integral
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
sckeen1988
Messages
15
Reaction score
0
1. The Problem comes down to what I think is a fairly simple integral, I just can't figure it out.

int(x^2/(1+x^2)

I know this is x-arctan(x)+c, but cannot figure out how.

I tried subbing in u for x^2, this didn't really help me with a direction to take though.
 
Physics news on Phys.org
if you ever see a [itex]1+x^2[/itex] you should imediately think to yourself TRIG SUBSTITUTION!

What relation do you know between [itex]sin^2[/itex] and [itex]cos^2[/itex]?

I'd start there
 
sckeen1988 said:
1. The Problem comes down to what I think is a fairly simple integral, I just can't figure it out.

int(x^2/(1+x^2)

I know this is x-arctan(x)+c, but cannot figure out how.

I tried subbing in u for x^2, this didn't really help me with a direction to take though.


First, write f(x) = x^2/(1+x^2) as f(x) = (x^2 + 1 - 1)/(1+x^2) = 1 - 1/(1+x^2), so
int(f(x)) = x - int(1/(1 + x^2)) The expression 1 + x^2 cries out for the substitution x = tan(t).

RGV
 
Ray Vickson said:
First, write f(x) = x^2/(1+x^2) as f(x) = (x^2 + 1 - 1)/(1+x^2) = 1 - 1/(1+x^2), so
int(f(x)) = x - int(1/(1 + x^2)) The expression 1 + x^2 cries out for the substitution x = tan(t).

RGV

ANGER! I knew I was forgetting something really easy, like adding and subtracting one. Thanks for the help