How do you use Factor so that it will factor expressions inside the arguments of some bigger expression.
For example
Factor[ Cos[t w - t z]]
gives
Cos[t w - t z]
but i would like it to give:
Cos[t(w - z)]
|
How do you use Factor so that it will factor expressions inside the arguments of some bigger expression. For example
gives
but i would like it to give:
|
|||
|
You need to
Or with infix notation:
|
|||||
|
|
You want to use Collect instead of Factor.
This gives:
Hope it helps. |
|||
|
|
Simplify[Cos[t w - t z]]– rm -rf♦ Feb 3 at 0:22