21 votos

La desigualdad en un almacén real de la secuencia

Probar o refutar que para cualquier delimitada real secuencia $\{x_n\}_{n\in\mathbb{N}}$ existen dos números naturales $u,v$ tal forma que: $$|x_u-x_v|\cdot|u-v|\leq 1.$$

14voto

Michael Steele Puntos 345

Aquí es un contra-ejemplo del uso del teorema de Hurwitz

Deje $\phi = \frac{1+\sqrt 5}2$ ser el oro de la ración. Dado que la desigualdad de $|\phi - p/q| < 1/3q^2$ tiene un número finito de soluciones para los números enteros $p,q$, deje $N$ ser un número entero mayor que todas las $|p|$ se producen en esas soluciones.

Deje $x_n = 3n\phi \pmod {3N}$

Supongamos que encontrar diferentes números enteros $u$ $v$ tal que $|x_u - x_v||u-v| < 1$. Entonces existen enteros $p_u$ $p_v$ tal que $x_u = 3u\phi - 3Np_u$$x_v = 3v\phi - 3Np_v$. Por lo $|3(u-v)\phi-3N(p_u-p_v)||u-v| < 1$, e $|\phi - N(p_u-p_v)/(u-v)| < 1/3(u-v)^2$. Por lo tanto $(N(p_u-p_v), u-v)$ es uno de un número finito de soluciones a la desigualdad anterior, por lo tanto $N > |N(p_u-p_v)|$. Esto implica $p_u = p_v$, y llegamos $|\phi| < 1/3(u-v)^2 \le 1/3 < \phi$, lo cual es una contradicción.

1voto

dooglius Puntos 106

No tengo ninguna prueba sólida, pero tengo algunas pruebas para sugerir que la propuesta podría ser falso: una prueba de que si hay siempre $u,v$ pares, entonces se producen con frecuencia en cualquier secuencia, y la segunda, una calculada ejemplo de una secuencia que no tiene ningún tipo de $u,v$ pares, sin embargo, parece ser limitada.

Tomar un atado $[a,b]$. Considere la posibilidad de $S_n$, el conjunto de secuencias finitas tal que $|x_u-x_v|\cdot|u-v|<1$ algunos $u,v$. A continuación, $|x_u-x_v|=\frac{1}{|u-v|}-\epsilon$ algunos $\epsilon>0$, y para el conjunto $$ [a,b]\times [a,b]\times\cdots\times(x_u-\frac{\epsilon}{2},x_u+\frac{\epsilon}{2})\times[a,b]\times\cdots\times[a,b]\times(x_v-\frac{\epsilon}{2},x_v+\frac{\epsilon}{2})\times[a,b]\times\cdots\times[a,b] $$ is open in $[a,b]^n$ and is a subset of $S_n$, meaning that $S_n$ is open in $[a,b]^n$. It follows that, since $[0,b]$ is compact, by Tychonoff's theorem, $[a,b]^n$ is compact, and therefore, $\overline{S_n}$ is closed and thus compact. Let $C_n$ be the extension of $\overline{S_n}$ to $[a,b]^\omega$ by appending copies of $[a,b]$, so that by Tychonoff's Theorem, $C_n$ is compact. However, $\{C_n\}$ is a sequence of decreasing compact sets, whose intersection $\bigcap_{n\en N} C_n$ is nonempty if each $C_n$ is. An element of $\bigcap_{n\in N} C_n$ would be a sequence such that $|x_u-x_v|\cdot|u-v|\ge1$ for all $u,v$.

Thus, for a sequence bounded by $[a,b]$, if we can always find some finite sequence of length $n$ such that $|x_u-x_v|\cdot|u-v|\ge1$ for all $u,v$, we can find an infinite sequence violating the proposition. This means that, if the proposition is true, pairs $u,v$ will appear "commonly", in the sense that there is some $n$ at which all finite sequences of length $n$ must have a $u,v$ pair with $|x_u-x_v|\cdot|u-v|<1$, and so $u,v$ pairs will take up at least $\frac{2}{n}$ of the sequence.

A simple strategy of setting $x_0=0$ and $x_n$ to the minimum positive number such that $\{x_0,\cdots,x_n\}$ has $|x_u-x_v|\cdot|u-v|\ge1$ seems to work well, as demonstrated by the computer program below. The output of the program will have the bound on $\{x_n\}$ taper off to just above $2.5$ all the way into a sequence of length $250,000$, lo que parece indicar que este ingenuo secuencia está acotada.

#include <stdbool.h>
#include <stdio.h>
#include <float.h>

#define EPS 0.0000000000000000002
#define NUM 250000
long double data[NUM];

static bool within(long double x, long double y, int n){
        long double test = (x-y)*n;
        return test >= (long double)(-1.0) && test <= (long double)(1.0);
}

main(){
        long double max = 0.0;
        int i;
        data[0] = 0.0;
        for(i=1; i<NUM; i++){
                long double test = ((long double)1.0)/i;
                int j;
                for(j=i-1; j>0; j--){
                        if(within(test,data[j],i-j)){
                                test = data[j]+((long double)1.0)/(i-j)+EPS;
                                j=i;
                        }
                }
                data[i] = test;
                if(test > max){
                        max = test;
                }
                if(i%100==0) printf("Got %d/%d -- max=%.15Lf\n",i,NUM,max);
        }
}

i-Ciencias.com

I-Ciencias es una comunidad de estudiantes y amantes de la ciencia en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X