Can someone explain to me how to solve the integral \begin{align*} \int_0^1 \sqrt{\log\left(\frac{1}{2x}+1\right)}\mathrm{d} x \end{align*}
I know it is finite by simulation in R
fun <- function(x) sqrt(log(1+1/(2*x)))
integrate(fun, 0, 1)
0.9304908 with absolute error < 5.4e-07
by I also would like to solve it with pen and paper :) Thanks for your help!