I have a small problem
Calculate a polynomial function $g$ with integer coefficient that has $\sqrt[3]{28}$ as a root, and then use the Newton-Raphson method with $c_0=3$ to calculate $c_1$.
I now the Newton-Raphson method$$x_{n+1}=x_n-\dfrac{f(x_n)}{f'(x_n)}$$ But don't understand how to solve this using it. Any help would be appreciated.