POTW Infinite Sequences of Sines

Click For Summary
The discussion revolves around proving the existence of a strictly increasing sequence of integers \( m_1 < m_2 < m_3 < \cdots \) such that the sequence \( \sin(\ell m_1), \sin(\ell m_2), \sin(\ell m_3), \ldots \) converges for all positive integers \( \ell \). Various conjectures are proposed for the values of \( m_n \), including rational approximations of \( \pi \) and sequences derived from the periodicity of the sine function. The participants explore the implications of using different sequences and the density of rational numbers in relation to convergence. Ultimately, the discussion emphasizes the need for a rigorous proof that demonstrates convergence for any integer \( \ell \), while also addressing the challenges posed by the requirement for the sequence to be strictly increasing. The conversation highlights the complexity of the problem and the importance of constructing a suitable sequence to achieve convergence.
Euge
Gold Member
MHB
POTW Director
Messages
2,072
Reaction score
245
Prove the existence of a strictly increasing sequence ##m_1 < m_2 < m_3 < \cdots## of integers satisfying the property that for all positive integers ##\ell##, the sequence ##\sin(\ell m_1), \sin(\ell m_2), \sin (\ell m_3),\ldots## converges.
 
  • Like
Likes Greg Bernhardt
Physics news on Phys.org
It is just a conjecture but
m_1=3
m_2=31
m_3=314
---
m_n=[\pi*10^{n-1}]
may satisfy the statement with convergence to zero. Is it so ?
 
Last edited:
Why would you get convergence? The fraction you are losing depends on the nth digit of the decimal expansion of pi, which doesn't converge.
 
  • Like
Likes paige turner and anuttarasammyak
Sure, my bad. Thanks.
Another attempt is to find better rational number approximations of ##\pi## by computer,
\frac{3}{1}, \frac{22}{7},\frac{355}{113},\frac{3550}{1130},\frac{99733}{31746},\frac{833719}{265381},\frac{5419351}{1725033},\frac{80143857}{25510582},...
which are the best ones with both numerator and denominator are under ##10^n##. I made series of the numerators,
m_1=3,m_2=22,m_3=355,m_4=3550,m_5=99733,m_6=833719,m_7=5419351,m_8=80143857,...
xsinx
3​
0.141120008​
22​
-0.008851309​
355​
-3.01444E-05​
3550​
0.000301444​
99733​
-0.000380862​
833719​
2.31292E-06​
5419351​
-3.82004E-08​
80143857​
-1.47741E-08​
sin x are small but I am afraid it is not enough for the statement.

Say integers a, b are
\frac{b}{a}=\pi+\epsilon
\sin(bl)=\sin(al\epsilon)
Regard them as sequence, so that ##b_n## be what we want, we must show
a_n \epsilon_n \rightarrow 0
I hope to find a good approximation sequence satisfying it. Diophantine approximation https://en.wikipedia.org/wiki/Diophantine_approximation seems to assure the existence of such a sequence, but I have no idea how to construct it actually.

 
Last edited:
  • Like
Likes bob012345
Last edited:
Euge said:
Prove the existence of a strictly increasing sequence ##m_1 < m_2 < m_3 < \cdots## of integers satisfying the property that for all positive integers ##\ell##, the sequence ##\sin(\ell m_1), \sin(\ell m_2), \sin (\ell m_3),\ldots## converges.
I assume you mean radians? If it were interpreted as degrees it would have the trivial solution ##sin(l m_i ) = 0## for all ##l, m_i =360 i## with ##i= 1 ,2,3...∞## converging to zero.
 
  • Sad
  • Like
Likes paige turner and PeroK
Does strictly increasing mean just each term larger or each term larger according to some algorithm? Can the integers be arbitrary as long as they are larger?
 
bob012345 said:
Does strictly increasing mean just each term larger or each term larger according to some algorithm? Can the integers be arbitrary as long as they are larger?
A strictly increasing sequence is a sequence where each term is larger that the previous term. Nothing more than that.
 
  • Like
Likes bob012345
My idea is to exploit the periodicity of the sine function by considering x_m = \ell m \mod 2\pi as a sequence in [0,2\pi] and using Bolzano-Weierstrass to extract a convergent subsequence x_{m_n} \to x \in [0,2\pi]. Then by continuity of the sine function, \sin(\ell m_n) = \sin(x_{m_n}) \to \sin x.

Unfortunately that shows "for every positive integer \ell there exists a sequence of strictly inreasing integers m_n" and we require the reverse, so there is more work to be done.
 
  • Like
Likes bob012345
  • #10
A sequence can be obtained using the density of the rationals.
 
  • Like
Likes .Scott
  • #11
Find a sequence first for ##l =1##, then show the same sequence works for any ##l##.
 
  • #12
