How to solve int. (sqrt(x^2-1))dx

  • Thread starter beanryu
  • Start date
In summary, the best approach to solve the given integral is to use a hyperbolic trig substitution, as it avoids complicated trigonometric identities and makes the integration process simpler. Other methods such as using a complex substitution, transforming to polar coordinates, or using Euler's trick may also work, but may not be as efficient as the hyperbolic trig substitution.
  • #1
beanryu
92
0
how to solve the integral: int. (sqrt(x^2-1))dx
 
Physics news on Phys.org
  • #2
Try a http://en.wikipedia.org/wiki/Trigonometric_substitution" with x = sec.
 
Last edited by a moderator:
  • #3
A plain trig substitution makes the problem fairly hard. Try instead a hyperbolic trig sub. Hint x = cosh(u)
 
  • #4
I think trig substituion works fine. I'll start you out. Like Yann suggested, draw a right triangle with the horizontal leg being 1, the other leg [itex]\sqrt{x^2-1}[/itex] and the hypotenuse x. Then make a substitution for x, which is [tex]x=sec(\theta)[/tex]. You must replace x and dx for this integral to make a correct substitution. So now we get that [tex]dx=sec(\theta)tan(\theta)d\theta[/tex]. Plug in your values, play around with trig identities and you should be fine!
 
  • #5
integral(x^2-1)^(1/2)dx

just rewrite it like that and I think you will se how to solve it. Remember to divide with the inner derivate of the function. Unless I am missing something in the formulation of the question no variable substitution is needed.
 
  • #6
Azael, this cannot be done by u-substitution because the derivative has a 2x involved. Trig substitution, hyperbolic substitution, or some other form must be used.
 
  • #7
ohh yes your right. I se what a stupid error in thinking I did. I must blame it on the late night lol :). Nevermind my post!
 
  • #8
Jameson said:
I think trig substituion works fine. I'll start you out. Like Yann suggested, draw a right triangle with the horizontal leg being 1, the other leg [itex]\sqrt{x^2-1}[/itex] and the hypotenuse x. Then make a substitution for x, which is [tex]x=sec(\theta)[/tex]. You must replace x and dx for this integral to make a correct substitution. So now we get that [tex]dx=sec(\theta)tan(\theta)d\theta[/tex]. Plug in your values, play around with trig identities and you should be fine!
I'm sorry, but I would like a little clarification on this. I get [tex]\int{\tan^2\theta \sec\theta}d\theta[/tex] How do you integrate that "easily" ?
 
  • #9
Oops, that isn't done easily. My fault. You did the correct substitution, but for this integral there is no trig inverse in the answer, so it isn't necessary to use. I did the integral on Mathematica, and now I'm thinking by parts is the best way, with u=[itex]\sqrt{x^2-1}[/itex] and dv=1. If anyone else has a more elegant way, please speak up.
 
  • #10
The easiest way imo(now when I am fully awake lol) to solve F(x)=int. (sqrt(x^2+a))dx is to rewrite it as
F(x)=int.(1*sqrt(x^2+a))dx

Now partialy integrate over that and you get F(x)=[x*sqrt(x^2+a)]-int.((x^2+a-a)dx/sqrt(x^2+a))

With some meddling with the integral you can split it into 2 integrals. One is identical to the beginning integral(in other words its the same as F(x)) the other is quite easily solvable by a variable substitution. That way one doesn't have to use any trigonometric substitutions.
 
  • #11
Yeah, I was pretty sure a straight trig sub would get nowhere fast.

The hyperbolic sub is the fastest "elegant" way.

Substitute [tex]x = \cosh u[/tex], keeping in mind that [tex]d(\cosh u) = \sinh u du[/tex] and that [tex]\cosh^2 u - 1 = \sinh^2 u[/tex]
[tex]\int{\sqrt{x^2 - 1} dx} = \int{\sinh^2 u} du = \frac{1}{2}\int{(\cosh 2u - 1)}du = \frac{1}{2}[\frac{1}{2}\sinh 2u - u] + const = \frac{1}{2}[\sinh u \cosh u - u] + const = \frac{1}{2}[x\sqrt{x^2 - 1} - arccosh(x)] + const [/tex]

