I was looking at the Newton's method at Wikipedia, and it is said that the equation of the tangent line to the curve $y = f(x)$ at $x = x_n$ is
$$y = f'(x_n) (x - x_n) + f(x_n)$$
The usual equation of a line is
$$y = m x + b$$
where $m$ is the slope, that is $\frac{\Delta y}{\Delta x}$, and $b$ is the "height" from where the line starts. I understand that $f'(x_n)$ is the slope of the tangent line (by definition), but why is it multiplied by $(x - x_n)$?
Well as $m=f'(x_n)$ you get an equation $y = f'(x_n)x + b$.
Then you need to choose $b$ such that the line goes through $(x_n, f(x_n))$. If you choose $b = $f(x_n) - f'(x_n) x_n$ you achieve exactly that, and then we get:
$$y=mx+q = f'(x_n) x +f(x_n)-f'(x_n)x_n = f'(x_n)(x-x_n) + f(x_n)$$