Sie sind auf Seite 1von 51

Solucionario Clculo diferencial e integral

Piskunov y yo resolviendo los problemas 07/10/11

ndice general

1. Nmero. Varible. Funcin 2. Lmite y continuidad de las funciones.

5 37

Introduccin
Problemas del Libro Calculo diferencial e integral de Piskunov[4], resueltos por mi. Para aprender a manejar Latex, Lyx y Scilab; y de paso repasar mis conceptos de clculo, y/o aprender algo ms al respecto. Intentare resolver en la medida de mis posibilidades los problemas con Scilab. No me hago responsable de los resultados, he comprobado que concuerdan, aunque en algunas ocasiones puede ser que no (si me doy cuenta lo indicara en el ejercicio correspondiente). He congurado el documento, para que los apartados (ejercicios) no aparezcan en el indice general, pues se obtena un indice muy largo, y daba problemas al crear un PDF (formatos no permitidos en hiperindices?). He congurado el tamao de hoja para A5, con la idea de que se pueda ver completo (sin necesidad de zoom) en un ebook, de momento como no tengo ebook, no puedo comprobar como se ve realmente. No obstante es bastante sencillo cambiar la conguracin al tamao de hoja que se desee. Con este tamao de hoja tambin se podra imprimir directamente dos hojas en un A4.

Captulo 1
Nmero. Varible. Funcin

He resuelto manualmente los ejercicios propuestos, dibujando las grcas por puntos (dando valor a x y obteniendo la y correspondiente), ya que el libro de Piskunov no trata en este captulo el trazado de las grcas (mximos, mnimos, concava, convexa, etc..). Despus he procedido (en los ejercios con grcas) a obtenerlas con Scilab (he intentado usar la mayor cantidad de opciones que tiene Scilab para el trazado de funciones, aunque puede ser que existan ms que no conozca -eso seguro-).

A Deseche utilizar el package de L T X pst-func, pues mi objetivo es manejar el programa E Scilab. No obstante, si se tercia (he hecho alguna prueba desde MiT X y me ha funcionado, E
desde L X an no lo he probado, supongo que ser mediante una Red Box), probare a Y utilizarlo en alguna ocasin.

1.1. Calcular f (x) = x2 + 6x 4 para x = 1 y y = 3


f (1) = 12 + 6 1 4 = 1 + 6 4 = 3 f (3) = 32 + 6 3 4 = 9 + 18 4 = 23

1.2. Calcular f (x) = x2 + 1 para los valores dados


a) b) c) d) e) f) g)

f (4) = 42 + 1 = 16 + 1 = 17 2 f ( 2) = 2 +1=2+1=3 f (a + 1) = (a + 1) + 1 = a2 + 2a + 1 + 1 = a2 + 2a + 2 f (a) + 1 = a2 + 1 + 1 = a2 + 1 + 1 = a2 + 2 f (a2 ) = a2


2 2 2

+ 1 = a4 + 1
2

[f (a)] = a2 + 1
2

= a4 + 2a2 + 1

f (2a) = (2a) + 1 = 4a2 + 1

1.3. Calcular

1 x 1 x

1 (x)

x1 siendo (x)= 3x+5


1x x 3+5x x

1 x 1 1 3x + 5

1x 3 + 5x

1 = (x)

1
x1 3x+5

3x + 5 x1

1.4. Calcular (x) = x2 + 4 para 2x y para 0


(2x) = (2x) + 4 =
2

4x2 + 4 = 2 x2 + 1

(0) =

02 + 4 =

4=2

2f 1.5. Siendo f (x) = tg() vericar que f (2) = 1[f() ()]

f (2) = tg(2) =

sen 2 sen cos + cos sen 2 sen cos cos2 = = = cos 2 cos cos sen sen cos2 sen2 cos2
2 sen cos cos2 cos2 sen2 cos2 2 sen cos

sen2 cos2

2 tg 1 tg2

c.q.d

1x 1.6. Siendo (x) = log 1+x comprobar que (a) + (b) =

a+b 1+ab

(a) = log

1a 1+a

(b) = log

1b 1+b

(a) + (b) = log

1a 1b (1 a)(a b) + log = log 1+a 1+b (1 + a)(1 + b)

a+b 1 + ab

= log

1 1+

a+b 1+ab a+b 1+ab

= log

1 + ab a b (1 a)(1 b) = log 1 + ab + a + b (1 + a)(1 + b)

c.q.d.

1.7. Siendo f (x) = log x y (x) = x3 calcular:


a) c)
f [(2)] = f 23 = f (8) = log 23 = 3 log 2 a3 = log a3 = 3 log a
3

b) f [(a)] = f

[f (a)] = [log a] = (log a)

1.8. Dominio natural denicin funcin y = 2x2 + 1


No existen valores que produzcan divisiones por cero; por tanto todos los reales son validos.

xR

<x<

1.9. Dominio natural denicin funciones:


a)
1 x2

; si
4
5

|x| > 1 1 x2 < 0 No


2

raiz real

x2 = |x|
3

b) 3 + x + 7 x ; si x < 3 o x > 7 No raiz real 3 x 7 c) x + a x b ; siempre existen raices reales < x <
3 8 =
3

(2)3 = (2) = 2

8=

23 = 2

d)

a+x ax

; si

x = a denominador = 0= x = a

e) arcsen2 x ; como sen x slo toma los valores entre1 y 1 este es el dominio de arcsen x y de arcsen2 x 1 x 1 f) y = log x ; la funcin logartmica slo est denida para valores positivos
x > 0

g) y = ax (a > 0) = x < x <

1.10. Construir grca de la funcin y = 3x + 5


Puntos de corte con los ejes:

x=0y=5

y = 0 3x = 5 x =

5 3

La curva es una recta, y utilizando Scilab para dibujarla

x=[ 5:0.1:5] '; y=3*x+5; b=5/3; plot2d ( x , y , [ 2 ] , l e g="y=3*x+5" , r e c t =[1 0 5 1 0 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid xstring ( 0 , 5 , [ "P( 0 , 5 ) " ] ) xstring ( b , 0 , [ "P( 5 / 3 , 0 ) " ] )

