I am looking for a proof, a hint or an idea to the following problem:
Is the unique solution $x\in (0,2\pi)$ of
$$ x\sin(x) + \cos(x) = 1 $$
which is equivalent to
$$ 2\arctan(x) = x$$
a rational multiple of $\pi$. I.e. is $\frac{x}{\pi} \in \mathbb{Q}$?
I believe that this is not true. This idea is based on the numeric solution, which does not look very rational:
Wolfram Alpha Solve: $x\pi\sin(x\pi) + \cos(x\pi) = 1, x\in(0,1)$ or Wolfram Alpha Solve: $2\arctan(x\pi) = \pi x, x\in(0,1)$
One idea is to use Thomas Andrews answer:
$\arctan(x)$ is a rational multiple of $\pi$ if and only if the complex number $1+xi$ has the property that $(1+xi)^n$ is a real number for some positive integer $n$. This is not possible if $x$ is a rational, $|x|\neq 1$, because $(q+pi)^n$ cannot be real for any $n$ if $(q,p)=1$ and $|qp|>1$. So $\arctan(\frac{p}{q})$ cannot be a rational multiple of $\pi$. (His full answer and proof can be found here: ArcTan(2) a rational multiple of $\pi$?)
Now, one would need to show: If $x$ is a rational multiple of $\pi$, is there an $n$, such that $(q+p\pi i)^n$ is real? For $p,q,n \in \{1,\ldots,100\}$ Mathematica says no:
Do[Do[Do[If[(p + Pi*I*q)^n \[Element] Rationals,
Print[n, p, q],], {n, 1, 100}], {p, 1, 100}], {q, 1, 100}]
Thanks in advance.