You are on page 1of 3

INTRODUCCION A LOS METODOS NUMERICO

Los métodos numéricos son soluciones computacionales a distintos tipos de ejercicios


encontrados dentro del rango de la complejidad
METODO BABILONICO

√2 ≅ 1.4142
METODO INDIRECTO
ALGORITMO DE HENON (método iterativo)
1 2
𝑥𝑖+1 = ∗ [𝑥𝑖 + ]
2 𝑥𝑖
Partimos de 𝑥0 = 0.5
Empezamos a iterar para un 𝜀 = 10−4
𝑖=0
1 2
𝑥1 = ∗ [0.5 + ] = 2.25
2 0.5
𝑖=1
1 2
𝑥2 = ∗ [2.25 + ] = 1.56944444
2 2.25
𝑖=2
1 2
𝑥3 = ∗ [2.25 + ] = 1.42189036
2 2.25
𝑖=3
1 2
𝑥4 = ∗ [2.25 + ] = 1.41421356
2 2.25
𝑖=1
1 2
𝑥5 = ∗ [2.25 + ] = 1.41421356
2 2.25

Seguimos iterando

𝑖 𝑥 2/𝑥 𝑓(𝑥)
0 0.5 4 2.25
1 2.25 0.88888889 1.56944444
2 1.56944444 1.27433628 1.42189036
3 1.42189036 1.40657821 1.41423429
4 1.41423429 1.41419284 1.41421356
5 1.41421356 1.41421356 1.41421356
6 1.41421356 1.41421356 1.41421356
Realizando el análisis grafico

x, 2/x vs i
4.5

3.5

2.5

1.5

0.5

0
0 1 2 3 4 5 6 7

x 2/x

Podemos observar que convergen hacia el punto fijo 1.41421356


METODO DIRECTO
1.- SERIES FINITAS
METODO DE SUTRA
1 1 1
√2 ≅ 1 + + −
3 3 ∗ 4 3 ∗ 4 ∗ (34)

√2 ≅ 1.4142156
También existen series infinitas
2.-SERIES INFINITAS
Para 𝑒 𝑥
𝑥2 𝑥3
𝑒𝑥 ≅ 1 + 𝑥 + + …
2! 3!
Es la representación de una sumatoria infinita

SERIES DE TAYLOR
(𝑥 − 𝑎)2
𝑓(𝑥 + 𝑎) = 𝑓(𝑎) + 𝑓 ′ (𝑎) ∗ (𝑥 − 𝑎) + 𝑓 ′′ (𝑎) ∗ …
2!
Para el algoritmo de HENON

𝑥 = √2

𝑥2 = 2
𝑓(𝑥) = 𝑥 2 − 2
𝑓(𝑥) = 0

You might also like