1 1.11. Gracar parbola y = 2 x2 + 1 y = 0 0 = 1 x2 + 1 2 = x2 no cruza el 2 1 Analizndo algunos puntos x = 1 o x = 1 y = 1 + 2 x = 2 y = 2 + 1 = 3 x=0y=1


Dado que si Realizando el grco en scilab: eje x

x=[ 5:0.1:5] '; y =0.5* x^2+1; plot2d ( x , y , [ 2 ] , l e g="y=1/2*x+1" , r e c t =[4 0 4 1 0 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1.12. Parbola y = 3 2x2


y = 0 0 = 32x2 3 = 2x2 |x| = x=0y=3
3 2 es simtrica respecto eje y (ordenadas)

x=[ 5:0.1:5] '; y=32*x ^ 2 ; plot2d ( x , y , [ 2 ] , l e g="y=32*x^2" , r e c t =[3 5 3 4 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1.13. Parbola y = x2 + 2x 1
1 22 41(1) x= = 21 y = 0 x1 = 1 + 2 x = 0 y = 1
2 4+4 2

= 22 2 2 x2 = 1 2

puntos de corte eje x (abcisas)

x=[ 5:0.1:5] '; y=x^2+2*x 1; plot2d ( x , y , [ 2 ] , l e g="y=x^2+2*x1" , r e c t =[4 2 2 7 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1 1.14. y = x1 x = 0 y = 1

x = 1

x1 = [ 3 : 0 . 0 5 : . 9 5 ] ' ; x2 = [ 1 . 0 5 : 0 . 1 : 3 ] ' ; dims =1; x=c a t ( dims , x1 , x2 ) ; y=(x 1)^( 1) ; // y=1/(x 1) ; No f u n c i o n a plot2d ( x , y , [ 2 ] , l e g="y=1/(x 1)" , r e c t =[3 10 3 1 0 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid xstring ( 0 , 1 , [ "P(0 , 1) " ] )

1.15. y = sen 2x
La curva La curva

sen x es peridica 2 sen 2x es peridica

x1 = [ 3 : 0 . 0 5 : . 9 5 ] ' ; x2 = [ 1 . 0 5 : 0 . 1 : 3 ] ' ; dims =1; x=c a t ( dims , x1 , x2 ) ; y=(x 1)^( 1) ; // y=1/(x 1) ; No f u n c i o n a plot2d ( x , y , [ 2 ] , l e g="y=1/(x 1)" , r e c t =[3 10 3 1 0 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid xstring ( 0 , 1 , [ "P(0 , 1) " ] )

1.16. y = cos 3x
La curva La curva

cos x es peridica 2 cos 3x es peridica 2 3

x = [ 0 : 0 . 1 : 2 * %pi ] ' ; plot2d ( x , cos ( 3 * x ) , [ 2 ] , r e c t =[0 , 1 ,2* %pi , 1 ] ) ; a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1.17. Parbola y = x2 4x + 6
y=0x= x=0y=6
4

(4)2 416 21

4 1624 no corta el eje x 2

x=[ 5:0.1:5] '; y=x^2 4*x+6; plot2d ( x , y , [ 2 ] , l e g="y=x^24*x+6" , r e c t =[1 0 5 1 1 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1 1.18. y = 1x x=0y=1
No denida para

|x| = 1

Curva simtrica eje ordenadas

x1 = [ 3 : 0 . 0 5 : 1 . 0 5 ] ' ; x2 = [ 0 . 9 5 : 0 . 0 5 : 0 . 9 5 ] ' ; x3 = [ 1 . 0 5 : 0 . 0 5 : 3 ] ' ; dims =1; x=c a t ( dims , x1 , x2 , x3 ) ; y=(1x ^2) ^( 1) ; // y=1/(1 x ^2) ; No f u n c i o n a plot2d ( x , y , [ 2 ] , l e g="y=1/(1 x ^2) " , r e c t =[3 5 3 5 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1.19. y = sen x + 4
La curva es peridica

y est adelantada

4 (respecto a la curva seno)

x = [ 0 : 0 . 1 : 2 * %pi ] ' ; plot2d ( x , sin ( x+( %pi/ 4 ) ) , [ 2 ] , r e c t =[0 , 1 ,2* %pi , 1 ] ) ; a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1.20. y = cos x 3
La curva

cos x

es peridica

retrasada

3 (respecto a la curva coseno)

x = [ 0 : 0 . 1 : 2 * %pi ] ' ; plot2d ( x , [ sin ( x+( %pi/ 4 ) ) cos ( x ( %pi/ 3 ) ) ] , [ 2 3 ] , l e g=" s i n ( x+p i / 4 ) @cos ( x p i / 3 ) " , r e c t =[0 , 1 ,2* %pi , 1 ] ) ; a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ;

xgrid

1 1.21. y = tg 2 x
La curva

tg 1 x 2

es peridica

y no valilda para

x = (tg x

es peridica

1 1.22. y = cotg 4 x
La curva

cotg 1 x 4

es peridica

y no valilda para

x = (cotg x

es peridica

x=[( 1) * %pi : 0 . 1 : %pi ] ' ; deff ( " [ y]= f ( x ) " , "y =tan ( x / 2 ) " ) ; deff ( " [ y]=g ( x ) " , "y =c o t g ( ( x+((x==0)* %eps ) ) / 4 ) " ) ; // con "+(x==0)* %eps" s e e v i t a e l 0 // t r a z o f u n c i n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t =[ %pi, 10 , %pi , 1 0 ] ) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ %pi, 10 , %pi , 1 0 ] ) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . // uso de LaTex en l a l e g e n d a , ver ' l e g e n d ' h l=l e g e n d ( [ ' $y=t g \ f r a c {x }{2} $ ' ] , [ ' $y=c o t g \ f r a c {x }{4} $ ' ] , 4 ) ;

xgrid

1.23. y = 3x
La curva potencial corta el eje x en el corta. Para

se aproxima a el rpidamente, pero no lo

x=0y=1

1.24. y = 2x
Para

La curva potencial es simtrica respecto al eje y, debido al cuadrado de x. Y corta el eje x en el

y en el + se aproxima a ellos rpidamente, pero no lo corta.

x=0y=1

x=[ 5:0.1:5] '; deff ( " [ y]= f ( x ) " , "y =3^x" ) ; deff ( " [ y]=g ( x ) " , "y =2^( (x ^2) ) " ) ; // t r a z o f u n c i n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t = [ 3 , 0 , 3 , 4 ] ) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t = [ 3 , 0 , 3 , 4 ] ) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=3^x$ ' ] , [ ' $y=2^{x^2}$ ' ] , 1 ) ;

