Reputation: 336
I'm trying to solve a trigonometric function assuming positive values of the independent variable. However seems like Maxima does not take into account such assumption for the solve routine.
assume(t >0);
solve(sin(t) = 0);
The expected result:
[t=%pi]
What I get:
[t=0]
Upvotes: 2
Views: 2532