I am looking at a solution to a problem which asks us to find an interval $[-a,a]$ on which, if we approximate $\ln(1+x)$ near $x=0$ by using the third degree Taylor Polynomial $\ln(1+x) \approx x - \frac{x^{2}}{2} + \frac{x^{3}}{3}$, we will have succeeded in doing so accurately to within $0.0001$.
In order to tackle this problem, we would need to look at the next higher order term, $f^{(4)}(x) = -\frac{6}{(1+x)^{4}}$ and then apply the Lagrange Error Bound formula: $E_{3}(x) \leq \frac{M}{4!}|x-a|^{4}$ where $M$ is some value satisfying $|f^{4}(x)|\leq M$ on the interval between $a$ and $x$.
The solution to this problem says that
"for $|a|<1$, the maximum of $|f^{(4)}(x)|$ is at $x = -a$, so $|f^{(4)}(x)|\leq\frac{6}{(1-a)^{4}}$".
Could someone please explain to me (1) where they got that $|a|$ must be $< 1$, and (2) how this tells us that the maximum of $|f^{(4)}(x)|$ occurs at $x = -a$ (I guess it tells us that $|f^{(4)}|$ is decreasing - but how?).?
I thank you in advance.