xgrid

1 1.25. y = log2 x

La curva logartmica slo est denida para valores tiene el mismo dominio Tambin se representa la curva

x > 0,

por lo que

log2

1 x tambin

1 y = ln x

x=[0:0.05:4] '; deff ( " [ y]= f ( x ) " , "y =l o g 2 ( 1 / ( x+((x==0)* %eps ) ) ) " ) ; deff ( " [ y]=g ( x ) " , "y =l o g ( 1 / ( x+((x==0)* %eps ) ) ) " ) ; fplot2d ( x , f , [ 2 ] , r e c t = [ 0 , 4 , 4 , 1 0 ] ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ; // t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t = [ 0 , 4 , 4 , 1 0 ] ) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=\log_2 \ f r a c {1}{ x}$ ' ] , [ ' $y=l n \ f r a c {1}{ x} $ ' ] , 1 ) ; // upper l e f t corner

xgrid

1.26. y = x3 + 1
y = 0 x = 1 x=0y=1

1.27. y = 4 x3
y=0x= 3 4 x=0y=4
x=[ 2.2:0.1:3] '; deff ( " [ y]= f ( x ) " , "y =x^3+1" ) ; deff ( " [ y]=g ( x ) " , "y =4x^3" ) ; // t r a z o f u n c i n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t =[ 5 , 8 ,5 ,10]) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ 5 , 8 ,5 ,10]) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=x^3+1$ ' ] , [ ' $y =4x^3$ ' ] , 1 ) ;

xgrid

1.28. y = x1

No denida para

x=0

(tendera a innito)

Curva simtrica respecto al eje y (ordenadas)

x1 = [ 3 : 0 . 1 : 0 . 1 ] ' ; x2 = [ 0 . 1 : 0 . 1 : 3 ] ' ; dims =1; x=c a t ( dims , x1 , x2 ) ; deff ( " [ y]= f ( x ) " , "y =(x ^2) ^( 1)" ) ; fplot2d ( x , f , [ 2 ] , r e c t = [ 3 , 0 , 3 , 1 0 ] ) // tambien f u n c i o n a // y =(x ^2) ^( 1) // p l o t 2 d ( x , y , [ 2 ] , l e g ="y =(x ^2) ^( 1) " , r e c t =[3 0 3 1 0 ] )

// a x i s c e n t e r e d a t ( 0 , 0 ) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; h1=l e g e n d ( [ ' $y=\ f r a c {1}{ x^2}$ ' ] , 2 ) ;

xgrid

1.29. y = x4
Curva simtrica respecto al eje y (ordenadas)

1.30. y = x5
Curva simtrica respecto al origen (punto 0,0)

x=[ 2:0.1:2] '; deff ( " [ y]= f ( x ) " , "y =x^5" ) ; deff ( " [ y]=g ( x ) " , "y =x^4" ) ; // t r a z o f u n c i o n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t =[ 2 , 10 ,2 ,10]) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i o n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ 2 , 10 ,2 ,10]) ; x t i t l e ( " F u n c i o n e s p o t e n c i a l e s " ) ; // x l a b e l (" x ") ; y l a b e l (" y ") ; l a s l e t r a s " x " e " y " s a l e n s o b r e c u a d r i c u l a y no s e ven // t r a z o g r u e s o en f u n c i o n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=x^5$ ' ] , [ ' $y=x^4$ ' ] , 4 ) ;

xgrid

1.31. y = x
Curva denida slo para

x0

1 1.32. y = x
Curva denida slo para

x>0

Programa en Scilab (no trazo punto cero)

x=[0.01:0.01:10] '; deff ( " [ y]= f ( x ) " , "y =s q r t ( x ) " ) ; deff ( " [ y]=g ( x ) " , "y =1/( s q r t ( x ) ) " ) ; // t r a z o f u n c i n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t = [ 0 , 0 , 1 0 , 1 0 ] ) ; a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ; // t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t = [ 0 , 0 , 1 0 , 1 0 ] ) ; x t i t l e ( " F u n c i o n e s p o t e n c i a l e s " ) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=\ s q r t {x}$ ' ] , [ ' $y=\ f r a c {1}{\ s q r t {x }} $ ' ] , 1 ) ; // upper l e f t corner

1.33. y = x
Curva simtrica respecto al origen

Scilab utiliza la exponenciacin para resolver, por lo que no da valores correctos para valores de x negativos.

x 3 = e 3 log x

Dando resultados de nmero complejos, que en la

presentacin grca, se convierten a: en el eje x la parte real, y en el eje y la parte imaginaria. Por ejemplo la

27 = 3

en Scilab es

27 3 = 1, 5 + 2, 5980762i

(Curva azul, para

nmeros positivos coincide con curva verde -queda oculta-)

x=[ 8:0.1:8] '; deff ( " [ y]= f ( x ) " , "y =x ^ ( 1 / 3 ) " ) ; // For two r e a l or complex numbers x1 e t x2 t h e v a l u e o f x1^x2 i s t h e " p r i n c i p a l v a l u e " d e t e r m i n e d by x1^x2 = exp ( x2 * l o g ( x1 ) ) . function [ y]=g ( x ) i f x<0 then y=( 1) * ( ( abs ( x ) ) ^ ( 1 / 3 ) )

else

a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ; // t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ 8 , 3 ,8 ,3]) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . h l=l e g e n d ( [ ' $y=x^\ f r a c {1}{3}= e ^{\ f r a c {1}{3}\ l o g {x }} $ ' ] , [ ' $y=\ s q r t [ 3 ] { x } $ ' ] , 1 ) ; // upper l e f t c o r n e r

end endfunction fplot2d ( x , f , [ 2 ] , r e c t =[ 8 , 3 ,8 ,3]) xgrid

