Está en la página 1de 8

Universidad Surcolombiana

Metodos Numericos

M
etodo de Falsa Posici
on, Punto Fijo y Punto
Medio

Jaime Hernan Bermeo Ramrez Codigo: 20112104172


Juan David Cuellar Romero Codigo: 20111100031

Ingeniera Electronica

Neiva - 15 de septiembre de 2013

1.

Falsa Posici
on

1. Definici
on.
Se parte de un intervalo inicial [a0 , b0 ] con f (a0 ) y f (b0 ) de signos opuestos, lo que
garantiza que en su interior hay al menos una raz. El algoritmo va obteniendo
sucesivamente en cada paso un intervalo mas peque
no [ak , bk ] que sigue incluyendo una
raz de la funcion f .
A partir de un intervalo [ak , bk ] se calcula un punto interior ck :
ck =

f (bk )ak f (ak )bk


f (bk ) f (ak )

Dicho punto es la interseccion de la recta que pasa por (a, f( ak )) y (b, f (bk )) con el eje
de abscisas.
Se eval
ua entonces f (ck ). Si es suficientemente peque
no, ck es la raz buscada. Si no, el
proximo intervalo [ak+1 , bk+1 ] sera:
[ak , ck ] si f (ak ) y f (ck ) tienen signos opuestos
[ck , bk ] en caso contrario.
2. Ejercicio
Sea f (x) = x2 6 con (2, 3) encontrar la raz por el metodo de la falsa posicion con
= 0,001
a) Iteracion 1:

f (2) = (2)2 6 = 2
f (3) = (3)2 6 = 3

(1)
(2)

2(3) 3(2)
3 (2)
m = 2,400

(4)

f (2,4) = (2,4)2 6 = 0,24

(5)

f (2) f (2,4) = 2(0,24)


f (2) f (2,4) = 0,48

(6)
(7)

m=

(3)

b) Iteracion 2:
Para a = 2,4 y b = 3
2,4(3) 3(0,24)
3 (0,24)
m = 2,444
m=

(8)
(9)

f (2,444) = (2,444)2 6 = 0,027

(10)

f (2,4) f (2,444) = 0,24(0,027)


f (2) f (2,4) = 6,48 103

(11)
(12)

c) Iteracion 3:
Para a = 2,444 y b = 3
2,444(3) 3(0,027)
3 (0,027)
m = 2,449

m=

(13)
(14)

f (2,449) = (2,449)2 6
f (2,449) = 0,027

(15)
(16)

f (2,444) f (2,449) = 0,027(0,003)


f (2,444) f (2,449) = 8,1 105

(17)
(18)

d ) Iteracion 4:
Para a = 2,449 y b = 3
2,449(3) 3(0,003)
3 (0,003)
m = 2,449
m=

(19)
(20)

f (2,449) = (2,449)2 6
f (2,449) = 0,027

(21)
(22)

f (2,444) f (2,449) = 0,027(0,003)


f (2,444) f (2,449) = 8,1 105

(23)
(24)

e) Iteracion 5:
Para a = 2,449 y b = 3
2,449(3) 3(0,003)
3 (0,003)
m = 2,449

m=

2.

(25)
(26)

f (2,449) = (2,449)2 6
f (2,449) = 0,027

(27)
(28)

f (2,444) f (2,449) = 0,027(0,003)


f (2,444) f (2,449) = 8,1 105

(29)
(30)

Punto Medio

1. Definici
on.
Sea f una funcion continua en [a, b]. La regla del punto medio para aproximar su
integral viene dada por:
Z
a

baX
f (x)dx
[f (x) + f (x2 ) + ... + f (xn )]
n i=1

donde xi es el punto medio del i-esimo subintervalo [xi1 , xi ], es decir, xi = 12 (xi1 , xi )


2. Ejercicio.
Encontrar la raz de la siguiente ecuacion utilizando el metodo de intervalo medio o
biseccion para f (x) = x 2x . Usar como valores iniciales [0, 1].
a) Iteracion 1:
Para a = 0 y b = 1

m=

1
2

f (0) = 0

