Consider the following problem $$y' = \ln\ln(4+y^2), \quad x\in[0,1], y(0)=1$$ We can formulate the problem the approximate the solution $$y_{n+1} = y_n + h \ln \ln(4+y_n^2), \qquad n = 0,1,...,N-1, \quad y_0 = 0$$ with mesh points $x_n = nh$. I am tasked with finding the truncation error. Now considering a Taylor series we find that $$|T_n|\leq \frac{h}{2!}|(\ln\ln(4+\xi^2))'| \quad \xi \in (x_n,x_{n+1})$$
Now $$\ln\ln(4+y^2)' = \frac{d}{dy}\ln\ln(4+y^2) = \frac{2y\ln\ln(4+y^2)}{\ln(4+y^2)(4+y^2)} \leq \frac{2y}{4+y^2} \leq 1/2$$
$$\therefore |T_n| \leq \frac{h}{4}$$
Is this the correct way to go about obtaining this?