y =x ^ ( 1 / 3 )

1.34. y = |x|
Curva simttrica respecto a las ordenadas.

1.35. y = log2 |x|


Curva simtrica, denida

x = 0

x=[ 4:0.1:4] '; deff ( " [ y]= f ( x ) " , "y =abs ( x ) " ) ; deff ( " [ y]=g ( x ) " , "y =l o g 2 ( abs ( x ) +((x==0)* %eps ) ) " ) ; // con "+(x==0)* %eps" s e e v i t a e l 0 // t r a z o f u n c i n f ( x ) fplot2d ( x , f , [ 2 ] , r e c t =[ 4 , 10 ,4 ,4]) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ 4 , 10 ,4 ,4]) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . // uso de LaTex en l a l e g e n d a , ver ' l e g e n d ' h l=l e g e n d ( [ ' $y =|x | $ ' ] , [ ' $y=\log_2 | x | $ ' ] , 4 ) ;

xgrid

1.36. y = log2 (1 x)
Curva denida

x < 1

x=[ 5:0.1:1] '; deff ( " [ y]= f ( x ) " , "y =l o g 2 ((1 x ) +((1 x )==0)* %eps ) " ) ; deff ( " [ y]=g ( x ) " , "y =l o g ((1 x ) +((1 x )==0)* %eps ) " ) ; fplot2d ( x , f , [ 2 ] , r e c t =[ 5 , 5 ,1 ,3]) a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . // There a r e a compound made o f two p o l y l i n e s and a l e g e n d p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ; // t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[ 5 , 5 ,1 ,3]) ; // t r a z o g r u e s o en f u n c i n d i b u j a d a p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . // uso de LaTex en l a l e g e n d a , ver ' l e g e n d ' h l=l e g e n d ( [ ' $y=\log_2 (1 x ) $ ' ] , [ ' $y=l n (1 x ) $ ' ] , 3 ) ; // upper l e f t c o r n e r

xgrid

1.37. y = 3 sen 2x + 3
La curva es senoidal, de amplitud 3, peridica (respecto a la curva seno) 3

(doble frecuencia) y est adelantada

1.38. y = 4 cos x + 2
La curva es senoidal, peridica

y adelantada

2 (respecto a la curva seno)

x = [ 0 : 0 . 1 : 2 * %pi ] ' ; deff ( " [ y]= f ( x ) " , "y =3* s i n ( 2 * x+( %pi/ 3 ) ) " ) ; deff ( " [ y]=g ( x ) " , "y =4* c o s ( x+( %pi/ 2 ) ) " ) ; fplot2d ( x , f , [ 2 ] , r e c t =[0 , 4 ,2* %pi , 4 ] ) a=gca ( ) ; // Handle on a x e s e n t i t y // a x i s c e n t e r e d a t ( 0 , 0 ) a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e .

// t r a z o f u n c i n g ( x ) fplot2d ( x , g , [ 3 ] , r e c t =[0 , 4 ,2* %pi , 4 ] ) ; p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 poly1 . t h i c k n e s s = 3 ; h l=l e g e n d ( [ ' $y=3\ s i n ( 2 x+\ f r a c {\ p i } { 3 } ) $ ' ] , [ ' $y=4\ c o s ( x+\ f r a c {\ p i } { 2 } ) $ ' ] ,5) ;

xgrid

1.39. Curvas denidas por tramos f (x) denida x


[1; 1]

f (x) =

1+x 1 2x

1 x 0 0x1

x=[ 1:0.1:1] '; function [ y]= f ( x ) i f x<0 then y=1+x

else

a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ;

end endfunction fplot2d ( x , f , [ 2 ] , r e c t =[ 1 , 1 ,1 ,1]) xgrid

y =12*x

1.40. Curvas denidas por tramos f (x) denida x


[0; 2]
f (x) =
x=[0:0.1:2] '; function [ y]= f ( x ) i f x<=1 then y=x^3

x3 x

0x1 1x2

else

a=gca ( ) ; // Handle on a x e s e n t i t y a . x_location = " o r i g i n " ; a . y_location = " o r i g i n " ; a . c h i l d r e n // l i s t t h e c h i l d r e n o f t h e a x e s . p o l y 1= a . c h i l d r e n ( 1 ) . c h i l d r e n ( 1 ) ; // s t o r e p o l y l i n e h a n d l e i n t o p o l y 1 p o l y 1 . t h i c k n e s s = 3 ; // . . . and t h e t i c k n e s s o f a c u r v e . xgrid ;

end endfunction fplot2d ( x , f , [ 2 ] , r e c t = [ 0 , 0 , 2 , 2 ] ) xgrid

y =x

a 1.41. Espiral hiperblica =


p h i = [ 0 : %pi / 1 0 0 : %pi * 4 ] ; rho = ( 0 . 9 ) / p h i

polarplot ( phi , rho )

1.42. Espiral logartmica = a


Para Para Para

a<1 a=1 a>1

espiral que se acerca a cero (color negro). circulo unidad (color rojo) espiral que se aleja a innito (color azul)

p h i = [ 0 : %pi / 1 0 0 : %pi * 4 ] ; rho05 = ( 0 . 9 ) ^p h i ; rho1=1^p h i ; rho2 =1.1^ p h i polarplot ( [ phi ' phi ' phi ' ] , [ rho05 ' rho1 ' rho2 ' ] , [ 1 , 5 , 1 0 ] , ' 130 ' , " @r09@r1@>r 1 1 " )

1.43. Lemniscata = a cos 2


Tambin se ha trazado la curva lemniscata con el seno (curva de color rojo)

p h i = [ 0 : %pi / 1 0 0 : 2 * %pi ] ; a =10; columnas=s i z e ( phi , ' c ' ) rho=ones ( p h i ) ;mu=rho ; for i t =1: columnas i f ( cos ( 2 * p h i ( 1 , i t ) ) <0) then rho ( 1 , i t )=0 // v a l o r e s i m a g i n a r i o s de l a r a i z

else

end for i t =1: columnas i f ( sin ( 2 * p h i ( 1 , i t ) ) <0) then else end

end

rho ( 1 , i t )=a* sqrt ( cos ( 2 * p h i ( 1 , i t ) ) )

