I have found a really interesting solution for interpolating cosh. First, the solver chooses the number of nodes, then, calculates Chebyshev polynomial roots on the desired interval, then finds the approximation using Lagrange construction of the polynomial. And then follows this method.
Let $\phi_1$ be the Lagrange polynomial the solver found before.
The solver began to calculate other $\phi$'s according to this recursive formula:
$$\phi_{i+1}(t) = 2\cdot\phi_i\bigg(\frac{t}{2}\bigg)^2-1$$
After he reached $\phi_7$, he stopped, I think because he reached the desired precision. And then he wrote the resulting interpolation as follows:
$$ \phi(t) = \begin{cases} \phi_7(-t), \space t<0 \\ \phi_7(t), \space t ≥0 \end{cases} $$
Of course this could be done because cosh is y-axis symmetrical and continuos in 0.
So my question is : what is the name of this method, and is it possible to apply it to other symmetrical functions except cosh.