I need help to find the numerical values to the precision at least $50$ digits (the closed forms if possible) for the following integrals
\begin{equation} {\large\mathscr{F}}\left(\alpha,\beta,\mu\right)=\int_0^{\Large\frac{\pi}{2}}\bigg[\tan x\arctan\big(\beta\tan (\mu\tan x)\big)-\tan x\arctan\big(\alpha\tan (\mu\tan x)\big)\bigg]\ dx\\ \end{equation}
and
\begin{equation} {\large\mathscr{I}}=\int_0^{\Large\frac{\pi}{2}}\cot\left(\frac{\cot x}{2}\right)\cot x\ dx\\ \end{equation}
Somehow, my Mathematica $9.0$ failed to find the numerical values. It showed up warning messages like these:
NIntegrate::slwcon: Numerical integration converging too slowly; suspect one of the following: singularity, value of the integration is 0, highly oscillatory integrand, or WorkingPrecision too small. >>
or
NIntegrate::ncvb: NIntegrate failed to converge to prescribed accuracy after 9 recursive bisections in x near {x} =
I use this code to obtain the numerical value of an integral (perhaps you have a better code that you might want to share with me)
N[Integrate[(integrand), {x,a,b}], (digits precision)]
I am interested in knowing the numerical values of ${\large\mathscr{F}}\left(\alpha,\beta,\mu\right)$ for the specific values of the following variables: \begin{array}{|c|c|c|c|} \hline \text{No.} & \alpha & \beta & \mu \\[7pt] \hline 1 & 2 & 3 & 1 \\[7pt] \hline 2 & 3 & 5 & 2 \\[7pt] \hline 3 & \frac{3}{2} & 2 & \frac{1}{2}\\[7pt] \hline 4 & \frac{4}{3} & \frac{5}{3} & \frac{1}{3}\\[7pt] \hline 5 & \frac{5}{4} & \frac{3}{2} & \frac{1}{4}\\[7pt] \hline \end{array} Any help would be greatly appreciated. Thank you.
Edit :
As requested by Mr. Amzoti, I used this code (I use example values no. $1$ in the table)
N[Integrate[Tan[x] ArcTan[3 Tan[Tan[x]]] - Tan[x] ArcTan[2 Tan[Tan[x]]],{x,0,Pi/2}], 50]
Integrate[..., WorkingPrecision->100]
. – pshmath0 Nov 11 '14 at 09:55