11

True or false: For every $N\in\mathbb{N}$, there exists $k\in\mathbb{N}$ such that $\sin{(k^n)}<0$ for $n=1,2,3,...,N$.

I made up this question. I suspect the statement is true. I have considered complex numbers ( $\sin{(k^n)}=\text{Im}(e^{k^n i})$ ), proof by contradiction, and induction, to no avail.

As an example, for $N\le10$ we have $k=539$.

EDIT

As @durianice commented, $\sin{(539^7)}>0$. (I was using desmos, which is not precise enough to calculate the sine of huge numbers.)

Dan
  • 35,053

1 Answers1

4

It is true. In fact, the natural density of such $k$ is $2^{-N}$. There's probably a nicer way to show this, but everything we need is given here.

A natural number $k$ satisfies $\sin(k^n)<0$ if and only if $\operatorname{frac}(\frac{k^n}{2\pi})>\frac{1}{2}$. We show that the sequence of vectors $\{(\frac{k^1}{2\pi}, \dots, \frac{k^N}{2\pi})\}_{k\in \mathbb{N}}$ is uniformly distributed mod 1.

By the multidimensional version of Weyl's Criterion it suffices to show that for all $\ell\in\mathbb{Z}^N$ the sequence $p(k) := \{\sum_{n=1}^N \ell_n \frac{k^n}{2\pi}\}_{k\in \mathbb{N}}$ is uniformly distributed mod 1. Since any integer multiple of $\frac{1}{2\pi}$ is irrational, $p(k)$ is a polynomial in $k$ with an irrational coefficient, and therefore by result of Weyl (Thm 7.2 in the link) $p(k)$ is uniformly distributed mod 1.

D. Song
  • 643