Necesito ayuda para encontrar los valores numéricos a la precisión, al menos, $50$ dígitos (las formas cerradas, si es posible) para las siguientes integrales
\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}
y
\begin{equation} {\large\mathscr{I}}=\int_0^{\Large\frac{\pi}{2}}\cot\left(\frac{\cot x}{2}\right)\cot x\ dx\\ \end{equation}
De alguna manera, mi Mathematica $9.0$ no pudo encontrar los valores numéricos. Se mostraba mensajes de advertencia como estos:
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. >>
o
NIntegrate::ncvb: NIntegrate failed to converge to prescribed accuracy after 9 recursive bisections in x near {x} =
Puedo usar este código para obtener el valor numérico de la integral (tal vez usted tiene un mejor código que desee compartir conmigo)
N[Integrate[(integrand), {x,a,b}], (digits precision)]
Estoy interesado en conocer los valores numéricos de a ${\large\mathscr{F}}\left(\alpha,\beta,\mu\right)$ para los valores específicos de las variables siguientes: \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} Cualquier ayuda sería muy apreciada. Gracias.
Editar :
Según lo solicitado por el Señor Amzoti, he utilizado este código (yo uso los valores de ejemplo no. $1$ en la tabla)
N[Integrate[Tan[x] ArcTan[3 Tan[Tan[x]]] - Tan[x] ArcTan[2 Tan[Tan[x]]],{x,0,Pi/2}], 50]