Integral of 1/(sqrt(abs(x^2-1))) dx
The solution
The answer (Indefinite)
[src]
// ___ \
|| pi*\/ 2 *asin(x) | 2| |
/ || --------------------- for |x | < 1|
| || Gamma(1/4)*Gamma(3/4) |
| 1 || |
| ------------- dx = C + |< ___ ____ __1, 2 /1, 1 3/4 | 2\ |
| __________ ||\/ 2 *\/ pi */__ | | x | |
| / | 2 | || \_|3, 3 \1/2 3/4, 0 | / |
| \/ |x - 1| ||---------------------------------------- otherwise |
| || 2 |
/ \\ /
∫∣x2−1∣1dx=C+⎩⎨⎧Γ(41)Γ(43)2πasin(x)22πG3,31,2(1,1214343,0x2)forx2<1otherwise
The graph
1
/
|
| / 1 2
| |------------ for -1 + x >= 0
| | _________
| | / 2
| |\/ -1 + x
| < dx
| | 1
| |----------- otherwise
| | ________
| | / 2
| \\/ 1 - x
|
/
0
0∫1{x2−111−x21forx2−1≥0otherwisedx
=
1
/
|
| / 1 2
| |------------ for -1 + x >= 0
| | _________
| | / 2
| |\/ -1 + x
| < dx
| | 1
| |----------- otherwise
| | ________
| | / 2
| \\/ 1 - x
|
/
0
0∫1{x2−111−x21forx2−1≥0otherwisedx
Integral(Piecewise((1/sqrt(-1 + x^2), -1 + x^2 >= 0), (1/sqrt(1 - x^2), True)), (x, 0, 1))
Use the examples entering the upper and lower limits of integration.