There are distinct lattice points marked on the 2D plane (2 dimensional).
Find least possible value of , such that we can always choose 2 points out of points (wherever they may be marked), such that there's at least one more lattice point on the segment joining them.
Details and assumptions :-
In the 2D plane (or Cartesian plane), every point can be represented as coordinates , where
Lattice points are points that have integer coordinates.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let a lattice point be P ( x , y ) .
Both x and y can either be O D D or E V E N . Thus there are 2 2 = 4 different combinations possible, they'll be ( o , o ) , ( e , e ) , ( e , o ) , ( o , e )
If we choose 5 distinct lattice points, then one of the above parity patterns repeats, so midpoint of the segment joining the 2 points, which will be ( 2 x 1 + x 2 , 2 y 1 + y 2 ) will have to be a lattice point (as x 1 and x 2 have same parity, their sum is divisible by 2 ).
Hence answer is 2 2 + 1 = 5