2

Show that, given four coplanar points, we can always draw two intersecting circles coplanar with the points, such that two of the given points are diameter endpoints of one circle, and the other two given points are diameter endpoints of the other circle.

In this question, "intersecting" means that the circles share at least one common point.

Example:

enter image description here

I will post my answer. Alternative solutions are welcome.

This question and answer serve to provide ideas that might help answer a harder question about five points and two non-intersecting circles.

Dan
  • 22,158

2 Answers2

2

One can also do it with vector algebra. Note that the circles with diameters $A,B$ and $C,D$ do not intersect if and only if $$ |(A-C)\cdot(B-D)+(A-D)\cdot(B-C)|>|A-B||C-D|\,. $$ Now out of 3 possible sums of scalar products of this type inside the absolute value, two have the same sign. Without loss of generality those are the one written above and $$ (A-B)\cdot(C-D)+(A-D)\cdot(C-B) $$ Then the sum of their absolute values is the absolute value of the sum, which should be larger than the sum of the corresponding right hand sides if there are no intersections. But adding honestly, we get $$ |(A-C)\cdot(B-D)+(A-B)\cdot(C-D)|>|A-B||C-D|+|A-C||B-D|\, $$ which is absurd.

I tried to apply this technique to the 5-point question but without success so far. The difficulty is that now the scalar products have to be estimated by absolute values from below, which makes Cauchy-Schwarz hard to use in a meaningful way.

fedja
  • 18,619
1

Lemma 1: Given four coplanar points, there cannot be two different pairs of disjoint circles whose diameter endpoints are the four points. Proof.

Lemma 2: Given three points $P,Q,R$, if $R$ is in $\text{C}_{PQ}$ (the circle with diameter $PQ$), then $Q$ is not in $\text{C}_{PR}$. Proof: If the lemma is false, then $\angle PRQ>90^\circ$ and $\angle PQR>90^\circ$, so the angles in triangle $PQR$ sum to more than $180^\circ$, which is impossible.


Any pair of circles is either intersecting, disjoint, or "enclosing" (one encloses the other).

Assume, for the sake of contradiction, that we have four points $A,B,C,D$, and among the three ways of drawing the pairs of circles, none of them result in "intersecting". Then by Lemma 1 we must have (at least) two ways of drawing the pair of circles, that each result in "enclosing".

Suppose $\text{C}_{AB}$ is in $\text{C}_{CD}$:

  • $A$ is in $\text{C}_{CD}$, so by Lemma 2, $C$ is not in $\text{C}_{AD}$, so $\text{C}_{BC}$ is not in $\text{C}_{AD}$.
  • $B$ is in $\text{C}_{CD}$, so by Lemma 2, $D$ is not in $\text{C}_{BC}$, so $\text{C}_{AD}$ is not in $\text{C}_{BC}$.

So $\text{C}_{AD}$ and $\text{C}_{BC}$ are not "enclosing". And by a similar argument, $\text{C}_{AC}$ and $\text{C}_{BD}$ are not "enclosing". Contradiction.

Therefore we can always draw a pair of intersecting circles.

Dan
  • 22,158