Does the floor function satisfy floor(x) = x + O(x^(1/2))?

  • Thread starter Thread starter zetafunction
  • Start date Start date
  • Tags Tags
    Function
zetafunction
Messages
371
Reaction score
0
does the floor function satisfy

floor(x)= x + O(x^{1/2})

the idea is the floor function would have an 'smooth' part given by x and a oscillating contribution with amplitude proportional to x^{1/2}
 
Physics news on Phys.org
Why would the order of x-\lfloor x\rfloor depend on the order of x?
 
Last edited:
zetafunction said:
does the floor function satisfy

floor(x)= x + O(x^{1/2})

Yes. It also satisfies

\lfloor x\rfloor=x+O(2^{2^x}).

But both are needlessly weak.
 
CRGreathouse said:
Yes. It also satisfies

\lfloor x\rfloor=x+O(2^{2^x}).

But both are needlessly weak.

what do you mean by 'weak' , is there a proof for \lfloor x\rfloor=x+O(x^{1/2}).
 
zetafunction said:
what do you mean by 'weak' , is there a proof for \lfloor x\rfloor=x+O(x^{1/2}).

O(2^{2^x}) is weaker than O(\sqrt x) in the sense that there are functions which are in the former but not the latter, but none in the latter but in the former.

You should be able to give a one-line proof of a statement stronger than \lfloor x\rfloor=x+O(\sqrt x).
 
<br /> \lfloor x\rfloor-x<br /> can not be bigger than one by the definition of floor function and fractional part so

perhaps <br /> \lfloor x\rfloor=x+O(x^{e})<br /> fore any e=0 or bigger than 0 is this what you meant ??
 
I think what the others are trying to say is that, since \lfloor x\rfloor-x is bounded, then \lfloor x\rfloor=x+O(1).

Petek
 
Petek said:
I think what the others are trying to say is that, since \lfloor x\rfloor-x is bounded, then \lfloor x\rfloor=x+O(1).

Indeed.
 
Back
Top