Está en la página 1de 9

Universidad Autónoma del Estado de

México UAEM

“Facultad de Ingeniería”

Formulario:
“Métodos
Numéricos”

Elaborado por:

David Isaías Jaimes Reyes

Estudiante de Ingeniería en Electrónica


UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería

Número Máquina
… 21202−12−2 ….
0 1 1 0 0 0 0 1 0 1 1 0 1 0 0 0 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0
Exponente o Carácter Mantisa (parte decimal)

Signo Signo del


exponente del
número

Numero Real = signo(mantisa)*6𝑒𝑥𝑝−640 = + y 1=−

Tipos de Errores
Error absoluto Error Relativo Error Porcentual
𝑒𝑎 = |𝑥i − 𝑥i−1| 𝑥i − 𝑥i−1 𝑒% = 𝑒𝑟 ∙ 100
𝑒𝑟 = |
𝑥1 |

Algoritmo del Método de la 𝑒𝑟 = s donde s es una tolerancia


Bisección preestablecida
1. Verificar que la función sea ffi y
continua en[𝑎, 𝑏] Método de Newton – Raphson
ƒ(𝑎) ∙ ƒ(𝑏) < 0 ƒ(𝑥i)
𝑥i+1 = 𝑥i − [
ƒ´(𝑥i) ]
2. Obtener la aproximación de la raíz mediante
𝑎+𝑏
𝑥i = i = i𝑡𝑒𝑟𝑎𝑐i𝑜𝑛 Método de la Secante
𝑎𝑐𝑡𝑢𝑎𝑙
2
ƒ(𝑥 )(𝑥 − 𝑥i)
𝑥i+1 = 𝑥i − [ƒ´(𝑥i )i−1
3. Determinar en que subintervalo se encuentra i−1 − ƒ(𝑥i)]

la raíz
ƒ(𝑎) ∙ ƒ(𝑥i) < 0 ⟹ 𝑥i ∈ [𝑎, 𝑥i] Ajuste de una Línea Recta (Regresión Lineal)
ƒ(𝑎) ∙ ƒ(𝑥i) > 0 ⟹ 𝑥i ∈ [𝑥i, 𝑏] 𝑦 = 𝑎0 + 𝑎1𝑥 + 𝑒
ƒ(𝑎) ∙ ƒ(𝑥i) = 0 ⟹ 𝑥ies la solución
- Ecuaciones Normales
4. Estimar el error 𝑛 ∑ 𝑥i𝑦i − ∑ 𝑥i ∑ 𝑦i
𝑎 =
𝑒𝑟 = s donde s es una tolerancia 1
𝑛 ∑ 𝑥i2 − ( ∑ 𝑥i)2
preestablecida 𝑎0 = 𝑦̅ − 𝑎1 𝑥̅ (promedio)

Algoritmo del Método de la Regla Falsa (falsa - Error estándar del estimado (Desviación
posición, regula falsi) estándar)
𝑆𝑟
1. Verificar que la función sea ffi y 𝑆𝑦⁄𝑥 = √
𝑛−2
continua en[𝑎, 𝑏] 𝑛
ƒ(𝑎) ∙ ƒ(𝑏) < 0
𝑆𝑟 = ∑(𝑦i − 𝑎0 − 𝑎1𝑥i)2
2. Obtener la aproximación de la raíz mediante i=1
𝑛
ƒ(𝑏)(𝑎 − 𝑏) 𝑆 = ∑(𝑦 − 𝑦̅)2
𝑥i = 𝑏 − [ ] 𝑡 i
ƒ(𝑎)− ƒ(𝑏) i=1
i = iteracion actual
- Coeficiente de Determinación
3. Determinar en que subintervalo se encuentra
𝑆𝑡 − 𝑆𝑟
la raíz 𝑟 2 = 𝑆𝑡
ƒ(𝑎) ∙ ƒ(𝑥i) < 0 ⟹ 𝑥i ∈ [𝑎, 𝑥i]
ƒ(𝑎) ∙ ƒ(𝑥i) > 0 ⟹ 𝑥i ∈ [𝑥i, 𝑏]
ƒ(𝑎) ∙ ƒ(𝑥i) = 0 ⟹ 𝑥ies la solución
- Coeficiente de Correlación
4. Estimar el error 𝑟, (= √𝑟2)

David Isaías Jaimes 1


