I would like to make this manipulation:
Solve[r Sin[α[t]] + l Cos[ϕ[t]] Sin[γ[t]] == 0, l*Cos[ϕ[t]]]
But it seems that the Solve function works only with variables.
However,
Solve[r Sin[α[t]] + l Cos[ϕ[t]] Sin[γ[t]] == 0, Cos[ϕ[t]]]
works
Have you an idea to have a direct way to code the first code line?
Solve[r Sin[\[Alpha][t]] + l Cos[\[Phi][t]] Sin[\[Gamma][t]] == 0 /. l Cos[\[Phi][t]] -> z, z][[1]] /. z -> l Cos[\[Phi][t]]– Bob Hanlon Feb 12 '17 at 13:40