The given equation is \(x^4 - x - 10 = 0\). We need to find the positive root using the Newton-Raphson method. This method is an iterative numerical technique to find successively better approximations to the roots (or zeroes) of a real-valued function.
The Newton-Raphson formula is given by: \(x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}\)
Here, we first need to determine the function \(f(x)\) and its derivative \(f'(x)\):
We start with an initial guess \(x_0\). Let's take \(x_0 = 2\) (since value is near to root), and apply the Newton-Raphson formula:
The obtained value of \(x_1\) is 1.871, which matches with one of the given options as the positive root of the equation. Checking this using the options:
Thus, the positive root of the equation \(x^4 - x - 10 = 0\) using the Newton-Raphson method is 1.871.