Reyes
UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería
Regresión Polinomial
𝑦 = 𝑎0 + 𝑎1𝑥 + 𝑎2𝑥2 + 𝑒
𝑒 = 𝑦 − 𝑎0 − 𝑎1𝑥 − 𝑎2𝑥2
𝑛

∑ 𝑒 = 𝑆𝑟 = ∑(𝑦i − 𝑎0 − 𝑎1𝑥i − 𝑎2𝑥i2)2


i=1

- Ecuaciones Normales
(𝑛)𝑎0 + (∑ 𝑥i) 𝑎1 + (∑ 𝑥i2) 𝑎2 = ∑ 𝑦i

(∑ 𝑥i) 𝑎0 + (∑ 𝑥i2) 𝑎1 + (∑ 𝑥i3) 𝑎2 = ∑ 𝑥i𝑦i

(∑ 𝑥i2) 𝑎0 + (∑ 𝑥i3) 𝑎1 + (∑ 𝑥i4) 𝑎2 = ∑

𝑥i2𝑦i

- Error estándar
𝑆𝑟
𝑆𝑦⁄𝑥 = √
𝑛 − (𝑚 + 1)
𝑛

𝑆𝑡 = ∑(𝑦i − 𝑦̅)2
i=1

Regresión Lineal Múltiple


𝑦 = 𝑎0 + 𝑎1𝑥1 + 𝑎2𝑥2 + 𝑒
𝑦 = 𝑎0 + 𝑎1𝑥1 + 𝑎2𝑥2 + ⋯ + 𝑎𝑛𝑥𝑛 + 𝑒
𝑛

𝑒 = 𝑆𝑟 = ∑(𝑦i − 𝑎0 − 𝑎1𝑥1i − 𝑎2𝑥2i)2


i=1

- Ecuaciones Normales (notación matricial)

𝖥 𝑛 ∑ 𝑎0
𝑥1i ∑ 1‫ﻟ‬ 1 ‫𝑦 ∑ ﻟ‬i 1
𝑥2i
I II I I I
I∑2𝑥1i ∑ ∑ 𝑥1i𝑥2iI 𝑎1 ∑ 𝑥1i𝑦i
𝑥1i
=
II II❪I I
❵ ❪ ❵
∑ 𝑥2i ∑ 𝑥1i𝑥2i ∑ 𝑥2i2 I I
∑ 𝑥2i 𝑦i
[ ] 𝗅𝑎2 𝖩 𝗅 𝖩

- Error Estandar
𝑆𝑟
𝑆𝑦⁄𝑥 = √
𝑛 − (𝑚 + 1)
𝑚 = número de variables independientes
𝑛 = número de la muestra

Linealización de funciones no lineales


Ajuste Exponencial
𝑦 = 𝑏𝑒𝑎𝑥
ln 𝑦 = ln 𝑏 − 𝑎𝑥
- Ecuaciones Normales

David Isaías Jaimes 2


Reyes
UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería
𝑛 ∑ 𝑥i ln 𝑦i − ∑ 𝑥i (∑ ln 𝑦i)
𝑎= 𝑛(∑ 𝑥i2) − (∑ 𝑥i)2
(∑ 𝑥i2)(∑ ln 𝑦i) − (∑ 𝑥i ln 𝑦i)(∑ 𝑥i)
ln 𝑏
= 𝑛(∑ 𝑥i2) − (∑ 𝑥i)2

David Isaías Jaimes 3


Reyes
Ajuste de Potencia Simple
𝑦 = 𝑏𝑥𝑎
ln 𝑦 = ln 𝑏 − 𝑎 ln 𝑥

- Ecuaciones Normales
0 1
𝑎0 ∑ (ln 𝑥i) + 𝑎1 ∑ (ln 𝑥i) = ∑(ln 𝑦i)
1 2
𝑎0 ∑ (ln 𝑥i) + 𝑎1 ∑ (ln 𝑥i) = ∑(ln 𝑦i) (ln 𝑥i)

Interpolación