bob012345 said:
I assume you mean radians? If it were interpreted as degrees it would have the trivial solution ##sin(l m_i ) = 0## for all ##l, m_i =360 i## with ##i= 1 ,2,3...∞## converging to zero.
Yes, it is in radians.
 
  • Like
Likes bob012345
  • #13
bob012345 said:
Does strictly increasing mean just each term larger or each term larger according to some algorithm? Can the integers be arbitrary as long as they are larger?
The strictly increasing sequence is expressed in the problem statement: ##m_1 < m_2 < m_3 < \cdots##. Thus ##m_2## is larger than ##m_1##, ##m_3## is larger than ##m_2##, and so on.
 
  • #14
PeroK said:
Find a sequence first for ##l =1##, then show the same sequence works for any ##l##.
I think one must derive a solution for any ##\ell## up front. There are an infinite number of sets of ##m_i's## but in general they will not work for any ##\ell## so the way the set of ##m_i's## are generated is the key in my mind. So far I can only think of ways that are not scalable with ##\ell##.
 
  • #15
Euge said:
The strictly increasing sequence is expressed in the problem statement: ##m_1 < m_2 < m_3 < \cdots##. Thus ##m_2## is larger than ##m_1##, ##m_3## is larger than ##m_2##, and so on.
Thanks. The word sequence made me think they must be some consistent algorithm but I understand now it just means list and ##m_{i+1}## need have no relation to ##m_i## except ##m_{i+1}>m_i##.
 
  • #16
bob012345 said:
I think one must derive a solution for any ##\ell## up front.
Not necessarily. Get a solution for ##l =1## first.
 
  • #17
I worked out a proof in my head, but something I thought was equivalent to the density of the rationals turns out to be quite difficult to prove!
 
  • Like
Likes bob012345
  • #18
pasmith said:
My idea is to exploit the periodicity of the sine function by considering x_m = \ell m \mod 2\pi as a sequence in [0,2\pi] and using Bolzano-Weierstrass to extract a convergent subsequence x_{m_n} \to x \in [0,2\pi]. Then by continuity of the sine function, \sin(\ell m_n) = \sin(x_{m_n}) \to \sin x.

Unfortunately that shows "for every positive integer \ell there exists a sequence of strictly inreasing integers m_n" and we require the reverse, so there is more work to be done.

For positive integer \ell, \sin(\ell m_n) is a polynomial of degree \ell in \sin(m_n). and will therefore converge to a limit if \sin(m_n) does. I think this competes the proof.
 
  • Like
Likes julian, Office_Shredder and PeroK
  • #19
pasmith said:
For positive integer \ell, \sin(\ell m_n) is a polynomial of degree \ell in \sin(m_n). and will therefore converge to a limit if \sin(m_n) does. I think this completes the proof.
What is the polynomial?
 
  • #20
pasmith said:
For positive integer \ell, \sin(\ell m_n) is a polynomial of degree \ell in \sin(m_n). and will therefore converge to a limit if \sin(m_n) does. I think this competes the proof.
I think this only works if you choose a potentialy different sequence ##m_n## for each ##l##.

Or, perhaps I got confused by the previous post?
 
  • #21
Your idea seems to work simply by:

##\forall m > 0##, let ##x_m \in (0, 2\pi)##, where ##m = 2k\pi + x_m## for some ##k \ge 0##.

By B-W there is a convergent subsequence ##x_{m_n} \to x##, and ##\sin(m_n) = \sin(x_{m_n})## converges by continuity of the sine function. Likewise ##\cos(m_n)## converges.

Finally, ##\forall l##, ##\sin(lx)## can be written as a continuous function of ##\sin(x), \cos(x)##.
 
  • Like
Likes pasmith and Office_Shredder
  • #22
bob012345 said:
What is the polynomial?
Use the Euler formula:$$\sin(lx) = Im[e^{ilx}] = Im[(\cos x + i\sin x)^l]$$
 
  • #23
Is it necessary in this problem that convergence means convergence to zero?
 
  • #24
Sorry if I'm misunderstanding, but since each term has to be bigger than the last, wouldn't
m1=2π
m2=4π
m3=6π
where
mn=[2nπ]
work?
 
  • #25
Guineapigs_181 said:
Sorry if I'm misunderstanding, but since each term has to be bigger than the last, wouldn't
m_1=2pi
m_2=4pi
m_3=6pi
---
m_n=[2npi]
work?
The ##m_i's## must be integers.
 
  • Like
Likes Guineapigs_181
  • #26
