$$f(x) = \sqrt{x}$$
has to be approximated by polynomial interpolation $p(x_n) = f(x_n)$ with the positions $\{x_n\} = \{1,4\}$. For such problem which method is the fastest? And find $p(2)$.
My attempt:
Newton's Method:
$p(x) = x_{n+1} = x_n + \frac{g(x_i)}{g'(x_n)}$
where $g(x) = x^2 - 1$
then we can find the roots of the given number. But I'm not sure if its the fastest way to calculate the square roots.
Thanks.