Proving collinearities with the Newton-Gauss line

by liberator, Apr 11, 2017, 10:29 PM

So apparently I'm being peer pressured into posting :o Here is the desired blog entry, a whole 364 days after the last! I hope that this satisfies your requests/demands or whatever you want to call it.

This is just to illustrate a nice little trick that I've used to solve several (read: three) problems.

To show that three points are collinear, we can use the converse of the Newton-Gauss line property, by proving that circles on appropriate diameters are coaxal (orthocentres often come in handy here), which can give us the fourth side of a complete quadrilateral. This is perhaps best demonstrated by three examples:

Problem 1: Let $ABC$ be a triangle. Let $\triangle P_aP_bP_c$ and $\triangle Q_aQ_bQ_c$ be the circumcevian triangles of points $P$ and $Q$ respectively. Prove that $\triangle ABC$ and the triangle determined by lines $P_aQ_a,P_bQ_b,P_cQ_c$ are in perspective.

[Jerabek's theorem]

[asy]
unitsize(2cm);
pointpen=black; pathpen=rgb(0.4,0.6,0.8); pointfontpen=fontsize(10);

path carc(pair A, pair B, pair C, real d=0, bool dir) {
pair O=circumcenter(A,B,C);
return arc(O,circumradius(A,B,C),degrees(A-O)+d,degrees(C-O)-d,dir);
}

pair A=dir(110), B=dir(200), C=dir(-20), Q=(-0.1,-0.05), P_a=-A, P_b=-B, P_c=-C, Q_a=IP(unitcircle,L(A,Q,-0.1,10)), Q_b=IP(unitcircle,L(B,Q,-0.1,10)), Q_c=IP(unitcircle,L(C,Q,-0.1,10)), X=extension(P_a,Q_a,B,C), Y=extension(P_b,Q_b,C,A), Z=extension(P_c,Q_c,A,B);
D(X--B--A--C);
D(unitcircle,heavygreen);
D(carc(A,foot(A,B,C),X,CCW),red);
D(X--Q_a--A--foot(A,B,C));

D("A",A,NW);
D("B",B,SW);
D("C",C,SE);
D("Q",Q,E);
D("Q_a",Q_a);
D("P_a",P_a,N);
D("X",X,E);
D("H",A+B+C,SSE);
[/asy]
Solution. Let $X=P_aQ_a\cap BC$, and define $Y,Z$ analogously. Take a homography fixing $(ABC)$ and sending $P$ to the centre. It is easy to see that the circles on diameters $\overline{AX},\overline{BY},\overline{CZ}$ are coaxal, with common radical axis $QH$. Then by the converse of the Newton-Gauss line, it follows that $X,Y,Z$ are collinear. $\square$
[Sorry for the lack of complete diagrams for the next two problems. Some of the points are very far apart, meaning that the diagrams would probably not be very clear anyway]

Problem 2: A circle $\omega$ with centre $P$ intersects the sides $BC,CA,AB$ of triangle $ABC$ at $A_1$ and $A_2$, $B_1$ and $B_2$, $C_1$ and $C_2$ respectively. Let $A'$ be the circumcentre of triangle $A_1A_2P$, $B'$ the circumcentre of triangle $B_1B_2P$, $C'$ the circumcentre of triangle $C_1C_2P$. Prove that $AA'$, $BB'$ and $CC'$ are concurrent.

[UK Training for RMM 2017]

[asy]
unitsize(2cm);
pointpen=black; pathpen=rgb(0.4,0.6,0.8); pointfontpen=fontsize(10);

pair P=origin, A_1=dir(230), A_2=dir(-50), B_1=dir(-20), B_2=dir(95), C_1=dir(120), C_2=dir(185), A=extension(B_1,B_2,C_1,C_2), B=extension(C_1,C_2,A_1,A_2), C=extension(A_1,A_2,B_1,B_2), Ap=circumcenter(A_1,A_2,P), Bp=circumcenter(B_1,B_2,P), Cp=circumcenter(C_1,C_2,P), X=2/(conj(IP(A--Ap,unitcircle))+conj(OP(A--Ap,unitcircle)));
D(A--B--C--cycle);
DPA(A--Ap^^B--Bp^^C--Cp);
D(unitcircle,heavygreen);
D("A",A,NW);
D("B",B,SW);
D("C",C,SE);
D("A'",Ap,E);
D("B'",Bp);
D("C'",Cp,SW);
D("P",P,E);
[/asy]
Solution. Let the polar of $A$ in $\omega$ meet the polar of $A'$ at $X$, and define $Y, Z$ analogously. It suffices to show that $X, Y, Z$ are collinear. Let $\triangle DEF$ be the triangle formed by the polars of $A', B', C'$ in $\omega$, which is homothetic to $\triangle ABC$ with centre $P$. Consider the circles on diameters $\overline{DX},\overline{EY},\overline{FZ}$. Easily, $P$ and the orthocentre of $\triangle DEF$ lie on a common radical axis of these circles. Thus the midpoints of $\overline{DX},\overline{EY},\overline{FZ}$ are collinear, so the result follows by the converse of the Newton-Gauss line. $\square$
Problem 3: A circle $\omega$ with centre $P$ intersects the sides $BC,CA,AB$ of triangle $ABC$ at $A_1$ and $A_2$, $B_1$ and $B_2$, $C_1$ and $C_2$ respectively. Let the lines tangent to $\omega$ at $A_1$ and $A_2$ meet at $A'$ and define similarly $B'$ and $C'$. Prove that the lines $AA'$, $BB'$, and $CC'$ are concurrent.

[Silouanas Brazitikos, UK IMO Training and Selection Camp April 2017]
[asy]
unitsize(2cm);
pointpen=black; pathpen=rgb(0.4,0.6,0.8); pointfontpen=fontsize(10);

pair P=origin, A_1=dir(230), A_2=dir(-50), B_1=dir(-20), B_2=dir(95), C_1=dir(120), C_2=dir(185), A=extension(B_1,B_2,C_1,C_2), B=extension(C_1,C_2,A_1,A_2), C=extension(A_1,A_2,B_1,B_2), Ap=2/(conj(A_1)+conj(A_2)), Bp=2/(conj(B_1)+conj(B_2)), Cp=2/(conj(C_1)+conj(C_2)), X=extension(B,C,tangent(A,P,1),tangent(A,P,1,2));
D(A--B--C--cycle);
DPA(A--Ap^^B--Bp^^C--Cp);
D(unitcircle,heavygreen);
D("A",A,NW);
D("B",B,SW);
D("C",C,SE);
D("A'",Ap);
D("B'",Bp,NE);
D("C'",Cp,NW);
D("P",P,E);
[/asy]
Solution. Let the polar of $A$ in $\omega$ meet $BC$ at $X$, and define $Y,Z$ analogously. It suffices to show that $X,Y,Z$ are collinear. Consider the circles on diameters $\overline{AX},\overline{BY},\overline{CZ}$. Easily, $P$ and the orthocentre of $\triangle ABC$ lie on a common radical axis of these circles. Thus the midpoints of $\overline{AX},\overline{BY},\overline{CZ}$ are collinear, so the result follows by the converse of the Newton-Gauss line. $\square$

Comment

1 Comment

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
I think the following more general result holds.

Let $A_0, B_0, C_0$ be on lines $PA', PB', PC'$ respectively, dividing them in equal ratios then lines $AA_0, BB_0, CC_0$ are concurrent.

By degree counting it suffices to prove it for the cases when all three points are at infinity, at $P$ and those in #2, #3, all of which have been done.

In fact, given one of #2 or #3 to be true, we can prove the other one directly without going into the geometry part :)

by anantmudgal09, Apr 29, 2017, 7:10 AM

It's not just good - it's revolutionary!

avatar

liberator
Shouts
Submit
  • whoa....

    by bachkieu, Jan 31, 2025, 1:40 AM

  • hello...

    by ethan2011, Jul 4, 2024, 5:13 PM

  • 2024 shout ftw

    by Shreyasharma, Feb 19, 2024, 10:28 PM

  • time flies

    by Asynchrone, Dec 13, 2023, 9:29 PM

  • first 2023 shout :D

    by gracemoon124, Aug 2, 2023, 4:58 AM

  • offline.................

    by 799786, Dec 27, 2021, 7:08 AM

  • YOU SHALL NOT PASS! - liberator

    by OlympusHero, Aug 16, 2021, 4:10 AM

  • Nice Blog!

    by geometry6, Jul 31, 2021, 1:39 PM

  • First shout out in 2021 :D

    by Aimingformygoal, May 31, 2021, 4:23 PM

  • indeed a pr0 blog :surf:

    by Kanep, Dec 3, 2020, 10:46 PM

  • pr0 blog !!

    by Hamroldt, Dec 2, 2020, 8:32 AM

  • niice bloog!

    by Eliot, Oct 1, 2020, 3:27 PM

  • nice blog :o

    by fukano_2, Aug 8, 2020, 7:49 AM

  • Nice blog :)

    by Feridimo, Mar 31, 2020, 9:29 AM

  • Very nice blog !

    by Kamran011, Oct 31, 2019, 5:48 PM

56 shouts
Tags
About Owner
  • Posts: 95
  • Joined: May 28, 2014
Blog Stats
  • Blog created: Aug 13, 2014
  • Total entries: 46
  • Total visits: 37820
  • Total comments: 43
Search Blog
a