Just as a simple example, say I wanted to solve Sin[x] == a for x with the constraints -1<=a<=1 and 0 < x < Pi. Is there any way to do this?
Asked
Active
Viewed 37 times
0
Solve[Sin[x] == a && -1 <= a <= 1 && 0 < x < Pi, x]– Artes Oct 01 '13 at 18:56Solvehere is just an adequate approach, but in more general cases one would rather useReduceorSolve[..., MaxExtraConditions-> All]. Take a look at What is the difference between Reduce and Solve? or How do I work with Root objects? – Artes Oct 01 '13 at 19:07