I am currently trying to find a good method of numerically calculating values of the $\ln(x)$ function, without use of methods like Taylor series. My main idea so far would be to use the fact that: $$\int_1^x\frac 1udu=\ln(x)$$ and calculate the value of this integral numerically using Trapezium rule etc. As an extension of this using alternative series I thought about expressing the function as a Riemann integral.
One other possible thought I had was using the fact that if: $$f(x)=\ln(x),\,f^{-1}(x)=e^x$$ and so I can say that: $$y=\ln(x)\Rightarrow e^y-x=0$$ and solve this using something like Newton-Raphson for $y$, However this would require a good approximation for the exponential function.
Any other thoughts would be great!