I am trying to use Mathematica to Eliminate 3 following variable from 4 equations. Any clue or link to similar solved problem is highly appreciated:
eq = {
Cos[θ] + Cos[ϕ] + Cos[ψ] == a,
Sin[θ] + Sin[ϕ] + Sin[ψ] == b,
Cos[2 θ] + Cos[2 ϕ] + Cos[2 ψ] == c,
Sin[2 θ] + Sin[2 ϕ] + Sin[2 ψ] == d};
Eliminate[eq, {θ, ϕ, ψ}]

eq = TrigExpand @ {...– wxffles Sep 03 '14 at 00:37Solvecan eliminate variables too, e.g.Solve[eq, {a, b, c, d}, {θ, ϕ, ψ}, InverseFunctions -> True]it is even smarter thanEliminate(read carefully this answer). This can be helpful as well. – Artes Sep 03 '14 at 01:37