Hi everyone,
I am trying to evaluate this limit (actually the limit of a complicated expression containing this actan function):
Limit[ArcTan[(s + r Cos[\[Phi]])/Sqrt[
a^2 - r^2 - s^2 - 2 r s Cos[\[Phi]]]] ,
s -> (-r Cos[\[Phi]] + Sqrt[
a^2 Cos[\[Phi]]^2 + (a - r) (a + r) Sin[\[Phi]]^2]),
Direction -> "FromBelow"]
which is related to some integrals inside a circle of radius a. Anyway, when I set these assumptions:
assumptions = {0 < a < r};
Limit[(s + r Cos[\[Phi]])/Sqrt[a^2 - r^2 - s^2 - 2 r s Cos[\[Phi]]],
s -> (-r Cos[\[Phi]] + Sqrt[
a^2 Cos[\[Phi]]^2 + (a - r) (a + r) Sin[\[Phi]]^2]),
Direction -> "FromBelow", Assumptions -> assumptions]
gives the result:
DirectedInfinity[Sign[2 a^2 - r^2 + r^2 Cos[2 \[Phi]]]^(1/4)]
The region I am interested is where the part inside Sign function is positive, so this will just equals to positive infinity. So I thought this code will work:
assumptions = {0 < a < r, 2 a^2 - r^2 + r^2 Cos[2 \[Phi]] > 0};
Limit[(s + r Cos[\[Phi]])/Sqrt[a^2 - r^2 - s^2 - 2 r s Cos[\[Phi]]],
s -> (-r Cos[\[Phi]] + Sqrt[
a^2 Cos[\[Phi]]^2 + (a - r) (a + r) Sin[\[Phi]]^2]),
Direction -> "FromBelow", Assumptions -> assumptions]
On my computer, this code runs for half an hour and did not give any output. I am wondering if there is any simple way to tell Mathematica to ignore the directed infinity thing and just treat it like positive infinity?
Thanks in advance!