xn+1 = xn - f(xn)/f'(xn)
f(x) = x5-x-7 f'(x) = 5x4-1
Usually, you start with guess x0 and n is the iteration number. I will do the first iteration:
x2 = 1 - (-7)/4 = 2.75
This is not a good example of the power of Newton-Raphson. It does need a good guess if the function increases sharply. This iteration takes you farther from the root.