You can see from the fact that there is an inverse hyperbolic trig function in the result that a plain trig sub probably won't work.

I'll leave it as an exercise to the orig. poster to differentiate that and verify that it works out (it does).

Interestingly, there is a way to do this with normal trig, transforming into hyperbolic trig with a complex substitution.

You can quite easily evaluate [tex]\int{\sqrt{1 - x^2}}dx[/tex] with a simple substitution like [tex]x = \cos \theta[/tex] Now observe that [tex]\int{\sqrt{x^2 - 1}}dx = (i)\int{\sqrt{1 - x^2}}dx[/tex] and use the relationship between circular and hyperbolic trig in the complex plane to work it out.

This is the way I initially tried to solve the problem, but I later decided the straight hyperbolic sub was easiest. But this way helps you conceptualise the problem better and avoid mistakes like using wrong straight trig subs.
 
Last edited:
  • #12
If you have a square root and the coefficient of the x^2 term is positive then hyperbolic substitution is the best way IMO. The reason is that hyperbolic substitutions (usually) require less knowledge of integrals than when you use trigonometric substitutions. I'd much rather integrate "1" than something like tan^2(t)sec(t).
 
  • #13
I didn't look at the original integral but if after trig substitution there is a secant and a tangent squared term substitute again, secant is u du is tangent squared and it doesn't get much easier than integrating u. You could also try polar coordinates.
 
  • #14
the derivative of sec@ is sec@tan@.

[tex]\int{\tan^2\theta \sec\theta}d\theta[/tex]

nice suggestions so far, yet, the integral above is definitely managable...transform to everything to secant, distribute, and you'll have two separate integrals

[tex] \int sec \theta d \theta~and~ \int sec^3 \theta d \theta [/tex]

euler's "trick" can be applied to the first, the second is somewhat of a table integral (in that a form exist for all powers of the secant integral).
 
  • #15
omagdon7 said:
I didn't look at the original integral but if after trig substitution there is a secant and a tangent squared term substitute again, secant is u du is tangent squared and it doesn't get much easier than integrating u. You could also try polar coordinates.

Try it, show the working. It isn't as easy as you make it out to be. The integral of secant is an unwieldy log function. Differentiating tangent gives you secant^2. The product of those two is not easy to integrate. Doing it the other way is no easier.

I mean, I could be wrong here, but it just doesn't strike me as being an easy way to do the problem. I'd like you to clarify by showing the working with your method, please. :)
 
  • #16
GCT said:
the derivative of sec@ is sec@tan@.
nice suggestions so far, yet, the integral above is definitely managable...transform to everything to secant, distribute, and you'll have two separate integrals
[tex] \int sec \theta d \theta~and~ \int sec^3 \theta d \theta [/tex]
euler's "trick" can be applied to the first, the second is somewhat of a table integral (in that a form exist for all powers of the secant integral).

Again, integrating secant requires a little insight to multiply by the correct product to get it into a manageable form, but it's not that difficult. When you want to use that result and integrate by parts to integrate secant cubed, the tediousness just adds up.

I know how to do all this, it's just that it's fairly tedious and certainly harder than a simple hyperbolic sub. I never said the circ trig sub was impossible, just that it was hard. And I still think it is.

In fact, there's a math page out there with exactly this method worked out. He doesn't show a lot of intermediate steps so it looks easier than it actually is. http://www.mathreference.com/ca-int,trigsub.html

IMHO, much easier and more straightforward to use hyperbolic trig here.
 
  • #17
Curious3141 said:
Again, integrating secant requires a little insight to multiply by the correct product to get it into a manageable form, but it's not that difficult. When you want to use that result and integrate by parts to integrate secant cubed, the tediousness just adds up.
Hmmm, I don't think we should integrate any secants or integrate by parts.
[tex]\int \tan ^ 2 t \sec t dt = \int \frac{\sin ^ 2 t}{\cos ^ 3 t} dt = \int \frac{\sin ^ 2 t}{\cos ^ 4 t} d(\sin t) = \int \frac{\sin ^ 2 t}{(1 - \sin ^ 2 t) ^ 2} d(\sin t) = \int \frac{\sin ^ 2 t}{(1 - \sin t) ^ 2 (1 + \sin t) ^ 2} d(\sin t)[/tex].
Partial-fraction it gives:
[tex]\int \left( -\frac{1}{4 (\sin t + 1)} + \frac{1}{4 (\sin t + 1) ^ 2} + \frac{1}{4 (\sin t - 1)} + \frac{1}{4 (\sin t - 1) ^ 2} \right) d(\sin t)[/tex]
Not very tedious as you probably think... o:)
 
  • #18
