Use the Newton Method and find all of the x-intercepts of the function: $$f(x)=x^3-4x^2+1$$
The Newton Method to finding the x-intercept is:
$$x_{i+1}=x_i - \frac{f(x_i)}{f'(x_i)}$$
Step $1$: $$f(0)=(0)^3-4(0)^2+1=1 < 0$$ $$f(1)=(1)^3-4(1)^2+1=-2 > 0$$ Thus: $$\frac{0+1}{2}=0.5=x_1$$
Step $2$: $$f(0.5)=0.125$$ $$f'(0.5)=-3.25$$ $$x_2=0.5- \frac{0.125}{-3.25}=0.5285$$
Step $3$: $$f(0.5285)=-0.00377...$$ $$f'(0.5285)=-3.43805325...$$ $$x_3=0.5285 - \frac{-0.00377...}{3.43805325...}=0.53740...$$
It's fair to say that $x \approx 0.53740...$. However, from the Fundamental Theorem of Algebra we know that $f(x)$ should have $2$ more x-intercepts. How can I find those?

You're going to have find out where else the function switches sign. The newton method for finding intercepts basically takes you to the closest intercept your initial point was at. So find out where else the function switches sign and repeat what you did here. It's a tad tedious but that's how it is sometimes.