[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference rusure::math

Title:Mathematics at DEC
Moderator:RUSURE::EDP
Created:Mon Feb 03 1986
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:2083
Total number of notes:14613

683.0. "2N point puzzle" by TAV02::NITSAN (Duvdevani, DEC Israel) Wed Mar 25 1987 09:21

N black points and N white points are placed on 2-d plane,
in such a way that no 3 points are on the same straight line.

Prove that there is a way to form N black-white pairs, such
that the N sections generated do not intersect.

Nitsan.
T.RTitleUserPersonal
Name
DateLines
683.1BEING::POSTPISCHILAlways mount a scratch monkey.Wed Mar 25 1987 12:286
    Re .0:
    
    What is are N sections?
    
    
    				-- edp
683.2rephrasing -- looks interesting!CLT::GILBERTeager like a childWed Mar 25 1987 23:206
N black points and N white points are placed on plane,
in such a way that no 3 points are colinear.

Prove that there is a way to form N black-white pairs
of points, such that none of the N line segments that
connect the pairs of points intersect.
683.3It's easy!TAV02::NITSANDuvdevani, DEC IsraelThu Apr 09 1987 09:075
Hint follows:

Form randomly N black-white pairs of points
and connect them with N line segments.
Now, sum all the lengths of all the segments..
683.4CLT::GILBERTeager like a childThu Apr 09 1987 17:3412
    Here's one approach, but there are some good loose ends.

    Randomly form N segments connecting black-white pairs of points.
    Now, if none of the segments intersect, we are done.
    
    If some intersect, then replace the two segments with the 'other'
    pair of segments connecting the black and white points.  We assert
    *without proof* that these two segments won't intersect, and that
    the sum of thir lengths is shorter than the original two segments.
    So whenever we have an intersection, we can decrease the total length
    of the segments, and since we keep decreasing the total length of the
    segments, we must eventually terminate.
683.5enjoying .3 and .4VINO::JMUNZERThu Apr 09 1987 20:2324
Suppose AB and CD intersect (at O):

				C
                               /
	A---------------------O---------------B
                             /
                            /
                           /
                          /
                         D

Then (1) AC & BD don't intersect, because (a) triangles AOC and BOD are
	 disjoint, except for point O; and (b) AC & BD are in those triangles,
	 and don't include point O.  (The triangles are nontrivial because
	 no three points are colinear.)
     (2) |AC| + |BD| < |AB| + |CD|
	 because
	 |AC| < |AO| + |OC| and |BD| < |BO| + |OD| implies that
	 |AC| + |BD| < |AO| + |OC| + |BO| + |OD|
		     = |AO| + |OB| + |CO| + |OD|
		     = |AB| + |CD|

John

683.6Another Solution?TAV02::NITSANDuvdevani, DEC IsraelThu Apr 23 1987 11:1619
There's also a different way to prove the original statement. Construct the
convex hull (sp?) of the 2N points. Now distinguish between two cases:

[1] If it has points of both colors on it, then there is a black-white pair
    of neighbors (on the convex hull). Connect them and continue recursively.

[2] If all points (on the convex hull) are of the same colors (say, black),
    then construct two parallel lines on two "edges" of the convex hull, such
    that they are not parallel to any other segment (posiible because no three
    points are colinear). The variable:

      # white points to right of line - # black points to right of line

    changes continuously from 1 to -1 while moving from the left line to the
    right line, so there must be a line in the middle that splits the set of
    2N points into two sets where the # blacks = # whites in each, and then
    continue recursively.

Nitsan.