Está en la página 1de 4

Solución del Primer Parcial

1. Hallar la condicion del siguiente problema P : R −→ R/P (x) = arctan(x)


Solución.-
Sea x = x(1 + ǫ) con |ǫ| ≤ eps
Tenemos:

P (x) − P (x) = arctan(x) − arctan(x) Por el Teorema del Valor Medio


1
= (x − x), ξ ∈ (x, x)
1 + ξ2
1
= (x(1 + ǫ) − x)
1 + ξ2

=
1 + ξ2
Suponiendo x ≥ 0, tenemos que 0 ≤ x < ξ, entonces
1 1
<
1+ξ 2 1 + x2
Entonces
|P (x) − P (x)| |x||ǫ|
<
|P (x)| (1 + x2 ) arctan x
|x|
= · eps
(1 + x ) arctan x
2

|x|
De donde tenemos que: k =
(1 + x2 ) arctan x
Queremos saber que pasa cuando x ≈ 0 y cuando |x| ≫ 0 para ver esto calculamos los
siguientes limites. En efecto:
x 1 x
lı́m = lı́m · lı́m
x7→0 (1 + x2 ) arctan x x7→0 1+x2 x7 → 0 arctan x
= 1
x x 1
lı́m = lı́m · lı́m
x7→∞ (1 + x ) arctan x
2 x7→∞ 1 + x2 x7→∞ arctan x
= 0

Por tanto k ≈ 1 y k ≈ 0 cuando x ≈ 0 y |x| ≫ 0 respectivamente, en cualquier caso el


problema esta bien condicionado ya que k ≤ 30.

1
√ 2
2. Como A es una solucion√ de la ecuacion x − A = 0 para A > 0, podemos usar el metodo
de Newton para estimar A.

a) Verifique que
 la formula
 de iteracion para obtener la estimacion de la raiz cuadrada en
A
xn+1 = 0,5 xn + .
xn

b) Estime el valor de 3 empleando lo anterior.

c) De una formula iterativa para calcular N a con a > 0.

Solución.-
a) Sea f (x) = x2 − A, entonces f ′ (x) = 2x

f (xn )
xn+1 = xn −
f ′ (xn )
x2 − A
= xn − n
2xn
 
A
= 0,5 xn +
xn

b) Tomemos:

x0 = 1,7
 
3
x1 = 0,5 1,7 + = 1,7323
1,7
 
3
x2 = 0,5 1,7323 + = 1,7320
1,7323
 
3
x3 = 0,5 1,7320 + = 1,7320
1,7320

Veamos el error
√ E = |x2 − x1 | = |1,7320 − 1,7320| = 0
Finalmente 3 ≈ 1,7320
c) Consideremos f (x) = xN − A, entonces f ′ (x) = NxN −1

f (xn )
xn+1 = xn −
f ′ (xn )
xN − A
= xn − n N −1
Nxn
 
1 A
= 1− xn +
N NxnN −1
  
1 A
= 1− xn +
N (N − 1)xnN −1

2
3. La ecuacion de momentos flectores de una viga de longitud “4 unidades” simplemente apo-
yada con una carga “q” distribuida esta dada de la siguiente manera

4qx qx2
y = Mx = −
2 2
En que punto de la viga el momento flector es maximo y a que es igual?.
Solución.-
4qx qx2
Tenemos: M(x) = −
2 2

Derivando: M ′ (x) = 2q − qx

Entonces la funcion a iterar es: f (x) = 2q − qx

Por Newton Raphson

f (xi )
xi+1 = xi − i = 0, 1, 2, ..., N
f ′ (xi )
1era iteracion Con x0 = 0

f (x0 ) 2q − q(0)
x1 = x0 − =0− =2
f (x0 )
′ −q

1da iteracion Con x1 = 2

f (x1 ) 2q − q(2)
x2 = x1 − =2− =2
f (x1 )
′ −q

Por lo tanto: ε = |x2 − x1 | = |2 − 2| = 0

Entonces: x = 2[m] es la posición

Entonces el momento maximo sera:


4q(2) q(2)2
Mmax − M(2) = −
2 2
Mmax = 4q − 2q
= 2q[Nm]

3
4. Hallar un polinomio de Newton de grado 3 si f (3) = 6, f ′ (3) = 15, f [2, 3, 5] = 10 y
f [2, 3, 5, 7] = 4
Solución.-
Consideremos el tablero

xi f (xi )
2 f (2)
6 − f (2)
f [2, 3] =
1
3 6 f [2, 3, 5] = 10
f (5) − 6
f [3, 5] = f [2, 3, 5, 7] = 4
2
2f (5) − f (7)
5 f (5) f [3, 5, 7] =
8
f (7) − f (5)
f [5, 7] =
2
7 f (7)

Luego el polinomio de interpolación


f (x) = f (x0 )+f [x0 , x1 ](x−x0 )+f [x0 , x1 , x2 ](x−x0 )(x−x1 )+f [x0 , x1 , x2 , x3 ](x−x0 )(x−x1 )(x−x2 )
Luego
f (x) = f (2) + (6 − f (2))(x − 2) + 10(x − 2)(x − 3) + 4(x − 2)(x − 3)(x − 5)
Derivamos: f ′ (x) = (6 − f (2)) + 10(2x − 5) + 4(3x2 − 20x + 31)
Para f ′ (3) = 15 ⇐⇒ 15 = 6 − f (2) + 10 − 8 ⇐⇒ f (2) = −7
Finalmente obtenemos:

f (x) = P3 (x) = −7 + 13(x − 2) + 10(x − 2)(x − 3) + 4(x − 2)(x − 3)(x − 5)

También podría gustarte