View Single Post
Apr28-04, 03:05 PM   #6
 
Recognitions:
Gold Membership Gold Member
The floor function [y] gives the largest integer less than or equal to y. ex.
y=13, [y]=13
y=1.3, [y]=1
y=(-1.3), [y]=(-2)

You can use it because there is an integer less than or equal to every real y.