VietDao29 said:
Hmmm, I don't think we should integrate any secants or integrate by parts.
[tex]\int \tan ^ 2 t \sec t dt = \int \frac{\sin ^ 2 t}{\cos ^ 3 t} dt = \int \frac{\sin ^ 2 t}{\cos ^ 4 t} d(\sin t) = \int \frac{\sin ^ 2 t}{(1 - \sin ^ 2 t) ^ 2} d(\sin t) = \int \frac{\sin ^ 2 t}{(1 - \sin t) ^ 2 (1 + \sin t) ^ 2} d(\sin t)[/tex].
Partial-fraction it gives:
[tex]\int \left( -\frac{1}{4 (\sin t + 1)} + \frac{1}{4 (\sin t + 1) ^ 2} + \frac{1}{4 (\sin t - 1)} + \frac{1}{4 (\sin t - 1) ^ 2} \right) d(\sin t)[/tex]
Not very tedious as you probably think... o:)
I have to say that is an excellent and insightful way to do it. I didn't see that initially. Very nice. :approve:
Of course, simplifying the result takes a bit of work, whereas the hyperbolic trig way gives you an immediately usable expression. :cool:
 
  • #19
Why are we going with partial functions when you can distribute the secants, do any of you realize that there's a specific table integral form to solve secant functions of any power? Look in the back of your calculus text and find the form, apply the form and there you go.
 
  • #20
GCT said:
Why are we going with partial functions when you can distribute the secants, do any of you realize that there's a specific table integral form to solve secant functions of any power? Look in the back of your calculus text and find the form, apply the form and there you go.

But that wouldn't be "fundamental" or "from first principles" or whatever you want to call it. It's nice to know how it's being done.:smile:
 

FAQ: How to solve int. (sqrt(x^2-1))dx

How do I solve the integral of sqrt(x^2-1)dx?

The integral of sqrt(x^2-1)dx can be solved using the substitution method. Let u = x^2 - 1, then du = 2xdx. Substituting these values into the integral, we get 1/2 * integral of sqrt(u)du. This can be solved using the power rule for integrals, giving us 1/3 * u^(3/2) + C. Substituting back in for x, we get the final answer of (1/3)(x^2 - 1)^(3/2) + C.

Can the integral of sqrt(x^2-1)dx be solved using any other method?

Yes, the integral can also be solved using trigonometric substitution. Let x = sec(theta), then dx = sec(theta)tan(theta)d(theta). Substituting these values into the integral, we get integral of tan(theta)sec(theta)^2d(theta). This can be solved using the u-substitution method, giving us 1/3 * sec^3(theta) + C. Substituting back in for x, we get the final answer of (1/3)(x^2 - 1)^(3/2) + C.

Is there a specific range of values for x in which the integral of sqrt(x^2-1)dx can be solved?

Yes, the integral can only be solved for x values greater than or equal to 1. This is because if x is less than 1, the expression inside the square root will be negative, making the integral undefined.

How do I check if my solution for the integral of sqrt(x^2-1)dx is correct?

You can check your solution by taking the derivative of your answer. If the derivative equals the original integrand, then your solution is correct. You can also use online integral calculators to verify your answer.

Are there any real-world applications for solving the integral of sqrt(x^2-1)dx?

Yes, the integral of sqrt(x^2-1)dx has applications in physics, particularly in calculating the work done by a conservative force. It is also used in calculating the arc length of a curve in calculus.

Similar threads

Replies
5
Views
2K
Replies
5
Views
2K
Replies
44
Views
5K
Replies
22
Views
2K
Replies
54
Views
10K
Replies
6
Views
571
Back
Top