If I do
FullSimplify[Reduce[Sin[p1] == 0 && Cos[p1] == 0, Reals]]
I get
Cos[p1] == 0 && Sin[p1] == 0
while I would expect False. why? is there a way to have mathematica compute that both sin and cos cannot be 0?
|
If I do
I get
while I would expect False. why? is there a way to have mathematica compute that both sin and cos cannot be 0? |
||||
|
As noted, specifying the variable of interest within
|
||||
|
|
|
Because |
|||||||
|
Reduce[Sin[p1] == 0 && Cos[p1] == 0, p1]returns the expected result. – J. M.♦ Nov 10 '12 at 17:03Realsis unnecessary. – Artes Nov 10 '12 at 17:12Read the FAQs! 3) When you see good Q&A, vote them up byclicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. ALSO, remember to accept the answer, if any, that solves your problem,by clicking the checkmark sign` – chris Nov 10 '12 at 17:21