- #1
Proofrific
- 12
- 0
[solved] Integral of Product of Three Cosines
I'm trying to determine the integral of the product of three cosines:
[tex]\int_0^\infty \cos \left( \frac{n \pi t}{T} \right) \cos \left( \frac{m \pi t}{T} \right) \cos \left( \frac{l \pi t}{T} \right) dt [/tex]
for [tex]n, m, l[/tex] integers.
Some of the results are obvious. For example, if n = m = l, then the integral is zero.
I tried various relations between m, n, and l in Mathematica. For example,
yields the result 0. But, this is clearly wrong, as
satisfies the previous form of m ==n, n != l, but it evaluates to T/4.
Does anyone know the relationships between n, m, and l, which yield T/4 as the integral of
[tex]\int_0^\infty \cos \left( \frac{n \pi t}{T} \right) \cos \left( \frac{m \pi t}{T} \right) \cos \left( \frac{l \pi t}{T} \right) dt[/tex]
I'm trying to determine the integral of the product of three cosines:
[tex]\int_0^\infty \cos \left( \frac{n \pi t}{T} \right) \cos \left( \frac{m \pi t}{T} \right) \cos \left( \frac{l \pi t}{T} \right) dt [/tex]
for [tex]n, m, l[/tex] integers.
Some of the results are obvious. For example, if n = m = l, then the integral is zero.
I tried various relations between m, n, and l in Mathematica. For example,
Code:
Assuming[{n \[Element] Integers, m \[Element] Integers,
l \[Element] Integers, m == n, n != l},
Integrate[
Cos[(n \[Pi] \[Tau])/T] Cos[(m \[Pi] \[Tau])/T] Cos[(
l \[Pi] \[Tau])/T], {\[Tau], 0, T}]
]
Code:
Integrate[
Cos[(3 \[Pi] \[Tau])/T]^2 Cos[(6 \[Pi] \[Tau])/T], {\[Tau], 0, T}]
Does anyone know the relationships between n, m, and l, which yield T/4 as the integral of
[tex]\int_0^\infty \cos \left( \frac{n \pi t}{T} \right) \cos \left( \frac{m \pi t}{T} \right) \cos \left( \frac{l \pi t}{T} \right) dt[/tex]
Last edited: