The problem is as follows:
$\textrm{Solve and round $x$ to two decimals}$
$$\ln x - \sin 2x= 0$$
There is no indication whether if is allowed to use a calculator or software assistance like Maple. Therefore my first choice was to use any algebraic manipulation if this can be solved that way.
However, the only thing I could come up was to use this:
$$\ln x - \sin 2x= 0$$
$$\ln x - \ln e^{sin 2x}=0$$
$$\ln\left (\frac{x}{e^{\sin 2x}} \right )=0$$
$$\textrm{antiln}\left (\ln\left (\frac{x}{e^{\sin 2x}} \right ) \right)= \textrm{antiln} (0)$$
$$\frac{x}{e^{\sin 2x}}= 1$$
$$x-e^{\sin 2x}=0$$
But it got stuck here, moreover, If I try to use the inverse function of the sine equation does not help much.
I'm also confused about this step with logarithm manipulation:
If I use the $\textrm{antiln}$ just straight at the beginning of the equation;
$$\ln x - \sin 2x= 0$$
$$\textrm{antiln}\left( \ln x- \sin 2x \right ) = \textrm{antiln} (0)$$
Would become into:
$$x - e^{\sin 2x}= e^{0}=1$$
But this latter equation does not seem the same of what I obtained before. Did I misunderstood something?. I need assistance with these doubts.
Edit:
Now moving onto Maple (which is the part which has not yet been answered):
I tried using this command:
solve(ln(x)-sin(2*x)=0,x)
and I got:
$$1/2*\textrm{RootOf}\left(_Z-2\exp(sin(_Z))\right )$$
I don't know what does it mean?, and why it does not produce a numeric result?. Can somebody help me with this matter?.
I'd like also some help how to make Maple to plot a graph of the function showing the answer. How do I achieve this?.
I strongly doubt you will be able to solve this equation analytically for $x$; it is a transcendental equation where the variable appears in both arguments of transcendental functions. This will require some numerical methods to solve such as iterative root-finding methods.
You can employ Newton's which is given by
$$ x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}, $$
where $$ f(x) = \ln(x) -\sin (2x), \quad f'(x) = \frac{1}{x_n} - 2\cos(2x_n). $$
Using an initial value $x_0 = 1/2$, WA gives the following $x = 1.399942...$ reaching machine precision after $7$ iterations. The associated diagram is given by
In response to OP's comments:
Determining a suitable initial guess $x_0$ can present some issues. I would advise you consult the wiki article for more details. One way in determining a good initial guess is to plot the functions. This gives a rough value for $x_0$ value by inspection.
The RoofOf output is what Maple produces for solve-for equations. It is a placeholder for all the roots of some variable. You can then apply various functions to this such as evalf etc. to get some numerical result.
The video lecture by MapleSoft shows how to utilise the Student[Calculus1] package in Maple. It discusses