Tagged Questions
2
votes
2answers
194 views
How do I get the solutions of a cubic equation in trigonometric form?
I know $x^3-3 x+1=0$ has three roots that can be expressed in trigonometric form:
$\{2\sin(10^\circ),\,-2\cos(20^\circ),\,2\cos(40^\circ)\}$.
How can I get this result with Mathematica?
4
votes
2answers
208 views
Both Sin[x]==0 && Cos[x]==0 as a solution
If I do
FullSimplify[Reduce[Sin[p1] == 0 && Cos[p1] == 0, Reals]]
I get
Cos[p1] == 0 && Sin[p1] == 0
...
4
votes
2answers
591 views
How do I work with Root objects?
I want to solve the trigonometric equation :
$$(3-\cos 4x )\cdot (\sin x - \cos x ) = 2.$$
I tried
Solve[(3 - Cos[4*x])*(Sin[x] - Cos[x]) == 2, x]
It returns the ...
5
votes
2answers
517 views
Solving a trig equation
I am trying to find an explicit solution to a trigonometric equation. It is running for a long time and I didn't get any result, but Maple solves it quickly. Why ?
...