I am talking about finding a simple, exact, non-trivial solution such as $x = \pi/6$. Of course, $x=0$ or $x=\pi$ are trivial solutions. I created this equation with its exact solution in mind beforehand, so that's how I know the solution, but if you don't know the solution to begin with, how easy is it to find it, other than using trial and error? Is it an exam question that you could ask to high school students? Another similar equation is $\sin x + \sin(2x \sin x) = 1$ and it also has $x=\pi/6$ as a solution. Interestingly, Wolfram Alpha can not find the exact solution, only an approximation (with as many correct digits as you want). See plot of $\sin x + \sin(2x \sin x) - \sin 3x$, below.
Is it hard to solve equations such as $\sin x + \sin(2x \sin x) = \sin 3x$?
359 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 2 best solutions below
On
The rule here is that anything that appears both inside and outside a transcendental function makes it impossible to solve analytically. Examples are
$$ x - 2 \sin(x) = 0 $$ $$ x \cos(x)+\sin(x) = 1 $$
But you can convert any equation that has sines and cosines of $x$ into a polynomial using the tan-half-angle substitution $t = \tan \left( \frac{x}{2} \right)$.
Example, solve:
$$ 3 \sin(x)-\cos(x) = \sqrt{6} $$
Use the substitution $x = 2 \tan^{-1}(t)$ in the expression above which yields $$ \begin{aligned} \sin(x) & = \frac{2 t}{1+t^2} \\ \cos(x) & = \frac{1-t^2}{1+t^2} \end{aligned} $$
Now solve the expression below in terms of $t$
$$ 3 \frac{2 t}{1+t^2} -\frac{1-t^2}{1+t^2} = \sqrt{6} $$
$$ t = \begin{cases} 1+\sqrt{6} & \text{1st solution} \\ \tfrac{1+\sqrt{6}}{5} & \text{2nd solution} \end{cases} $$
with the solution in terms of $x$
$$ x = \begin{cases} 2 \tan^{-1}\left(1+\sqrt{6}\right) = 2.57727... & \text{1st solution} \\ 2 \tan^{-1}\left( \frac{1+\sqrt{6}}{5}\right) = 1.20783... & \text{2nd solution} \end{cases} $$
Confirmation:
$$ \left. 3 \sin(2.57727)-\cos(2.57727) = \sqrt{6} \phantom{\matrix{\\ \\}} \right\} 2.4494897...=2.4494897... $$
and
$$ \left. 3 \sin(1.20783)-\cos(1.20783) = \sqrt{6} \phantom{\matrix{\\ \\}} \right\} 2.4494897...=2.4494897... $$

Just kidding : if you expect analytical solutions for such monsters, stop dreaming !
Now, being serious : take into account that the simple $x=\cos(x)$ does not shw analytical solutions and needs to be solved using numerical methods.
Consider that you look for the zero's of $$f(x)=\sin (x) + \sin(2x \sin (x)) -\sin (3x)$$ Plot the function and, visually, locate where (more or less) is the root you want (there is an infinite number of solutions). Call this value $x_0$ and start using Newton method which will update the guess according to $$x_{k+1}=x_k-\frac{f(x_k)}{f'(x_k)}$$
For example, there is root "around" $x=2$. Let us try to get the following iterates $$\left( \begin{array}{cc} k & x_k \\ 0 & 2.0000000000000000000 \\ 1 & 2.2077878077914573503 \\ 2 & 2.2372992747296569378 \\ 3 & 2.2389331854770425722 \\ 4 & 2.2389386369537428867 \\ 5 & 2.2389386370146724403 \end{array} \right)$$ which is the solution for twenty significant figures.