I'm currently working on Newton's Method, and my instructor gave four instances where Newton's Method will fail.
(A) Newton's method converges to another solutions x=b such that f(b)=0 instead of converging to the desired solution x=a.
(B) Newton's method eventually gets into the never ending cycle, bouncing between the same two approximations $x_i$ and $x_{i+1}$.
(C) Eventually, each next approximation $x_{i+1}$ falls further from desired solution $x_a$ than the previous approximation $x_i$ determined by the Newton's method.
(D) Newton's method is not able to find the next approximation $x_{i+1}$ because f'($x_i$)=0 or f'($x_i$) Does Not Exist.
However, there aren't any examples of when this happens. Would anyone be willing to provide examples of these instances?