mu( 1 , i t )=0 // v a l o r e s i m a g i n a r i o s de l a r a i z

mu( 1 , i t )=a * sqrt ( sin ( 2 * p h i ( 1 , i t ) ) )

end polarplot ( [ phi ' phi ' ] , [ rho ' mu' ] , [ 1 , 5 ] , ' 130 ' , "@r1@>r 1 1 " )

// l a l e m i n i s c a t a d e l seno e s t a g i r a d a ( r e t r a s a d a ) p i /4 (45 )

1.44. Cardioide = a (1 cos)


Tambin se ha trazado la curva cardioide con el seno (curva de color rojo)

p h i = [ 0 : %pi / 1 0 0 : 2 * %pi ] ; a =5; rho=a*(1 cos ( p h i ) ) ; mu=a*(1 sin ( p h i ) ) ; polarplot ( [ phi ' phi ' ] , [ rho ' mu' ] , [ 1 , 5 ] , ' 130 ' , "@r1@>r 1 1 " ) // l a c a r d i o i d e d e l seno e s t a g i r a d a ( r e t r a s a d a ) p i /2 (90 )

1.45. Rosa de n-Ptalos = a sen 3


Tambin se ha trazado la Rosa de 2n-Ptalos con Si el mltiplo de una curva y otra.

= a cos 4

(curva de color rojo)

es par se obtiene una rosa de 2n-ptalos, si es impar de n-ptalos.

Esto se produce tanto en el seno como en el coseno, lo que hay es un desfase (giro) entre

p h i = [ 0 : %pi / 1 0 0 : 2 * %pi ] ; a =5; rho=a* sin ( 3 * p h i ) ; mu=a * cos ( 4 * p h i ) ; polarplot ( [ phi ' phi ' ] , [ rho ' mu' ] , [ 1 , 5 ] , ' 130 ' , "@r1@>r 1 1 " )

Captulo 2
Lmite y continuidad de las funciones.

He resuelto manualmente los ejercicios propuestos. En Scilab no he encontrado una herramienta que resulva simbolicamente los lmites; parece ser que el programa MAXIMA si que lo hace (pero de momento no estoy interesado en utilizarlo).

+2x+5 2.1. Calcular l x1 x x +1 m


2 2
En primer lugar, probamos a resolver aplicando el valor de x, dentro de la expresin::

x2 + 2x + 5 12 + 2 1 + 5 8 = = =4 2+1 2+1 x1 x 1 2 l m
Aplicando teoremas funamentales de los lmites (Apartado 5 del libro de Piskunov)

l x1 x2 + 2x + 5 m l x1 x2 + l x1 2x + l x1 5 m m m x2 + 2x + 5 = = = 2+1 2+1 2 + l x1 x l x1 x m l x1 x m mx1 1 l m = 1+2+5 8 = =4 1+2 2

2.2. Calcular l x [2 sen x cos x + cotg x] m


2 x 2

l [2 sen x cos x + cotg x] = 2 l sen x l cos x + l cos x l m m m m m


x 2 x 2 x 2 x 2

1 = sen x

=210+0

1 =2 1

x2 2.3. Calcular l x2 2+x m l x2 x 2 m 22 x2 0 = = l m = =0 x2 2 2 2+x l x2 2 + x m 1 2.4. Calcular l x 2 x + x4 m l m 2 4 1 + 2 x x = l 2 l m m


x 3 2 2

4 1 + l m =20+40=2 x x2 x

2x 2.5. Calcular l x 4x 3x 5+1 m


3

1 l x 4 2 x + m l x 4x 2x +1 m 4x3 2x2 + 1 x3 l m = = 3 5 5 x 3x3 5 l x 3 x3 m l x 3xx3 m

1 x2

4 40+0 = 30 3

2.6. Calcular l x x+1 m x


x

l m

x+1 1 = l m 1 + x x x

=1+0=1

2.7. Calcular l n 1+2+...+n m n


2 n

l m

1 + 2 + ... + n n(1 + n) 1+n = l m = l m = l m n n 2n n n2 2n2

1 1 + 2n 2

=0+

1 1 = 2 2

Dado que el sumatorio de la Progresin Aritmtica es::

n = (1 + 2 + . . . + n) =
i=1 2 2

n(a1 + an ) n(1 + n) = 2 2
2

+...+n 2.8. Calcular l n 1 +2 n m


3

Piskunov[4]propone para su resolucin utilizar la igualdad (demostrada):

12 + 22 + . . . + n2 =

n(n + 1)(2n + 1) 6

1 2 + 2 2 + . . . + n2 n(n + 1)(2n + 1) (n + 1)(2n + 1) = l m = l m = n n n n3 6n3 6n2 l m

= l m

3 2+ n + 2n2 + 3n + 1 /n2 = l m n n 6n2 /n2 6

1 n2

2+0+0 1 = 6 3

Tambien se podra resolver por el Criterio de Stolz, en el Atlas de matemticas [3] se indica este mtodo para resolver lmites de la forma:

l m

an bn

an y

bn

l m

an an1 an = l m n bn bn bn1

Aplicando el Criterio de Stolz:

(12 + 22 + . . . + n2 ) (12 + 22 + . . . (n 1)2 ) = n n3 (n 1)3 l m = l m n2 n2 /n2 = l m = n n3 (n3 3n2 + 3n 1) n 3n2 3n + 1 /n2 = l m 1 3


2 3 n n

1 n2

1 1 = 30+0 3

+x1 2.9. Calcular l x x 2x+5 m


Se puede resolver dividiendo los polinomios denominador y divisor por

x2 .

1 1 1 + x x2 x2 + x 1 /x2 1+00 1 = = l m = = 5 2 x x 2x + 5 /x2 0+0 0 + x2 x

l m

2.10. Calcular l x 3x x2x1 m +4


2 3
Se puede resolver dividiendo los polinomios denominador y divisor por

x3 .

3x2 2x 1 /x3 = l m x x x3 + 4 /x3 l m


3

3 x

2 x2 4 1 + x3

1 x3

000 0 = =0 1+0 1

2x +x 2.11. Calcular l x0 4x3x +2x m