(31)
1
20

(32)

1
20,5
f (0,5) = 0,207

(34)

f (0) f (0,5) = 0,207

(35)

f (0,5) = 0,5

(33)

b) Iteracion 2:
Para a = 0,5 y b = 1
0,5 + 1
2
m = 0,75
m=

f (0,75) = 0,75

(36)
(37)
1
20,75

f (0,75) = 0,155

(38)
(39)

f (0,5) f (0,75) = 0,207(0,155)


f (0,5) f (0,75) = 0,032

(40)
(41)

c) Iteracion 3:
Para a = 0,5 y b = 0,75
0,5 + 0,75
2
m = 0,625

(42)

m=

f (0,625) = 0,625

(43)
1

20,625

f (0,625) = 0,023
f (0,5) f (0,625) = 0,207(0,023)
f (0,5) f (0,625) = 4,76 103

(44)
(45)
(46)
(47)

d ) Iteracion 4:
Para a = 0,625 y b = 0,75
0,625 + 0,75
2
m = 0,687
1
f (0,687) = 0,687 0,687
2
f (0,687) = 0,067
m=

f (0,625) f (0,687) = 0,023(0,067)


f (0,625) f (0,687) = 1,54 103

(48)
(49)
(50)
(51)
(52)
(53)

e) Iteracion 5:
Para a = 0,625 y b = 0,687
0,625 + 0,687
2
m = 0,656
1
f (0,656) = 0,656 0,656
2
f (0,656) = 0,021
m=

f (0,6) f (0,656) = 0,023(0,021)


f (0,625) f (0,656) = 4,83 104

(54)
(55)
(56)
(57)
(58)
(59)

f ) Iteracion 6:
Para a = 0,625 y b = 0,656
0,625 + 0,656
2
m = 0,641
1
f (0,641) = 0,641 0,641
2
f (0,641) = 9,9 104
m=

f (0,625) f (0,641) = 0,023(9,9 104 )


f (0,625) f (0,641) = 2,3 105

(60)
(61)
(62)
(63)
(64)
(65)

g) Iteracion 7:
Para a = 0,641 y b = 0,656
0,641 + 0,656
2
m = 0,649
1
f (0,649) = 0,649 0,649
2
f (0,649) = 0,011
m=

f (0,641) f (0,649) = 0,011(9,9 104 )


f (0,641) f (0,649) = 1,1 105

(66)
(67)
(68)
(69)
(70)
(71)

h) Iteracion 8:
Para a = 0,641 y b = 0,649
0,641 + 0,649
2
m = 0,645
1
f (0,645) = 0,645 0,645
2
3
f (0,645) = 5,5 10
m=

f (0,641) f (0,645) = 5,5 103 (9,9 104 )


f (0,641) f (0,645) = 5,5 105

(72)
(73)
(74)
(75)
(76)
(77)

i ) Iteracion 9:
Para a = 0,641 y b = 0,645
0,641 + 0,645
2
m = 0,643
1
f (0,643) = 0,643 0,643
2
f (0,643) = 2,62 103
m=

f (0,641) f (0,643) = 2,62 103 (9,9 104 )


f (0,641) f (0,643) = 2,6 106

(78)
(79)
(80)
(81)
(82)
(83)

j ) Iteracion 10:
Para a = 0,641 y b = 0,643
0,641 + 0,643
2
m = 0,642
1
f (0,642) = 0,642 0,642
2
3
f (0,642) = 1,2 10
m=

f (0,641) f (0,642) = 1,2 104 (9,9 104 )


f (0,641) f (0,642) = 1,2 106

(84)
(85)
(86)
(87)
(88)
(89)

k ) Iteracion 11:
Para a = 0,641 y b = 0,642
0,641 + 0,642
2
m = 0,6415
1
f (0,6415) = 0,6415 0,6415
2
3
f (0,6415) = 1,2 10
m=

f (0,641) f (0,6415) = 1,2 104 (9,9 104 )


f (0,641) f (0,6415) = 1,2 106

(90)
(91)
(92)
(93)
(94)
(95)

También podría gustarte