I was wondering if NR is the fastest method to find a root if all we know about a function is how to evaluate it and its derivative at any point.
Since you can use the first derivative to approximate the second I was wondering if this lets you converge on a root faster (as in $\epsilon_{n+1} \approx \epsilon_n ^3$)?
I came across an answer to my own question, as detailed in the linked article the following modification of Newton-Raphson does indeed only use the first derivative and converges cubically: https://www.sciencedirect.com/science/article/pii/S0377042703003911
$x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n - \frac{f(x_n)}{2f'(x_{n})})}$