pasmith said:
For positive integer \ell, \sin(\ell m_n) is a polynomial of degree \ell in \sin(m_n). and will therefore converge to a limit if \sin(m_n) does. I think this completes the proof.
I had to think of this problem graphically rather than analytically. Using a unit circle and starting with the sine of 1 radian one easily can see how an infinite number of smaller sines can be made by ever larger angles to exploit the periodicity of the sine function as @pasmith said thus generating an infinite set of strictly increasing ##m_i's## chosen such that the sines are all in the positive quadrant and ##\sin(m_i) →0## as ##m_i →∞##
desmos-graph (27).png
What threw me is the demand ##\ell## be any integer and the ##m_i's## remain the same. Graphically, for an arbitrary ##\ell## this spreads the nicely decreasing sines in the first quadrant into the full circle and the sequence jumps around between minus one and plus one. The sequence could seemingly oscillate forever yet in the limit as ##\ell m_i →∞##, there is still an infinite number of terms in the positive quadrant that converge to zero so the sequence as a whole converges.
 
  • #27
First, we need to prove that for any irrational number ##x## and ##\epsilon > 0##, there exist integers ##k, n## such that ##|kx - n| < \epsilon##. I thought this would follow from the density of the rationals, but I haven't found a proof yet.

Let's assume that holds. And, in particular, applies to ##\pi##.

Note that for every ##m > 0##, we have the closest integer mutiple of ##\pi## (##n_m\pi##) and the minimum distance from ##m## to multiples of ##\pi## (##d_m = |m - n_m\pi|##).

We choose ##\epsilon_1 = \frac 1 {10}## and ##\epsilon_{i+1} = min\{\frac 1 {10^{i+1}}, d_1 \dots d_{m_i}\}##. Where ##m_i## is chosen so that ##|m_i -n_{m_i}\pi| = d_{m_i} < \epsilon_i##.

Involving all the previous ##d_i## (all positive integers up to ##m_i##) ensures we have a strictly increasing sequence ##m_i##.

Then, as ##\epsilon_i## is small, we have ##|\sin(m_i)| = |\sin(m_i - n_{m_i}\pi)| < |m_i - n_{m_i}\pi| < \epsilon_i \le \frac 1 {10^i}##.

And, we see that ##\sin(m_i) \to 0##.

Finally, we can use the same argument with cosines and polynomial functions to show that for any ##l## we have ##\sin(lm_i) \to 0##.

But, we still need a proof of the initial lemma.
 
Last edited:
  • #28
PeroK said:
Your idea seems to work simply by:

##\forall m > 0##, let ##x_m \in (0, 2\pi)##, where ##m = 2k\pi + x_m## for some ##k \ge 0##.

By B-W there is a convergent subsequence ##x_{m_n} \to x##, and ##\sin(m_n) = \sin(x_{m_n})## converges by continuity of the sine function. Likewise ##\cos(m_n)## converges.

Finally, ##\forall l##, ##\sin(lx)## can be written as a continuous function of ##\sin(x), \cos(x)##.

This can be cleaned up further: I missed that for positive integer \ell we have simply \sin(\ell m_n) = \sin(\ell x_{m_n}) \to \sin(\ell x).
 
  • #29
PeroK said:
First, we need to prove that for any irrational number ##x## and ##\epsilon > 0##, there exist integers ##k, n## such that ##|kx - n| < \epsilon##. I thought this would follow from the density of the rationals, but I haven't found a proof yet.
Is this statement true? Here's a heuristic argument casting doubt:

Let ##x = \pi##, for simplicity. We can assume, wlog, that ##\epsilon < 1##, Then the expression becomes ##|k\pi - n| < \epsilon < 1##. That implies that ##n = [k\pi]##, the greatest integer less than ##k\pi##. Thus, ##|k\pi - [k\pi]|## is the fractional part of ##k\pi##. If we use base k, then ##k\pi## is the base-k expansion of ##\pi##, shifted by one digit. Saying that this number is less than any ##\epsilon > 0## would be like saying that the base-k expansion of ##\pi##, shifted by one, has a sequence with arbitrarily many zeros. That's not known.
 
  • #30
Petek said:
Is this statement true? Here's a heuristic argument casting doubt:

Let ##x = \pi##, for simplicity. We can assume, wlog, that ##\epsilon < 1##, Then the expression becomes ##|k\pi - n| < \epsilon < 1##. That implies that ##n = [k\pi]##, the greatest integer less than ##k\pi##. Thus, ##|k\pi - [k\pi]|## is the fractional part of ##k\pi##. If we use base k, then ##k\pi## is the base-k expansion of ##\pi##, shifted by one digit. Saying that this number is less than any ##\epsilon > 0## would be like saying that the base-k expansion of ##\pi##, shifted by one, has a sequence with arbitrarily many zeros. That's not known.
##k, n## depend on ##\epsilon##. If the same ##k,n## suffice for all ##\epsilon##, then we must have ##k\pi = n##, which is impossible.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 13 ·
Replies
13
Views
2K
Replies
1
Views
1K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
1
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 17 ·
Replies
17
Views
1K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K