I am aware that this is a very simple question, but your opinion would help me a lot. In a wider context, in a text, I have to distinguish between polynomials written in two different forms. For example, linear function can be written as:
(a) $$f(x) = \frac{x-x_{i+1}}{x_i-x_{i+1}} f_i +\frac{x-x_{i}}{x_{i+1}-x_{i}} f_{i+1}$$
or as
(b) $$f(x) = f_i + \frac{f_{i+1} - f_i}{x_{i+1} - x_i}(x - x_i)$$
i.e. $f(x) = a_0 + a_1 (x - x_0)$ or $f(x) = a_0 + a_1 (x - x_0) + a_2 (x - x_0)^2$ for parabola and so on. The former, (a), I'm calling the Lagrange form. How would you call the latter? Is it fair to call it "Taylor's form"?
In General, I think its best to distinguish based on behavior. What information do the forms accentuate differently?
– Travis Mar 02 '23 at 16:39