Solving trignometric terms with maxima

走远了吗. 提交于 2020-01-24 08:57:05

问题


I try to get all roots of cos(x) with wxMaxima

(%i29)solve(cos(x)=0,x);
solve: using arc-trig functions to get a solution.
Some solutions will be lost.
(%o29) [x=%pi/2]

The solution gets solved by using arccos.

How can i get all solutions for a given domain? e.g. [0; 5*pi]


回答1:


Using to_poly_solve you can obtain all solutions:

to_poly_solve(cos(x)=0,x);



来源:https://stackoverflow.com/questions/44872011/solving-trignometric-terms-with-maxima

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!