How to Specify an Interval in Mathematica for the Integrate Function?

  • Thread starter Thread starter BCox
  • Start date Start date
  • Tags Tags
    Mathematica
BCox
Messages
16
Reaction score
0
Hello:

I would like to use Mathematica Integrate function. But how do I specify the following interval

(0 , Pi/2 ]

?

When I write

L \[Element] (0, Pi/2]

It simply bolds ( and ] in orange in error.

How do I get Mathematica to recognize that for the integrand, my value L is in (0, Pi/2]?
 
Physics news on Phys.org
Try this:

Code:
Assuming[{L>0&&L<=pi/2},Integrate[...]]
 
i don't understand how including 0 in your integration would change the answer anyhow.. its an integration!
 
elduderino said:
i don't understand how including 0 in your integration would change the answer anyhow.. its an integration!

I don't think he is integrating over L. I think L is a parameter that occurs in the integrand, and its value affects whether the integral converges, and to which value.

A simple example is the integral

\int_0^{\infty}e^{-kx}dx[/itex]<br /> <br /> which only converges for k&amp;gt;0
 
gabbagabbahey said:
I don't think he is integrating over L. I think L is a parameter that occurs in the integrand, and its value affects whether the integral converges, and to which value.

A simple example is the integral

\int_0^{\infty}e^{-kx}dx[/itex]<br /> <br /> which only converges for k&amp;gt;0
<br /> <br /> Yes, exactly. L pertains to the integrand.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top