Está en la página 1de 6

MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.

TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 1 DE 6

COMPETENCIA: Manejar los conceptos de TRANSFORMADA DE Y ANTI-TRANSFORMADA DE FOURIER..

Utilizando las tablas de PARES DE TRANSFORMADAS DE


FOURIER, encuentre las transformadas de FOURIER para las siguientes
funciones del tiempo y utilice el software MATLAB para verificar sus
resultados :
a) f(t) = e - 4 t

Entrando en las tablas por el dominio del tiempo, se puede encontrar que:

F(w) = F [ e-
at
] = 2a .

a2 + w2

F(w) = F [ e–
4t
] = 2*4 .

42 + w2

F(w) = 8 .

16 + w 2

Verificando con MATLAB :

>>syms t w

>>F=fourier(exp(-4*t))

>>pretty(F)

b) g( t ) = 5 e - 4 t

Por propiedades de la F y por tablas:

G(w) =F [ B* e– F
at at
] = B* [ e– ] = B * 2a .

a2 + w2

G(w) = F [ 5 * e–
4t
] = 5 * 2*4 .

42 + w2

G(w) = 40 .

16 + w 2

Verificando con MATLAB :

>>syms t w

>>G=fourier(5*exp(-4*t))

>>pretty(G)
MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.
TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 2 DE 6

c) m(t) =δ(t)

Por tablas se puede encontrar que:

M( w ) = F [ δ(t) ] = 1

Verificando con MATLAB :

>>syms t w

>>M=fourier(sym(‘Dirac(t)’))

d) i ( t ) = 18 δ(t)

Por tablas y por propiedades se puede encontrar que:

I(w) = F [ 18 * δ ( t ) ] = 18 * 1

I(w) = 18

Verificando con MATLAB :

>>syms t w

>>Iw=fourier(sym(‘18*Dirac(t)’))

>>pretty(Iw)

e) v ( t ) = 26 δ( t - 3 )

Por tablas se puede encontrar que:

F(w) = F [ δ ( t – t0 ) ] = ℮ -jw t
0

Y por propiedades tenemos que :

F(w) = F [ A δ ( t – t0 ) ] = A ℮ -jw t
0

Entonces :

V(w) = F [ 26 δ ( t – 3 ) ] = 26 ℮ -jw 3

- j 3w
V(w) = 26 ℮

Verificando con MATLAB :

>>syms t w

>>V=fourier(sym(‘26*Dirac(t-3)’))

>>pretty(V)
MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.
TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 3 DE 6

f) h ( t ) = 12 sen ( 8 t )

Por tablas se puede encontrar que:

F(w) = F [ sen ( w0 t) ] = -jл δ(w–w0 ) + jл δ(w+w0 )


Y por propiedades tenemos que :

F(w) = F [ A * sen ( w0 t) ] = A * { -jл δ(w–w0 ) + jл δ(w+w0 ) }

F(w) = - j Aл δ ( w – w 0 ) + jAл δ( w + w 0 )

Entonces:

H(w) = - j 12 л δ ( w – 8 ) + j 12 л δ ( w + 8 )

H(w) = - j 37.69 δ ( w – 8 ) + j 37.69 δ ( w + 8 )

Que corresponde a la suma de dos señales impulso con amplitudes imaginarias, una positiva y otra
negativa, con valor j 37.69 unidades.

Verificando con MATLAB :

>>syms t w

>>H=fourier(12*sin(8*t))

>>pretty(H)

g) p(t) = 6 μ(t–5)

Por tablas se puede encontrar que:

F(w) = F [ μ(t–5 ) ] = л δ(w) - j e– j w 5

Y por propiedades tenemos que :

P( w ) = F [ 6* μ(t–5) ] = 6 * { л δ(w) - j e–j


w 5
}

P( w ) = F [ 6* μ(t–5) ] = 6л δ(w) - j6 e–j


w5

P( w ) = F [ 6* μ(t–5) ] = 18.85 δ(w) - j6 e–j


