I'm new to Mathematica and I'm trying to solve this set of trig equations (I'm not exactly sure if the syntax looks correct):
Solve[Tan[(delta + beta)/2] == nz*Tan[theta/2] &&
ny*Tan[(delta - beta)/2] == nx &&
Cos[(delta + beta)/2]*Cos[gamma/2] == Cos[theta/2], {delta, beta,
gamma}, Reals]
The goal is to solve for delta, beta
and gamma
. I want to substitute different values of nx,ny,nz,theta
into these equations and get the solutions. How can I substitute those values in there? Thanks:)