← Back to Index
Research & Engineering Archive

Calculus A1. Polynomial Interpolation

By Jingnan Huang · January 13, 2025 · 721 Words

Last Edit: 1/13/25

Polynomial Interpolation
#

L_2(x) := \begin{cases} 0, & \text{if } x = -1 \ 1, & \text{if } x = 1 \ 0, & \text{if } x = 2, \end{cases}

L_3(x) := \begin{cases} 0, & \text{if } x = -1 \ 0, & \text{if } x = 1 \ 1, & \text{if } x = 2. \end{cases} $$

ex.
#

L_2(x) := \begin{cases} 0, & \text{if } x = x_1 \ 1, & \text{if } x = x_2 \ 0, & \text{if } x = x_3 \ 0, & \text{if } x = x_4, \end{cases}

L_3(x) := \begin{cases} 0, & \text{if } x = x_1 \ 0, & \text{if } x = x_2 \ 1, & \text{if } x = x_3 \ 0, & \text{if } x = x_4, \end{cases}

L_4(x) := \begin{cases} 0, & \text{if } x = x_1 \ 0, & \text{if } x = x_2 \ 0, & \text{if } x = x_3 \ 1, & \text{if } x = x_4. \end{cases}$$