Métodos de Interpolación, Cálculo Diferencial e Integral
Enviado por Chuletator online y clasificado en Matemáticas
Escrito el en
español con un tamaño de 1,93 KB
Interpolación de Newton
1. Tomar el primer intervalo (x0, y0) y definir el polinomio: P0(x) = y0. Como P(x) debe cumplir P(1) = 2, implica que:
2. Tomar (x0, y0) y (z, w) y definir: P1(x) = P0(x) + K1(x - x0). Si x = 3, entonces L0 = 0, L1 = 1, L2 = 0.
Si tabulamos x1 y cumple, para que cumpla (z, w) hallar K1.
3. Tomar (x0, y0), (z, w) y (x1, x1) definiendo: P2(x) = P1(x) + K2(x - x0)(x - z).
4. Al llegar al último intervalo, mostrar de forma expandida.
Polinomio de Interpolación de Lagrange
Dados (x0, y0), (x1, y1), (x2, y2) donde x0 < x1 < x2, el polinomio es P(x) = L0(x)y0 + L1(x)y1 + L2(x)y2.
- L0 = (x - x2)(x - x1) / (x0 - x2)(x0 - x1)
- L1 = (x - x2)(x - x0) / (x1 - x2)(x1 - x0)
- L2 = (x - x0)(x - x1) / (x2 - x0)(x2 - x1)
Ejemplo: (1, 2), (... Continuar leyendo "Métodos de Interpolación, Cálculo Diferencial e Integral" »
vasco con un tamaño de 159,95 KB