2 2
Se puede resolver dividiendo los polinomios denominador y divisor por

x.

4x3 2x2 + x /x 4x2 2x + 1 00+1 1 = l m = = 2 + 2x x0 3x /x x0 3x + 2 0+2 2 l m


En Scilab, podemos calcular este lmite aprovechando el mnimo valor  %eps

function

y=p o l 1 ( x )

endfunction

y =(4 * x^3 2* x^2+x ) / ( 3 * x^2+2* x )

Obteniendo como resultado en consola, al introducir en vez de 0 el valor  %eps

>p o l 1 ( %eps )

ans

0.5

4 2.12. Calcular l x2 xx2 m


2
Se soluciona descomponiendo el polinomio del denominador

1 y simplicando la funcin.

(x + 2)(x 2) x2 4 = l m = l x + 2 = 2 + 2 = 4 m x2 x2 x2 x 2 (x 2) l m
En Scilab, podemos calcular este lmite aprovechando el mnimo valor  %eps, y la gestin de errores ieee(n)

ieee ( 2 ) function

y=p o l 1 2 b ( x )

endfunction disp ( p o l 1 2 b (2 %eps ) ) disp ( p o l 1 2 b (2+ %eps ) )


Obteniendo como resultado al ejecutar este archivo

y=(x ^2 4)/( x 2)

>exec (
4. Nan

' 02 12b . s c i ' ,

1)

1 2.13. Calcular l x1 xx1 m


3
Se soluciona descomponiendo el polinomio del denominador

2 y simplicando la funcin.

x3 1 (x2 + x + 1)(x 1) = l m = l x2 + x + 1 = 12 + 1 + 1 = 3 m x1 x 1 x1 x1 (x 1) l m
En Scilab

ieee ( 2 ) function

y=p o l 1 3 ( x )

endfunction disp ( p o l 1 3 (1 %eps ) ) disp ( p o l 1 3 (1+ %eps ) )


Obteniendo como resultado al ejecutar este archivo

y=(x ^3 1)/( x 1)

1 0 -4 2 2 4 Divisin de polinomios, por Runi: x2 4 = (x 2)(x + 2) 1 2 0 1 0 0 -1 2 Aplicando Runi: x4 1 = (x 1)(x2 + x + 1) 1 1 1 1 1 1 1 0


1

>exec (
3. 3.

' 02 13. s c i ' ,

1)

5x+6 2.14. Calcular l x2 xx12x+20 m


2 2
Se soluciona descomponiendo los polinomios del denominador y del divisor, y simplicando la funcin.

x2 5x + 6 (x 3)(x 2) x3 1 1 = l m = l m = = x2 x2 12x + 20 x2 (x 10)(x 2) x2 x 10 8 8 l m


En Scilab

ieee ( 2 ) function

y=p o l 1 4 ( x )

endfunction disp ( p o l 1 4 (2 %eps ) ) disp ( p o l 1 4 (2+ %eps ) )


>exec (
0.25 Nan Que no es correcto, da

y=(x ^2 (5 * x ) + 6 ) / ( x ^2 (12 * x ) + 2 0 )

Obteniendo como resultado al ejecutar este archivo ' 02 14. s c i ' ,

1)

1 4 , pero no soy capaz de entender porque. 3

x 2.15. Calcular l x2 3x +3x10 m 5x+2


2
Se soluciona descomponiendo los polinomios del denominador y del divisor, y simplicando la funcin.

x+5 x3 + 3x 10 (x 2)(x + 5) 7 = l m = l m = =1 x2 3x + 1 x2 3x2 5x + 2 x2 3(x 2)(x + 1 ) 7 3 l m


En Scilab

ieee ( 2 ) function

y=p o l 1 5 ( x )

endfunction disp ( p o l 1 5 (2 %eps ) ) disp ( p o l 1 5 (2+ %eps ) )


Obteniendo

y=(x ^3+(3 * x ) 1 0 ) / ( 3 * x ^2 (5 * x ) 2)

>exec ( ' 0 2 1 5 . s c i 2 . 2 5 2D+15


Inf

' ,

1)

Que no es correcto. Y probando con polinomios.

p=

ieee ( 2 ) poly ( [ 1 0 3 q=poly ( [ 2 5 disp disp


t=p / q ( (

1 ] , "x" , " c " )

3 ] , "x" , " c " )

horner ( t ,2 %eps ) ) horner ( t ,2+ %eps ) )


sci ' ,

Obteniendo como resultado al ejecutar este archivo

>exec ( ' 02 15b . 2 . 0 0 2D+15


Inf

1)

Que tampoco es correcto.

2.16. Calcular l y2 y y+3y +2y m y6


3 2 2
Se soluciona descomponiendo los polinomios del denominador y del divisor, y simplicando la funcin.

y 3 + 3y 2 + 2y y(y + 1)(y + 2) y(y + 1) = l m = l m = y2 y 2 y 6 y2 (y 3)(y + 2) y2 y 3 l m = (2)(2 + 1) (2)(1) 2 = = 2 3 5 5


3 2

u +4u +4u 2.17. Calcular l u2 (u+2)(u3) m


Se soluciona descomponiendo los polinomios del denominador y del divisor, y simplicando la funcin.

u3 + 4u2 + 4u u(u + 2)2 u(u + 2) = l m = l m = u2 (u + 2)(u 3) u2 (u + 2)(u 3) u2 u 3 l m = (2)(2 + 2) (2)(0) = =0 2 3 5


3 3

2.18. Calcular l h0 (x+h) x m h


l m

(x + h)3 x3 x3 + 3x2 h + 3xh2 + h3 x3 /h = l m = h0 h0 h h /h = l 3x2 + 3xh + h2 = 3x2 + 0 + 0 = 3x2 m


h0

2.19. Calcular l x1 m
l m

1 1x

3 1x3

x1

