I'm learning about Newton's Method via this text:
How is the point slope method being used? Why are we subbing $x_2$ and 0 in the wrong places in this equation:
$$0 - f(x_1) = f'(x_1)(x_2 - x_1)$$
Is the author just subbing in a point for the point-slope equation of a line? Because from what I see, the point slope form of a line uses the slope and plugs in the given point in the 2nd positions:
https://www.mathsisfun.com/algebra/line-equation-point-slope.html

If $(x_a, y_a) $ and a point on a line and the slope is $m$ the line formula is
$y - y_a = m(x - x_a)$.
So here $m = f'(x_1)$ and $(x_1, f(x_1))$ is one point on the line so
$y - f(x_1) = f'(x_1)(x - x_1)$
is the equation of the line.
So if $(w, v)$ is a point on the line, it's satisfy the equation we'd get if we plugged in $y = v$ and $x = w$ and get
$v - f(x_1) = f'(x_1)(w - x_1)$
Now we want to plug in the $x$ intercept $(x_2, 0)$.
So $y = 0$ and $x = x_2$ and we plug them in:
So $0 - f(x_1) = f'(x_1)(x_2 - x_1)$.