Está en la página 1de 2

4/2/2021 8.2.2 Formulas de Adams.

ipynb - Colaboratory

Formulas de Adams

Se basan en la serie de Taylor:


n−1
n+1
yi+1 = yi + h ∑ β k fi−k + O(h )

k=0

Orden β0 β1 β2 β3 β4 β5 Error

5 3 ′′
h f
3 1 12
2 −
2 2
(ξ)

9 4 (3)
h f
23 16 5 24
3 −
12 12 12
(ξ)

251 5 (4)
h f
55 59 37 9 720
4 − −
24 24 24 24
(ξ)

475 6 (5)
h f
1901 2774 2616 1274 251 1440
5 − −
720 720 720 720 720
(ξ)

19087 7 (6)
h f
4277 7923 9982 7298 2877 475 60480
6 − − −
720 720 720 720 720 720
(ξ)

Mientras más alto el orden mayor cantidad de datos se requiere, para el segundo orden se requiere
(x 0 , y0 ) y (x−1 , y−1 ) ; para el tercer orden (x0 , y0 ) y (x−1 , y−1 ) y (x−2 , y−2 ) ; y así sucesivamente.
Si no se tiene acceso a dichos datos no se puede usar dicho orden.

Aplicación
Resuelva la siguiente EDO:
3y

f (x) =
x

Para y(4) sabiendo y(2) = 8 .

Se usarán ocho pasos n = 8 :


xn − x0 4 −2
h = = = 0.25
n 8

Entonces:
3y
f (x, y) =
x

x0 = 2

y0 = 8

https://colab.research.google.com/drive/1NX5c0s3BCAuX9yATqdeT9tgxn_HJVlHl 1/3
4/2/2021 8.2.2 Formulas de Adams.ipynb - Colaboratory

xn = 4

h = 0.25

Se aplicará el tercer orden;


23
β0 =
12
16
β1 = −
12
5
β2 =
12

Se sabe que:

y(1.75) = 5.359375

y(1.5) = 3.375

Calcular y1 :
23 16 5
y1 = y0 + h [ f (x 0 , y0 ) − f (x −1 , y−1 ) + f (x −2 , y−2 )]
12 12 12

23 16 5
y1 = 8 + 0.25 [ f (2, 8) − f (1.75, 5.359375) + f (1.5, 3.375)] = 11.390625
12 12 12

Calcular y2 :
23 16 5
y2 = y1 + h [ f (x 1 , y1 ) − f (x 0 , y0 ) + f (x −1 , y−1 )]
12 12 12

23 16 5
y2 = 11.390625 + 0.25 [ f (2.25, 11.390625) − f (2, 8) + f (1.75, 5.359375)] = 15.625
12 12 12

i xi yi

0 2 8
1 2.25 11.390625
2 2.5 15.625
3 2.75 20.796875

4 3.0 27.0
5 3.25 34.328125
6 3.5 42.875
7 3.75 52.734375
8 4 64.0

Para y(4) = 64.0

Como se puede ver el uso de más datos de la función mejoró considerablemente la aproximación.

https://colab.research.google.com/drive/1NX5c0s3BCAuX9yATqdeT9tgxn_HJVlHl 2/3

También podría gustarte