w5

Que corresponde a la suma de dos señales en el dominio de la w: Un impulso con amplitud + 18. 85 unidades y una función
exponencial con amplitud imaginaria ( - j 6 / w) unidades.

Verificando con MATLAB :


MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.
TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 4 DE 6

>>syms t w

>>P=fourier(sym(‘6*Heaviside(t-5)’))

>>pretty(P)

Utilizando las tablas de PARES DE TRANSFORMADAS DE


FOURIER, encuentre las Anti-transformadas de FOURIER para las
siguientes funciones en el dominio de la frecuencia angular w. Utilice el
software MATLAB para verificar sus resultados :

a) R(w) = 5

Entrando en las tablas por el dominio de la frecuencia angular w, se puede encontrar que:

F(w) =1

f(t) = F -1 [ F(w) ] = δ ( t)
Entonces:

r(t) = F -1 [ R (w) ] = F -1 [ 1 ] = δ ( t)

r(t) = δ ( t ) ; Este es el resultado, una función impulso en el dominio del tiempo, con amplitud 1.
Verificando con MATLAB :

>>syms t w

>>r=ifourier(sym(‘1’) , t)

>>pretty(r)

b) N(w) = 5

Por propiedades de la Anti-transformada tenemos que si:

F ( w ) = A G(w)

f(t) = F -1 [ A * G(w) ] = A * F -1 [ G(w) ] = A * g(t)


Entonces si redefinimos la función de manera conveniente:

R(w) = 5 * 1

r(t) = F -1 [ R(w) ] = 5* δ ( t) = 5 δ( t)

r(t) = 5 δ( t)
El resultado es una función impulso en el dominio del tiempo con amplitud igual a 5 unidades.
MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.
TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 5 DE 6

Verificando con MATLAB :

>>syms t w

>>r=ifourier(sym(‘5’),t)

>>pretty(r)

c) Z(w) = 1 .

3 + j w

Por Tablas de la Anti-transformada tenemos que si:

F(w) = 1 .

a + j w

f(t) = F -1 [ F (w) ] = ℮-
at
* μ(t)

Por lo tanto:

z (t) = F -1
[ Z(w) ] = F -1
[ 1 . ] = ℮-
3 t
* μ(t)

3 + j w

d) Y(w) = 16 .

3 + j w

La función puede re-escribirse de manera conveniente:

Y(w) = 16 . = 16 * 1 .

3 + j w 3 + j w

Por Tablas y propiedades de la Anti-transformada tenemos que si:

F -1 [ A * G(w) ] = A * F -1 [ G(w) ] = A * g(t)


Por lo tanto:

y(t) = 16 * F -1 [ 1 . ] = 16 * ℮-
3 t
* μ(t)

3 + j w

3 t
y(t) = 16 ℮- * μ(t)

Verificando con MATLAB :


MEX-33 ITM. MATEMÁTICAS ESPECIALES. Docente: Martha Guzmán.
TALLER PROBLEMAS RESUELTOS TPR CLASE # 12 CLASE # 12 Página # 6 DE 6

>>syms t w

>>y=ifourier(16/(3+j*w),t)

>>pretty(y)

e) V ( w ) = 16 л δ ( w - 3 ) + 16 л δ ( w + 3 )
Por propiedades de la Anti-transformada tenemos que si:

F -1 [ A * G(w) ] = A * F -1 [ G(w) ]

Podemos re-escribir la V ( w ) de manera conveniente:

V ( w ) = 16 * { л δ( w - 3) + л δ( w + 3 ) }

v (t) = F -1 [ V (w) ] = 16 * { Cos ( 3 t ) }

v ( t ) = 16 Cos ( 3 t ) ; Este es el resultado y corresponde a una señal coseno con amplitud 16.

Verificando con MATLAB :

>>syms t w

>>v=ifourier(syms(‘16*(pi*Dirac(w-3)+pi*Dirac(w+3))’))

>>pretty(v)

También podría gustarte