I have a (very-likely) 4-grade function, and I know all the values, but I am having problems to find the formula of the function itself.
The number without the x is a one for sure.
The functions points are:
(0 | 1)
(1 | 9)
(2 | 41)
(3 | 129)
(4 | 321)
(5 | 681)
(6 | 1289)
I have been calculated with the following starting-grid:
$$ \begin{cases} a + b + c + d + 1 = 9\\ 16a + 8b + 4c + 2d + 1 = 41\\ 81a + 27b + 9c + 3d + 1 = 129\\ 256a + 64b + 16c + 4d + 1 = 321\\ \end{cases} $$
I came to a = $2\over3$, b = $4\over3$, c = $16\over3$, d = $2\over3$, yet it's another function.
I have over 2 pages of calculations and handwriting only I can read, so my question is: Can I calculate it much faster/ simpler/ cleaner? - Checking through every addition to find one mistake just seems lame.
Is there an online (free) calculator for stuff like these?
PS. Be nice to add the tag find-formula :)
In the comment section of the answer I found the
interpolating polynomial {{0,1},{1, 9},{2, 41},{3, 129},{4, 321},{5, 681},{6, 1289}}method for wolfram alpha. The solution is$$2 x^4 + 4 x^3 + 10 x^2 + 8 x + 3 \over 3$$
so a, b, c and d are equivalently $2\over3$, $4\over3$, $10\over3$, $8\over3$