Expand cos^5t in Mathematica: Guide & Steps

  • Context: Mathematica 
  • Thread starter Thread starter Dustinsfl
  • Start date Start date
  • Tags Tags
    Mathematica
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
Dustinsfl
Messages
2,217
Reaction score
5
How can I tell Mathematica to expand cos^5 t?

The command expand doesn't do it.
 
Physics news on Phys.org
dwsmith said:
How can I tell Mathematica to expand cos^5 t?

The command expand doesn't do it.

Are you trying to write it in first degree terms of sine and cosine? If so, expand isn't the command to do this and I don't know off the top of my head if there is one that would do such a thing.
 
Is
$$\cos^{5}(t)=\frac{10\cos(t)+5\cos(3t)+\cos(5t)}{16}$$
helpful?
 
Ackbach said:
Is
$$\cos^{5}(t)=\frac{10\cos(t)+5\cos(3t)+\cos(5t)}{16}$$
helpful?

I learned something new today; I didn't realize that this was an option in Mathematica. The command:

Code:
TrigReduce[Cos[x]^5]

outputs what Ackbach posted above.