So my question is really simple (and may be a bit naive):
The claim is, I can locate any point in a 2D-plane by recursively applying the following method (possibly infinite number of times):
For simplicity, assume the plane be drawn as a grid (imagine a graph paper)
Now I can locate the bigger grid (essentially a square) in which the point lies, and then try to narrow it down.
The idea is, if I keep doing this infinitely I will eventually hit the point somewhere.
Is this claim true? Looking at this problem in 1-D means that I can find a point on the real number line in (possibly infinite steps) by always narrowing down by one decimal digit (like multiplying by 10 for example)?
In every step $n$, your grid has intervals of size $10^{−n}$ each. Hence, the distance between your number to the boundaries of the selected interval is at most $10^{−n}$. When $n\to\infty$, this distance goes to $0$. Hence, after an infinite number of steps, the interval contains exactly your number and nothing else.
By the way, a similar "narrowing-down" process on a triangle leads to a solution of an interesting fair division problem.