1 x3 3 3x 1 3 x3 + 3x 2 = l m = l m = 3 3) x1 (1 x)(1 x x1 (1 x)(x 1)(x2 x 1) 1x 1x


3 y simplicando la funcin.

Se soluciona descomponiendo el polinomio del denominador

= l m

(1)(x3 3x + 2) (1)(x 1)2 (x + 2) (1)(x + 2) = l m = l m = 2 (x2 + x + 1) x1 (x 1) x1 (x 1)2 (x2 + x + 1) x1 x2 + x + 1 = 3 (1)(1 + 2) = = 1 1+1+1 3


n

1 2.20. Calcular l x1 xx1 m


Se soluciona descomponiendo el polinomio del denominador

4 y simplicando la funcin.
i=n1

xn 1 x1 = l m x1 x 1 x1 x 1 l m
n1

i=n1

i=n1

xi = l m
i=0

x1

xi =
i=0 i=0

1i =

=
0

1=n

n 0 n N

2.21. Calcular l x0 m

1+x1 x y2 = 1 + x x = y2 1 x0 y2 1 y 1

Se puede solucionar realizando un cambio de variable Y despus simplicando la funcin.

x0

l m

1+x1 y2 1 y1 = l m 2 = l m 2 = y1 y 1 y1 y 1 x y1 1 1 1 = l m = = (y 1)(y + 1) y1 y + 1 1+1 2

= l m

y1

Aplicando Runi: x3 3x + 2 = (x 1)2 (x + 2) Aplicando Runi: xn 1 = (x 1)


i=n1 i=0

xi

1 0 1 1 1 1 1 1 1 2 x^ n n-1 1 0 1 1 1 1

-3 2 1 -2 -2 0 2 0 n-2 ... n-(n-1)=1 n-n=0 0 0 0 -1 1 1 1 1 1 1 1 0

2.22. Calcular

2x+13 l x4 x22 m f (x) n).

Se soluciona simplicando la funcin, eliminando la divisin de raices que da indeterminacion. Para ello multiplicar y dividir por el conjugado (

2x + 1 3 2x + 1 + 3 x2+ 2 (2x + 1 9)( x 2 + 2) = l l m m = x4 2x + 1 + 3 x2 2 x 2 + 2 x4 (x 2 2)( 2x + 1 + 3) 2x 8 x2+ 2 2(x 4) x2+ 2 x2+ 2 = l m = l m = 2 l m = x4 x 4 x4 x 4 x4 2x + 1 + 3 2x + 1 + 3 2x + 1 + 3 42+ 2 22 2 2 2 =2 = = 3+3 3 24+1+3

2.23. Calcular

2 2 x +p p l x0 2 2 m
x +q q f (x) n).

