Integral de sin(kx) dx
Solución
Respuesta (Indefinida)
[src]
/ //-cos(k*x) \
| ||---------- for k != 0|
| sin(k*x) dx = C + |< k |
| || |
/ \\ 0 otherwise /
$$\int \sin{\left(k x \right)}\, dx = C + \begin{cases} - \frac{\cos{\left(k x \right)}}{k} & \text{for}\: k \neq 0 \\0 & \text{otherwise} \end{cases}$$
/1 cos(k*l)
|- - -------- for And(k > -oo, k < oo, k != 0)
$$\begin{cases} - \frac{\cos{\left(k l \right)}}{k} + \frac{1}{k} & \text{for}\: k > -\infty \wedge k < \infty \wedge k \neq 0 \\0 & \text{otherwise} \end{cases}$$
=
/1 cos(k*l)
|- - -------- for And(k > -oo, k < oo, k != 0)
$$\begin{cases} - \frac{\cos{\left(k l \right)}}{k} + \frac{1}{k} & \text{for}\: k > -\infty \wedge k < \infty \wedge k \neq 0 \\0 & \text{otherwise} \end{cases}$$
Piecewise((1/k - cos(k*l)/k, (k > -oo)∧(k < oo)∧(Ne(k, 0))), (0, True))
Estos ejemplos se pueden aplicar para introducción de los límites de integración inferior y superior.