In the mma help docs for Position, the following is listed under "Possible Issues"
In[1]:= Position[Range[-1, 1, 0.05], 0.1]
Out[1]= {}
There is no explanation given though. Why does this happen? So if I really need to find the position of 0.1 in Range[-1,1,0.05], how do I do it?
Position[N@Range[-1, 1, 1/20], 0.1]– TomD Apr 22 '11 at 10:33