Se soluciona simplicando la funcin, eliminando la divisin de raices que da indeterminacion. Para ello multiplicar y dividir por el conjugado (

x0

l m

x2 + p2 p x2 + q 2 q = l m x2 x0 x2

x2 + p 2 + p x2 + p 2 + p x2 + q 2 + q x2 + p2

x2 + q 2 + q x2 + q 2 + q

= l m

(x2 + p2 p2 )( x2 + q 2 + q) (x2 + q 2 q 2 )( x2 + p2 + p) 0 + q2 + q p2 +p = 2q q = 2p p

x0

+p + +p 0+ 2 2 42+ 2 22 2 =2 = = 3+3 3 24+1+3 3

= l m

x2 + q 2 + q x2 p2

x0

x1 2.24. Calcular l x1 x1 m
Se puede solucionar realizando un cambio de variable

x = y3 3 x = y x 1 y3 1 y 1

Y despus simplicando la funcin (eliminando las raices cuadradas que quedan).

3 3 3 x1 y 1 y2 + 1 (y 1)(y 2 + 1) l m = l m 3 3 = l m = x1 y3 1 x 1 y1 y 2 1 y 2 + 1 y1 = l m (y 1)(y 2 + 1) y2 + 1 1+1 2 = l m 2 = = 2 + y + 1) y1 (y 1)(y y1 y + y + 1 1+1+1 3


3 3

2.25. Calcular l xa m

x m a xa x = ym m x = y xa ym a y m a
1

Se puede solucionar realizando un cambio de variable Dado que la ecuacin tiene solucin real: la funcin(dividiendo el polinomio por esa
m

ym a = 0 y = a m . 1 5 solucin: x a m ) .

Se puede simplicar

xa

l m

1 y ma (y a m ) x ma = l m m = l m m = n1 1 m xa y a y m a y a (y a m )( m y mn ) n=1 a 1 = 1
l y m a m m n=1

= l m m
y

m n=1

n1 m

y mn

n1 m

y mn

1
m n=1

n1 m

mn m

1
m n=1

n1+mn m

1
m n=1

m1 m

1 ma
m1 m

1 m a1 a m
1

1 m a am = ma ma

2.26. Calcular l x0 m
conjugado (

1+x+x2 1 x

Se soluciona eliminando la indeterminacin (raiz), multiplicando y dividiendo por el

f (x) n). 1 + x + x2 12 1 + x + x2 1 1 + x + x2 + 1 = l m = l m 2+1 x0 x0 x( 1 + x + x2 + 1) x 1+x+x

= l m

x + x2 1+x 1+0 1 1 = l m = = = x0 x( 1 + x + x2 + 1) x0 1+1 2 1+0+0+1 1 + x + x2 + 1 2 l x+ x 33 m 3 x +1

2.27. Calcular
La indeterminacin denominador por

la podemos eliminar dividiendo tanto el numerador y como el

x.
x2 x2
3

x2 3 /x l m = l m 3 x+ x3 + 1 /x x+
5

3 x2 1 x3

1 = l m
x+
3

3 x2 1 x3

x3 x3

1+

Utilizando Runi para dividir: m m-1 m-2 ... m-(m-1)=1 m-(m)=0 1 0 0 0 0 -a a a a .. a a 1 a a ... a 0
1 m 1 m 1 m 2 m 2 m m1 m m1 m m m 1

y m a = (x a m )(

m n=1

n1 m

y mn )

1 =
3

3 +2 1 +3

1+

1 10 = =1 = 3 1 1+0

2.28. Calcular l x m

x+

x2 +1 x+1 + y a . +. 1+ 1+
1 2 1

Hay que calcular el lmite cuando se tiende a

Para calcular el otro lmite, cuando se tiende a

l m

1 1 + x2 x2 + 1 /x = l m = 1 x+1 /x x+ 1 + x

1 1+0 = =1 1+0 1

Para calcular el otro lmite, cuando se tiende a Se realiza el cambio de variable

. x = (t + 1) t = 1 x x t 1 + t + ((t + 1))2 + 1 = l m y+ (t + 1) + 1 (t + 1)2 + 1 = t

l m

x2 + 1 = l m y+ x+1

Realizando otro cambio de variable

u = t + 1 t = 1 u t + u + 1 1 + u2 u2 + 1 /u 1+0 1 = l m = = l m = = 1 1 u+ 1 u /u u+ u 1 01 1

2.29. Calcular l x m
x

x2 + 1

x2 1
+. Ya que x .
al estar la variable

Tan slo hay que calcular el lmite cuando se tiende a

elevada al cuadrado, se obtendr el mismo resultado para

l m

x2

+1

x2

(x2 + 1) (x2 1) x2 + 1 + x2 1 1 = l m = x2 + 1 + x2 1 x x2 + 1 + x2 1 2 2 = =0 21 +1+ x

= l m
x

x2

2.30. Calcular l x x m

x2 + 1 x
+ y a . +.

Hay que calcular el lmite cuando se tiende a

Para calcular el otro lmite, cuando se tiende a

x+

l m x

x2

+ 1 x = l m x
x+

x2

x x2 + 1 + x2 x2 (x2 + 1) x4 + 1x = l m = x+ x x2 + 1 + x2 x x2 + 1 + x2
2

= l m

x2 /x2 x4 + x2 x4 = l m 2 = l m x+ x x2 + 1 + x2 /x x+ x+ x x2 + 1 + x2 = l m 1 1+
1 x2

1
x2 +1 x

= +1

x+

= +1

1 1 1 = = 1+1 2 1+0+1

Para calcular el otro lmite, cuando se tiende a Se realiza el cambio de variable

. x = (t + 1) x = t + 1 x t 1 + t + ( (t + 1))2 + 1 + (t + 1) =

l m x

x2 + 1 x = l (t + 1) m
t+

= (1) l (t + 1) m
t+

(t + 1) + 1 + (t + 1) =

Realizando cambio de variable

u = (t + 1) t + u + 2 + 1 + =

= (1) l m u
u+

u2 + 1 + u = (1)

2.31. Calcular l x0 senxx m tg


sen x sen x = l sen x = l cos x = cos 0 = 1 m m x0 tg x x0 x0 cos x l m

2.32. Calcular l x sen 4x m x


Aqu pienso que hay una errata en el enunciado, debera ser tendiendo a cero. Si es como en el enunciado:

l m

l x sen 4x m |sen 4| 1 sen 4x = = =0 x l x x m

Si fuese tendiendo a cero, si que da el resultado indicado en el libro.

sen 4x 4 sen 4x sen 4x = l m = 4 l m = x0 x0 4 x0 x x 4x l m


Se realiza el cambio de variable

t = 4x x0 t0 sen t =41=4 t0 t

= 4 l m

2.33. Calcular l x0 sen m x


sen2 x0 x2 l m
x 3

2 x 3 2

= l m

sen x sen x 3 3 = l m x0 x0 x x

1 3 1 3

sen x 3 l m x0 x

1 3 1 3

sen x sen x sen x 1 3 = l m x 3 l m x 3 = x0 x 9 x0 3 3

Se realiza el cambio de variable

t= x 3 x0 t0 1 sen t sen t 1 1 = l m l m = 11= t0 9 t0 t t 9 9

x 2.34. Calcular l x0 1cos x m


Para resolverlo utilizamos la propiedad trigonomtrica [2]:

1 cos x = 2 sen2

x 2 .

x0

l m

x = l m 1 cos x x0

x 2 sen2

x 2

= l m
x0

x 2 2 2 = l m 2 x = 1 = 2 x0 sen 2 2 2

1 x x 1 m 1 = = l 2 x x0 sen x 2 sen 2 2 2 2 2 2 = = 2 2 2

2.35. Calcular l x0 x cotg x m


Dada la denicin de la cotangente [1]:

cotg x =

cos x sen x .

x0

l x cotg x = l x m m
x0

x x /x cos x = l m l cos x = l m m cos 0 = x0 sen x /x sen x x0 sen x x0 = l m 1


x0 sen x x

1=

1 1=1 1

2.36. Calcular l m

12 cos sen( ) 3

Realizando el cambio de variable

x= =x+ 3 3 x0 3 1 2 cos(x + ) 1 2 cos 3 L = l m = l m = x0 3 sen sen x 3

Y aplicando las propiedades trigonomtricas [2]:cos (a

+ b) = cos a cos b sen a sen b cos x + = cos x cos sen x sen = 1 cos x 23 sen x 3 3 3 2 2 cos x + = cos x 3 sen x = 1 2 cos x + = 1 cos x + 3 sen x 3 3 1 cos x + 3 sen x = l m 1 cos x + 3 = L1+ 3 sen x

1 cos x + 3 sen x L = l m = l m x0 x0 sen x

x0

SEN( 3 )

Resolviendo el lmite

L1 = l m

l x0 1cos x m l x0 1cos x m 1 cos x /x 1 cos x x x = = = l m sen x x0 x0 sen x /x l x0 x m 1 x

Aplicando la propiedad anteriormente expuesta 2.34.

L1 = l m
Por lo tanto:

2 sen2 x0 x

x 2

= l m

sen x 2
x 2

x0

l sen m
x0

x = 1 sen 0 = 1 0 = 0 2

L = L1 +

3=0+

3=

Bibliografa

[1] Sebastian Marsinyach Dalmases. Edeb, 1975 edition, 1975. [2] Y. Deplanche.

Matemticas /1. FP 1er grado Administrativa. Bruo-

Dicciofrmulas. EDUNSA, Ediciones y Distribuciones Universitarias,

S.A., 1996 edition, 1996. [3] Ferrn Hurtado.

Atlas de Matemticas (anlisis) + ejercicios. Ediciones Jover, S.A.,

1985 edition, 1985. [4] N. Piskunov. 1966.

Clculo Diferencial e Integral. Montaner y Simn S.A., 1970 edition,

Das könnte Ihnen auch gefallen