Integral de cos(w*t)*exp(-i*w*t) dt
Solución
Respuesta (Indefinida)
[src]
/// /t*w\ 2/t*w\ \
||| 2*tan|---| t*w*tan |---| |
||| \ 2 / t*w \ 2 / |
|||----------------- - ----------------- + ----------------- for w != 0 |
||< 2 2 2/t*w\ 2 2 2/t*w\ 2 2 2/t*w\ for w = 0|
|||w + w *tan |---| w + w *tan |---| w + w *tan |---| |
/ ||| \ 2 / \ 2 / \ 2 / | // t for w = 0\
| ||| | || |
| -I*w*t ||\ 0 otherwise | || -I*t*w |
| cos(w*t)*e dt = C + w*|< | + |
∫et−iwcos(tw)dt=C+w⎩⎨⎧⎩⎨⎧w2tan2(2tw)+w2twtan2(2tw)−w2tan2(2tw)+w2tw+w2tan2(2tw)+w22tan(2tw)0forw=0otherwise2wt+{−4w2ie−2itw−2wtfor4w2=0otherwiseforw=0otherwise+({twie−itwforw=0otherwise)cos(tw)
// -2*I*t2*w \
|| I I*e |
||- --- + ------------ for And(w > -oo, w < oo, w != 0)|
t2 || 4*w 4*w |
-- + |< |
2 || t2 |
|| -- otherwise |
|| 2 |
\\ /
2t2+{−4wi+4wie−2it2w2t2forw>−∞∧w<∞∧w=0otherwise
=
// -2*I*t2*w \
|| I I*e |
||- --- + ------------ for And(w > -oo, w < oo, w != 0)|
t2 || 4*w 4*w |
-- + |< |
2 || t2 |
|| -- otherwise |
|| 2 |
\\ /
2t2+{−4wi+4wie−2it2w2t2forw>−∞∧w<∞∧w=0otherwise
t2/2 + Piecewise((-i/(4*w) + i*exp(-2*i*t2*w)/(4*w), (w > -oo)∧(w < oo)∧(Ne(w, 0))), (t2/2, True))
Estos ejemplos se pueden aplicar para introducción de los límites de integración inferior y superior.