Determine the polynomial function whose graph passes through the points (2, 4), (3,6) and (5,10). Also sketch the graph of the polynomial function. (Using Cramers Method).
1
Expert's answer
2020-12-15T19:42:33-0500
we have three points so we use second polynomial fitting like that
p(x)=a+bx+c2
the points are (2, 4); (3, 6) and (5, 10).
y1=ax12+bx1+c
y2=ax22+bx2+c
y3=ax32+bx3+c
The task is to find a, b and c. Start by substituting each of the points into the equation, we have
4 = a(2)2 + b(2) + c;
6 = a(3)2 + b(3) + c;
10 = a(5)2 + b(5) + c;
We can write this more compactly as a matrix equation
Comments