Polinomio de Taylor
´( )(
( )
ƒ´´(𝑥0) ƒ𝑛(𝑥0) )𝑛
) ( (
𝑃 )2
ƒ 𝑛(𝑥) = ƒ 𝑥0 + 𝑥0 𝑥 − 𝑥0 + 𝑥
𝑥0− +
+⋯ 𝑛!
𝑥 − 𝑥0
2!
Interpolación de LaGrange
Este polinomio está dado por:
𝑃(𝑥) = ƒ(𝑥0)𝐿𝑛,0(𝑥) + ƒ(𝑥1)𝐿𝑛,1(𝑥) + ⋯ + ƒ(𝑥𝑛)𝐿𝑛,𝑛(𝑥)
donde:
(𝑥 − 𝑥0)(𝑥 − 𝑥1)(𝑥 − 𝑥2) … (𝑥 − 𝑥𝑛)
𝐿𝑛,𝑘 (𝑥) = (𝑥𝑘 − 𝑥0)(𝑥 𝑘 − 𝑥1)(𝑥𝑘 − 𝑥2) … (𝑥𝑘 − 𝑥𝑘)
𝑛
(𝑥 − 𝑥 )
0
𝖦 (𝑥𝑘 − 𝑥i)
i=0
Interpolación de Hermite
𝑛 𝑛

𝐻2𝑛+1 (𝑥) = ∑ ƒ(𝑥j ) 𝐻𝑛,j (𝑥) + ∑ ƒ ´ (𝑥j ) 𝐻̂𝑛,j (𝑥)


j=0 j=0
Donde

𝐻𝑛,j (𝑥) = [1 − 2(𝑥 − 𝑥j )𝐿´ 𝑛,j (𝑥j )]𝐿2𝑛,j (𝑥)


Y

𝐻̂𝑛,j (𝑥) = (𝑥 − 𝑥j )𝐿2 𝑛,j (𝑥)

Interpolación de Newton (Diferencias divididas)

𝑃𝑛(𝑥) = 𝑎0 + 𝑎1(𝑥 − 𝑥0) + 𝑎2(𝑥 − 𝑥0)(𝑥 − 𝑥1) + ⋯ + 𝑎𝑛(𝑥 − 𝑥0)(𝑥 − 𝑥1) … (𝑥 − 𝑥𝑛−1)

Para las constantes apropiadas 𝑎0, 𝑎1, … , 𝑎𝑛


𝑎0 = 𝑃𝑛(𝑥0) = ƒ(𝑥0)

𝑎 = ƒ(𝑥1) − ƒ(𝑥0)
ƒ[𝑥 ,𝑥 ]=
1 0 1
𝑥1 − 𝑥0

ƒ[𝑥 , 𝑥 ]ƒ[𝑥− ,𝑥 ƒ(𝑥2 )−ƒ(𝑥1 ) ƒ(𝑥1 )−ƒ(𝑥0 )


1 2 0] 1 [ 𝑥2−𝑥1 ] −[ 𝑥1−𝑥0 ]
𝑎2 = ƒ[𝑥0, 𝑥1, 𝑥2] = =
𝑥2 − 𝑥0 𝑥2 − 𝑥0
𝗑 𝑓(𝗑) Primeras diferencias Segundas diferencias divididas Terceras diferencias divididas
divididas
𝑥0ƒ[𝑥0]
ƒ(𝑥1) − ƒ(𝑥0)
ƒ[𝑥 0, 𝑥1 ] =
𝑥1 − 𝑥0
𝑥1ƒ[𝑥1] ƒ[𝑥1, 𝑥2] − ƒ[𝑥0, 𝑥1]
ƒ[𝑥 , 𝑥 , 𝑥 ] =
ƒ(𝑥2) − ƒ(𝑥1) ƒ[𝑥1, 𝑥2, 𝑥3] − ƒ[𝑥1, 𝑥2, 𝑥3]
ƒ[𝑥 1 , 𝑥2 ] = ƒ[𝑥 0, 𝑥 1, 𝑥 2, 𝑥3 ] =
𝑥2 − 𝑥1 𝑥3 − 𝑥0
𝑥2ƒ[𝑥2] ƒ[𝑥2, 𝑥3] − ƒ[𝑥1, 𝑥2]
ƒ[𝑥 1, 𝑥 2, 𝑥 3] =
𝑥3 − 𝑥1
ƒ(𝑥3) − ƒ(𝑥2) ƒ[𝑥2, 𝑥3, 𝑥4] − ƒ[𝑥1, 𝑥2, 𝑥3]
ƒ[𝑥2 , 𝑥3 ] = ƒ[𝑥 1, 𝑥 2, 𝑥 3, 𝑥4 ] =
𝑥3 − 𝑥2 𝑥4 − 𝑥1
𝑥3ƒ[𝑥3] ƒ[𝑥3, 𝑥4] − ƒ[𝑥2, 𝑥3]
ƒ[𝑥 2, 𝑥 3, 𝑥 4] =
𝑥4 − 𝑥2
ƒ(𝑥4) − ƒ(𝑥3) ƒ[𝑥3, 𝑥4, 𝑥5] − ƒ[𝑥2, 𝑥3, 𝑥4]
ƒ[𝑥3 , 𝑥4 ] = ƒ[𝑥 2, 𝑥 3, 𝑥 4 , 𝑥5 ] =
𝑥4 − 𝑥3 𝑥5 − 𝑥2
𝑥4ƒ[𝑥4] ƒ[𝑥4, 𝑥5] − ƒ[𝑥3, 𝑥4]
ƒ[𝑥 3, 𝑥 4, 𝑥 5] =
𝑥5 − 𝑥3
ƒ(𝑥5) − ƒ(𝑥4)
ƒ[𝑥4 , 𝑥5 ] =
𝑥5 − 𝑥4
𝑥5ƒ[𝑥5]

Interpolación Iterada (Método de Neville)

𝑥i 𝑃i
𝑥0 𝑃0 = 50,0
𝑥1 𝑃1 = 51,0 𝑃0,1 = 51,1
𝑥2 𝑃2 = 52,0 𝑃1,2 = 52,1 𝑃0,1,2 = 52,2
𝑥3 𝑃3 = 53,0 𝑃2,3 = 53,1 𝑃1,2,3 = 53,2 𝑃0,1,2,3 = 53,3
𝑥4 𝑃4 = 54,0 𝑃3,4 = 54,1 𝑃2,3,4 = 54,2 𝑃1,2,3,4 = 54,3 𝑃0,1,2,3,4 = 54,4

(𝑥 − 𝑥i−j)𝑄i,j−1 − (𝑥 − 𝑥i−j)𝑄i−1,j−1
5i,j = 𝑥i − 𝑥i−j
Criterio de paro:

|5i,j − 𝑄i−1,j−1| < 𝐸


UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería
Integración Numérica

Fórmulas de Newton – Cotes cerradas simples


Nombre Fórmula
Regla del 𝑏 ℎ ℎ3 ℎ =𝑏−𝑎
trapecio simple ∫ ƒ(𝑥)𝑑𝑥 = [ƒ(𝑥0) + ƒ(𝑥1)] − ƒ´´(s) 𝑥0 = 𝑎
𝑎 2 12 𝑥1 = 𝑏

Regla de 𝑏 ℎ ℎ5 𝑏−𝑎
Simpson ∫ ƒ(𝑥)𝑑𝑥 = [ƒ(𝑥0) + 4ƒ(𝑥1) + ƒ(𝑥2)] − ƒ𝐼𝑉(s) ℎ= 2
1⁄ 𝑎 3 90 𝑥0 = 𝑎
3 sc(𝑎, 𝑏)
𝑥1 = 𝑥0 + ℎ
𝑥2 = 𝑏
𝑏
Regla de 3ℎ 3ℎ5
𝑏−𝑎
Simpson ∫ ƒ(𝑥)𝑑𝑥 = [ƒ(𝑥0) + 3ƒ(𝑥1) + 3ƒ(𝑥2) + ƒ(𝑥3)] − ƒ𝑉(s) ℎ= 3
𝑎 8 80
3⁄ 𝑥0 < s < 𝑥3 𝑥0 = 𝑎
8 𝑥1 = 𝑥0 + ℎ
𝑥2 = 𝑥0 + 2ℎ
𝑥3 = 𝑏
𝑏
Regla de Boole 2ℎ
[7ƒ(𝑥0) + 32ƒ(𝑥1) + 12ƒ(𝑥2) + 32ƒ(𝑥3) + 7ƒ(𝑥4)]
𝑏−𝑎
∫ ƒ(𝑥)𝑑𝑥 = ℎ= 4
𝑎 45
3ℎ5 𝑉 𝑥0 = 𝑎
− ƒ (s) 𝑥1 = 𝑥0 + ℎ
80
𝑥0 < s < 𝑥4 𝑥2 = 𝑥0 + 2ℎ
𝑥3 = 𝑥0 + 3ℎ
𝑥4 = 𝑏

Fórmulas de integración compuestas

Nombre Características Fórmula


Punto medio Sea ƒc𝐶2[𝑎, 𝑏], 𝑛 par y ℎ = 𝑏−𝑎
y 𝑏
𝑛⁄
2
𝑛+2 𝑏−𝑎
los nodos 𝑥j = 𝑎 + (j + 𝑎)(ℎ) para ∫ ƒ(𝑥)𝑑𝑥 = 2ℎ ∑ ƒ(𝑥2j ) + ℎ2 ƒ´´(𝜇)
𝑎 j=0 6
cada j = −1,0, … , 𝑛 + 1

Regla del trapecio Sea ƒc𝐶2[𝑎, 𝑏], ℎ = 𝑏−𝑎


y los nodos 𝑛−1
𝑛 𝑏
𝑥j = 𝑎 + jℎ para cada j = 0,1, … , 𝑛 ∫ ƒ(𝑥)𝑑𝑥 = ℎ [ƒ(𝑎) + 2 ∑ ƒ(𝑥j) + ƒ(𝑏)]
𝑎 2 j=1
𝑏−𝑎 2
− ℎ ƒ´´(𝜇)
12
𝑛⁄ −1
Simpson 1⁄3 Sea ƒc𝐶4[𝑎, 𝑏],𝑛 par y ℎ = 𝑏−𝑎 y los
𝑛
𝑏 ℎ 2
∫ ƒ(𝑥)𝑑𝑥 = [ƒ(𝑎) + 2 ∑ ƒ(𝑥 )
nodos 𝑥j = 𝑎 + jℎ para cada 2j
j = 0,1, … , 𝑛 𝑎 3 j=1
𝑛⁄
2
+ 4 ∑ ƒ(𝑥2j−1) + ƒ(𝑏)]
j=1
𝑏−𝑎
− ℎ4ƒ(4)(𝜇)
180

David Isaías Jaimes 6


Reyes
UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería
Cuadratura Gaussiana

𝑏 ( ) 1 (𝑏 − 𝑎)𝑡 + (𝑏 + 𝑎) (𝑏 − 𝑎)

( ƒ 𝑥 𝑑𝑥 = ∫ ƒ
𝑎 −1

𝑛
1
∫ 𝑅(𝑥)𝑑𝑥 = ∑ 𝑐i𝑅(𝑥)
−1 i=1

𝑛 Raíces 𝑟𝑛,i Coeficientes 𝑐𝑛,i


2 0.5773502692 1.0000000000
−0.5773502692 1.0000000000
3 0.7745966692 0.5555555556
0.0000000000 0.8888888889
−0.7745966692 0.5555555556
4 0.8611363116 0.3478548451
0.3399810436 0.6521451549
−0.3399810436 0.6521451549
−0.8611363116 0.3478548451
5 0.9061798459 0.2369268850
0.5384693101 0.4786286705
0.0000000000 0.5688888889
−0.5384693101 0.4786286705
−0.9061798459 0.2369268850

Diferenciación Numérica

Fórmulas de primeras derivadas

Nombre Fórmula1 ℎ
2 puntos hacia adelante ƒ´(𝑥 ) = [ƒ(𝑥 + ℎ) − ƒ(𝑥 )] − ƒ´´(s)
0 0 0
ℎ1 2 ℎ
3 puntos hacia adelante ( ) [ ( ) ( ) ] 2
ƒ´ 𝑥0 = 1 −3ƒ 𝑥0 + 4ƒ 𝑥0 + ℎ − ƒ(𝑥 0 + 2ℎ) − ƒ´´(s)
2ℎ ℎ 3
3 puntos centrada ( ) [ ( ) ] 2
ƒ´ 𝑥 = ƒ 𝑥0 + ℎ − ƒ(𝑥0 − ℎ) − ƒ´´(s)
2ℎ 1 6 ℎ
5 puntos centrada ( ) [ ( ) ( ) ( ) ] 4 (5)
ƒ´ 𝑥0 = 1 ƒ 𝑥0 − 2ℎ − 8ƒ 𝑥0 − ℎ + 8ƒ 𝑥0 + ℎ − ƒ(𝑥0 + 2ℎ) − ƒ (s)

12ℎ 30
5 puntos hacia adelante ( ) [ ( ) ( ) ( ) ( ) ( )] 4 (5)

ƒ´ 𝑥0 =
1 −25ƒ 𝑥0 + 48ƒ 𝑥0 + ℎ − 36ƒ 𝑥0 + 2ℎ + 16 𝑥0 + 3ℎ − 3 𝑥0 + 4ℎ − 5 ƒ
12ℎ
(s)
3 puntos hacia atrás ƒ´(𝑥 ) = [3ƒ(𝑥 ) − 4ƒ(𝑥 − ℎ) + ƒ(𝑥 − 2ℎ)]
0 0 0 0
1
2ℎ
5 puntos hacia atrás ƒ´(𝑥 ) = [25ƒ(𝑥 ) − 48ƒ(𝑥 − ℎ) + 36ƒ(𝑥 − 2ℎ) − 16ƒ(𝑥 + 3ℎ) + 3ƒ(𝑥 − 4ℎ)]
0 0 0 0 0 0
12ℎ

David Isaías Jaimes 7


Reyes
UAEM Facultad de Formulario: Métodos Numéricos
Ingeniería
Derivadas de orden superior ("𝑛")

Nombre Fórmula1
3 puntos centrada (𝑛 = 2) ƒ′′(𝑥 ) = [ƒ(𝑥 − ℎ) − 2ƒ(𝑥 ) + ƒ(𝑥 + ℎ)] + 𝑂[ℎ2]
0 0 0 0
1ℎ2
3 puntos hacia adelante (𝑛 = 2) ƒ′′(𝑥 ) = [ƒ(𝑥 ) − 2ƒ(𝑥 + ℎ) + ƒ(𝑥 + 2ℎ)] + 𝑂[ℎ]
0 0 0 0
12

4 puntos hacia adelante (𝑛 = 2) ƒ′′(𝑥 ) = [2ƒ(𝑥 ) − 5ƒ(𝑥 + ℎ) + 4ƒ(𝑥 + 2ℎ) − ƒ(𝑥 + 3ℎ)] + 𝑂[ℎ2]
0 0 0 0 0
ℎ21
5 puntos centrada (𝑛 = 2) ƒ′′(𝑥 ) = [−ƒ(𝑥 − 2ℎ) + 16ƒ(𝑥 − ℎ) − 30ƒ(𝑥 ) + 16ƒ(𝑥 + ℎ) − ƒ(𝑥 + 2ℎ)]
0 0 0 0 0 0
12ℎ2
+ 𝑂[ℎ4]
1
4 puntos hacia adelante(𝑛 = 3) ƒ′′′(𝑥 ) = [−ƒ(𝑥 ) + 3ƒ(𝑥 + ℎ) − 3ƒ(𝑥 + 2ℎ) + ƒ(𝑥 + 3ℎ)] + 𝑂[ℎ]
0 0 0 0 0
ℎ13
5 puntos centrada (𝑛 = 3) ƒ′′′(𝑥 ) = [−ƒ(𝑥 − 2ℎ) + 2ƒ(𝑥 − ℎ) − 2ƒ(𝑥 ) + ƒ(𝑥 + 2ℎ)] + 𝑂[ℎ2]
0 0 0 0+ℎ 0
12ℎ3
5 puntos hacia adelante (𝑛 = 4) ƒ𝐼𝑉(𝑥 ) = [ƒ(𝑥 ) − 4ƒ(𝑥 + ℎ) + 6ƒ(𝑥 + 2ℎ) − 4ƒ(𝑥 + 3ℎ) + ƒ(𝑥 + 4ℎ)] + 𝑂[ℎ]
0 0 0 0 0 0
1ℎ4
5 puntos centrada (𝑛 = 4) ƒ𝐼𝑉(𝑥 ) = [ƒ(𝑥 − 2ℎ) − 4ƒ(𝑥 − ℎ) + 6ƒ(𝑥 ) − 4ƒ(𝑥 + ℎ) + ƒ(𝑥 + 2ℎ)] + 𝑂[ℎ2]
0 0 0 0 0 0
ℎ4

Extrapolación de Richardson

𝑂(ℎ) 𝑂(ℎ2) 𝑂(ℎ3) 𝑂(ℎ4)


𝑁1(ℎ)ℎ
𝑁 ) 𝑁2(ℎ)
1 (
2ℎ ℎ
𝑁 ) 𝑁 ) 𝑁3(ℎ)
1 ( 2 (
4ℎ 2ℎ ℎ
𝑁 ) 𝑁 ) 𝑁 ) 𝑁4(ℎ)
1 ( 2 ( 3 (
8 4 2


4j−1𝑁j−1 ( 2 ) − 𝑁j−1(ℎ)
𝑁j (ℎ) =
4j−1 − 1

David Isaías Jaimes 8


Reyes

También podría gustarte