Está en la página 1de 6

Funciones par e impar

Pablo Cruz Rodrguez - 212356358


Universidad de Guadalajara
30 de septiembre de 2016
Resumen
En esta tarea se comprueba de forma grafica y algebraica, si las funciones dadas son pares o
impares.

Definiciones
Una funci
on f es par cuando f (x) = f (x), para todos los valores de x. Dicho graficamente,
una funci
on es par cuando es simetrica a lo largo del eje y.
Una funci
on f es impar cuando f (x) = f (x) para todos los valores de x. Dicho graficamente, las funciones impares se ven iguales al ser reflejadas a lo largo del eje y y despues a lo
largo del eje x (y viceversa).

Funciones
1. f (x) = x2

4. f (x) = x

2. f (x) = x3

5. f (x) = ex

3. f (x) = x3 + 2

6. f (x) = ex

1ra Parte
Forma Algebraica
Para cada funci
on se eval
ua en el orden: par, impar. Si la relacion se cumple se detiene el
procedimiento de evalucaci
on, dejando indicado como ninguno en caso de no cumplir ninguna
relaci
on.
1. f (x) = x2
f (x) = (x)2 = x2
x2 = x2
es par

f (x) = (x)3 = x3
x3 6= x3
no es par
f (x) = (x)3 = x3
f (x) = x3
x3 = x3

2. f (x) = x3

es impar
5. f (x) = ex
f (x) = e(x) = ex
ex 6= ex
no es par
f (x) = ex
f (x) = ex
ex 6= ex
ninguno.

3. f (x) = x2 + 2
f (x) = (x)3 + 2 = 2 x3
(x2 + 2) 6= (2 x3 )
no es par
f (x) = 2 x3
f (x) = (x3 + 2)
(2 x3 ) 6= ((x3 + 2))
ninguno.

6. f (x) = ex
f (x) = ex
ex 6= ex
no es par
f (x) = ex
f (x) = ex
ex 6= ex
ninguno.

4. f (x) = x
f (x) = (x) = x
x 6= x
no es par
f (x) = x
f (x) = (x) = x
x = x
es impar

De la evalucaci
on anterior decimos que nuestras funciones son como sigue:
1. f (x) = x2

Par

4. f (x) = x Impar

2. f (x) = x3

Impar

5. f (x) = ex

3. f (x) = x3 + 2

6. f (x) = ex

Ninguno

Ninguno
Ninguno

C
odigo Octave
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

subplot (2 ,3 ,1)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x ^2 , FontSize ,14)
x1 = -2:0.01:2;
y1 = x1 .^2;
plot ( x1 , y1 , b , linewidth ,3);
subplot (2 ,3 ,2)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x ^3 , FontSize ,14)
y2 = x1 .^3;
plot ( x1 , y2 , m , linewidth ,3);
subplot (2 ,3 ,3)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x ^3+2 , FontSize ,14)
y3 = x1 .^3+2;
plot ( x1 , y3 , g , linewidth ,3);

22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

subplot (2 ,3 ,4)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x , FontSize ,14)
y4 = x1 ;
plot ( x1 , y4 , m , linewidth ,3);
subplot (2 ,3 ,5)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= e ^{ - x } , FontSize ,14)
y5 = exp ( - x1 );
plot ( x1 , y5 , b , linewidth ,3);
subplot (2 ,3 ,6)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= e ^{ x } , FontSize ,14)
y6 = exp ( x1 );
plot ( x1 , y6 , r , linewidth ,3);

Gr
aficas

Figura 1: Gr
afica de cada funcion. Para todas las funciones x va de -2 a 2
De las gr
aficas anteriores las funciones son:
1. f (x) = x2

Par, ya que tiene simetra en el eje y.

2. f (x) = x3
el eje x.

Impar, ya que tiene simetra si reflejamos primero hacia el eje y y luego hacia

3. f (x) = x3 + 2 Ninguno. No puede ser par porque no tiene simetra en el eje y, tampoco
es impar ya que se encuentra desplazada en el eje y y al no pasar por el origen, no tiene
simetra en el eje x.
4. f (x) = x Impar, ya que solo es simetrica si se refleja primero hacia el eje y y luego al x
5. f (x) = ex Ninguno, ya que al no tener simetria en y y no pasar por el origen no hay
simetra en ningun eje

6. f (x) = ex

Ninguno, es mismo caso que con la funcion anterior.

2da parte
Evaluaci
on Algebraica
Nuevamente se realiza una evaluacion de forma algebraica, para encontrar sus componentes
par e impar de cada funci
on, con la siguiente forma:
f (x) + f (x)
2
f (x) f (x)
Impar :
2
P ar :

1. f (x) = x2
Par:

x2
x2
(x)2 + (x)2
=
+
= x2
2
2
2

