According to wikipedia's description, the Newton's method finding a root presumes a differentiable function. Then, will it fail when encountering non-differentiable function? For example, can it find the zero-crossing point of a one-dimensional piecewise linear function?
I have found that this is actually an active topic in modern Operation Research or related domains (e.g., see the paper "a nonsmooth version of Newton method" by L. Qi & J. Sun and the papers citing it therein).
Newton's method is an iterative procedure, generating a sequence of numbers $\{x_0, x_1, \dots\}$. In each case, we finding where the tangent line to the graph of the function at $(x_n, f(x_n))$ meets the $x$-axis in order to find $x_{n+1}$.
In many situations, this sequence converges to a root, but it can fail if
We cannot guarantee that Newton's method will fail for a piecewise linear function, but it could.