我无法确定最小等级的多项式插值

I can't determine the polynomial interpolation with the minumum grade

我必须通过以下方式限制它: P(-1) = f(-1), P(0)=f(0), P(1)=f(1), P'(1)=f'(1)

令多项式为

ax³ + bx² + cx + d

根据给定的方程,

- a + b - c + d = f(-1)
              d = f(0)
  a + b + c + d = f(1)
 3a +2b + c     = f'(1)

你应该可以解决。