Impar:
(x)2 (x)2
x2
x2
=

=0
2
2
2
2. f (x) = x3
Par:

(x)3 + (x)3
x3
x3
=

=0
2
2
2

Impar:
(x)3 (x)3
x3
x3
=
+
= x3
2
2
2
3. f (x) = x3 + 2
Par:

x3 + 2 x3 + 2
4
((x)3 + 2) + ((x)3 + 2)
=
= =2
2
2
2

Impar:
((x)3 + 2) ((x)3 + 2)
x3 + 2 + x3 2
2x3
=
=
= x3
2
2
2
4. f (x) = x
Par:

(x) + (x)
0
= =0
2
2

Impar:
(x) (x)
2x
=
=x
2
2

(1)
(2)

5. f (x) = ex
Par:

e(x) + e(x)
ex + ex
=
2
2

Impar:
e(x) e(x)
ex ex
=
2
2
6. f (x) = ex
Par:

e(x) + e(x)
ex + ex
=
2
2

Impar:
e(x) e(x)
ex ex
=
2
2

C
odigo Octave
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

35
36
37
38
39
40
41
42
43
44
45
46
47
48
subplot (2 ,3 ,2)
49
xlabel ( x ); hold on
50
ylabel ( f ( x ) ); grid
51
title ( f ( x )= x ^3 , FontSize ,14)
52
y2 = x1 .^3;
53
y21 =(( x1 ).^3+( - x1 ).^3)/2; % %par
54
y22 =(( x1 ).^3 -( - x1 ).^3)/2;
55
plot ( x1 , y2 , b , linewidth ,6);
56
plot ( x1 , y21 , g , linewidth ,2);
57
plot ( x1 , y22 , r , linewidth ,2);
58
59
subplot (2 ,3 ,3)
60
xlabel ( x ); hold on
61
ylabel ( f ( x ) ); grid
62
title ( f ( x )= x ^3+2 , FontSize ,14)
63
y3 = x1 .^3+2;
y31 =((( x1 ).^3+2)+(( - x1 ).^3+2))/2; % %par 64
65
y32 =((( x1 ).^3+2) -(( - x1 ).^3+2))/2;
66
plot ( x1 , y3 , b , linewidth ,6);
67
plot ( x1 , y31 , g , linewidth ,2);
plot ( x1 , y32 , r , linewidth ,2);
subplot (2 ,3 ,1)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x ^2 , FontSize ,14)
x1 = -2:0.01:2;
y1 = x1 .^2; %funcion
y11 =(( x1 ).^2+( - x1 ).^2)/2; % %par
y12 =(( x1 ).^2 -( - x1 ).^2)/2;
plot ( x1 , y1 , b , linewidth ,6);
plot ( x1 , y11 , g , linewidth ,2);
plot ( x1 , y12 , r , linewidth ,2);

subplot (2 ,3 ,4)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= x , FontSize ,14)
y4 = x1 ;
y41 =(( x1 )+( - x1 ))/2;
y42 =(( x1 ) -( - x1 ))/2;
plot ( x1 , y4 , b , linewidth ,6);
plot ( x1 , y41 , g , linewidth ,2);
plot ( x1 , y42 , r , linewidth ,2);
subplot (2 ,3 ,5)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= e ^{ - x } , FontSize ,14)
y5 = exp ( - x1 );
y51 =( exp ( - x1 )+ exp ( -( - x1 )))/2;
y52 =( exp ( - x1 ) - exp ( -( - x1 )))/2;
plot ( x1 , y5 , b , linewidth ,6);
plot ( x1 , y51 , g , linewidth ,2);
plot ( x1 , y52 , r , linewidth ,2);
subplot (2 ,3 ,6)
xlabel ( x ); hold on
ylabel ( f ( x ) ); grid
title ( f ( x )= e ^{ x } , FontSize ,14)
y6 = exp ( x1 );
y61 =( exp ( x1 )+ exp ( - x1 ))/2;
y62 =( exp ( x1 ) - exp ( - x1 ))/2;
plot ( x1 , y6 , b , linewidth ,6);
plot ( x1 , y61 , g , linewidth ,2);
plot ( x1 , y62 , r , linewidth ,2);

Grafica de f (x) y sus componentes par e impar

Figura 2: Gr
afica de cada funci
on (azul) y sus componentes par (verde) e impar (rojo)

Notas
- GNU Octave, version 4.0.3. El codigo usado esta probado en Matlab R2016a
- Apuntes de clase ET208, Ingeniera en Comunicaciones y Electronica, UDG 2016B.
- https://es.khanacademy.org/math/algebra2/polynomial-functions/introduction-to-symmetryof-functions/v/recognizing-features-of-functions-2-example-2 29/09/16

También podría gustarte