The A-Humpty point; Preliminaries

by p_square, Aug 18, 2018, 12:15 PM

In this blog post I will discuss the intricacies of the $A$-HM point. Hopefully, by the end, many of its mysteries will be thrown into light.

The $A$-HM point has several nice properties: We will randomly pick one as it's definition and derive the rest.
Define the $A$-HM point as the foot of perpendicular from the Orthocentre $H$ of $\triangle ABC$ to the $A$-Median.

We will also henceforth denote the $A$-HM point by $X$.

Anyway,
p_square wrote:
Property 1: X is the foot of perpendicular from the Orthocentre $H$ of Triangle $ABC$ to the $A$-Median.
Well, not exactly. But that's close enough.

Property 2: $BXHC$ is a cyclic quadrilateral
Proof:
[asy]
import olympiad;
unitsize(30);
pair A,B,C,D,E,F,H,M,X;
B=(0,0); A=(1,4); C=(5,0);
D=foot(A,B,C);
E=foot(B,A,C);
F=foot(C,A,B);
H=orthocenter(A,B,C);
M=(B+C)/2;
X = foot(H,A,M);

draw(D--A--B--C--A--M); draw(B--E); draw(C--F); draw(H--X);

draw(circumcircle(A,E,F)); draw(circumcircle(D,E,F)); draw(circumcircle(B,H,C));

dot("$A$",A,dir(90)); dot("$B$",B,dir(150)); dot("$C$",C,dir(60)); dot("$D$",D,dir(250)); dot("$E$",E,dir(60)); dot("$F$",F,dir(210)); dot("$H$",H,dir(150)); dot("$M$",M,dir(300)); dot("$X$",X,dir(330));
[/asy]

Let $AD$, $BE$ and $CF$ be the altitudes of the triangle $ABC$. Let $M$ be the midpoint of $BC$.
Observe that $XHDM$ is cyclic.
We will invert at A with radius $ = \sqrt AH*AD$.
As a fortunate co-incedence, By Power of Point, $AF*AB = AH*AD = AX*AM = AE*AC$. Actually, this is the only reason we inverted.
What this tells us, is that during the inversion $B \leftrightarrow F, H \leftrightarrow D, X \leftrightarrow M, E \leftrightarrow  C$.
Before inversion, Points $FDMC$ were cyclic (Nine-point circle), and as it hath been foretold, that circles shall (usually) remain circles after inversion, so $BXHC$ are cyclic. $\blacksquare$

Property 3: $BDC$ is tangential to Circles $AXB, AXC$.
Proof:
[asy]
import olympiad;
unitsize(30);
pair A,B,C,D,E,F,H,M,X;
B=(0,0); A=(1,4); C=(5,0);
D=foot(A,B,C);
E=foot(B,A,C);
F=foot(C,A,B);
H=orthocenter(A,B,C);
M=(B+C)/2;
X = foot(H,A,M);

draw(D--A--B--C--A--M); draw(B--E--M); draw(C--F--M); draw(H--X);

draw(circumcircle(A,E,F)); draw(circumcircle(D,E,F)); draw(circumcircle(B,H,C)); draw(circumcircle(A,X,B)); draw(circumcircle(A,X,C));

dot("$A$",A,dir(90)); dot("$B$",B,dir(130)); dot("$C$",C,dir(60)); dot("$D$",D,dir(250)); dot("$E$",E,dir(60)); dot("$F$",F,dir(210)); dot("$H$",H,dir(130)); dot("$M$",M,dir(300)); dot("$X$",X,dir(330));
[/asy]

If we continue to work in the inverted diagram, what I wrote translates to
p_square in a complicated manner wrote:
$ME$, $MF$ are tangent to Circle $AEHF$
This is very well known and the proof is simple angle chasing. $\blacksquare$

Property 4: Let the tangent from $A$ to the circumcircle of $ABC$ meet $BC$ at $T$. The orthocentre of $AMT$ is the midpoint of $AH$.
At first this doesn't seem related to $X$ at all! But on re-reading the relationship hopefully becomes clear. Say $P$ is the midpoint of $AH$ and $Q$ is the foot of perpendicular from $T$ to $AM$.
p_square almost wrote:
$TP \perp AM! TA = TX!$
[asy]
import olympiad;
unitsize(30);
pair A,B,C,H,T,M,P,X,Q;
A=(6,4);
B=(7,0);
C=(11,0);
M=(B+C)/2;
H=orthocenter(A,B,C);
X=foot(H,A,M); 
P=(A+H)/2;
Q=(A+X)/2;
T=orthocenter(A,P,M);

draw(A--T--C--A); draw(B--A--M); draw(A--H); draw(T--Q); draw(H--X);

draw(circumcircle(A,B,C));

dot("$A$",A,dir(150)); dot("$B$",B,dir(210)); dot("$C$",C,dir(90)); dot("$M$",M,dir(60)); dot("$X$",X,dir(60)); dot("$H$",H,dir(180)); dot("$T$",T,dir(150)); dot("$P$",P,dir(180)); dot("$Q$",Q,dir(270));
[/asy]
Proof:
It is not very easy to see that $AP \perp MT$. It is also well known that $MH || OA \perp AT$.
So, $P$ is indeed the orthocentre of $AMT$.
This further implies that $TP \perp AM$
The foot of perpndicular from $P to AM$ will be the midpoint of the foot of perpendicular from $H to AM$. i.e. $AQ = QX$
This tells us that $T$ is on the perpendicular bisector of $AX$ or $TA = TX. \blacksquare$

Many people might recognise this as ELMO 2018/4 (I also used the same notation). Quite a few ELMO geometry questions become much simpler if one knows about the $A$-HM point.

Property 5: If $ABCZ$ is a harmonic quadrilateral, then $X$ is the reflection of $Z$ across $BC$
Proof:
It isn't hard to see that the reflection of $Z$ across $BC$ lies on circle $BHC$. ($BZC = BHC$)
Also $TZ = TA = TX$. Ignoring configuration issues (which I vehemently hate generally dislike), we see that $X$ must be the reflection of $Z$ across $BC$. $\blacksquare$

Property 6: $TX$ is tangent to circle $BHXC$
Proof:
[asy]
import olympiad;
unitsize(30);
pair A,B,C,H,T,M,P,X,Q;
A=(6,4);
B=(7,0);
C=(11,0);
M=(B+C)/2;
H=orthocenter(A,B,C);
X=foot(H,A,M); 
P=(A+H)/2;
Q=(A+X)/2;
T=orthocenter(A,P,M);

draw(A--T--C--A); draw(B--A--M); draw(A--H); draw(X--T--Q); draw(H--X);

draw(circumcircle(A,B,C)); draw(circumcircle(B,H,C));

dot("$A$",A,dir(150)); dot("$B$",B,dir(210)); dot("$C$",C,dir(90)); dot("$M$",M,dir(60)); dot("$X$",X,dir(60)); dot("$H$",H,dir(180)); dot("$T$",T,dir(150)); dot("$P$",P,dir(180)); dot("$Q$",Q,dir(270));
[/asy]

The power of $T$ with respect to circles $ABC$ and $HBC$ is the same ($TB*TC$)
Thus, The length of the tangent is same, and we have already proved that $TX = TA$.
This finishes the proof $\blacksquare$

Property 7: $TPXM$ are cyclic
Proof:
[asy]
import olympiad;
unitsize(30);
pair A,B,C,H,T,M,P,X,Q,L,O;
A=(6,4);
B=(7,0);
C=(11,0);
M=(B+C)/2;
H=orthocenter(A,B,C);
X=foot(H,A,M); 
P=(A+H)/2;
Q=(A+X)/2;
T=orthocenter(A,P,M);
L=circumcenter(B,H,C);
O=circumcenter(A,B,C);

draw(A--T--C--A); draw(B--A--M); draw(A--H); draw(T--Q); draw(H--X--T); draw(L--P); draw(L--M); draw(L--X);

draw(circumcircle(A,B,C)); draw(circumcircle(B,H,C)); draw(circumcircle(T,M,L));

dot("$A$",A,dir(150)); dot("$B$",B,dir(210)); dot("$C$",C,dir(90)); dot("$M$",M,dir(60)); dot("$X$",X,dir(60)); dot("$H$",H,dir(180)); dot("$T$",T,dir(150)); dot("$P$",P,dir(180)); dot("$Q$",Q,dir(270)); dot("$O_A$",L,dir(320));
[/asy]

Like many a geometry problem, this actually becomes a lot easier if you just add in one extra point.
p_square almost wrote:
Let $O_A$ be the circumcentre of $BHC$.
$TPXMO_A$ are cyclic with diametre $TO_A$
Clearly $O_A$ lies on the perpendicular bisector of $BC$, so $\angle TMO_A = 90$.
By property 6, $\angle TXO_A = 90$
Also, Since $HA = 2O_AM, APO_AM$ is a parallelogram.
This tells us that $O_AP || MA \perp TP$ (Property 4) i.e. $TPO_A$ = 90. $\blacksquare$

As a corollary, note that $O_AP || XM \Rightarrow O_AMXP$ is an isosceles trapezium.

Property 8: Duality; $A$ is the $X$-HM point of $XBC$
Proof:
Property 3 (Use Power of Point from $M$) finishes this off immediately.
However look at Property 2.
p_square almost wrote:
Let N be the point where the perpendicular from $X$ to $BC$ meets circle $ABC$. Then $X$ is the orthocentre of $BCN$
which is just another way of writing Property 2, with the roles of $X$ and $A$ switched.
$X =$ orthocentre of $BCN \Rightarrow N$ is the orthocentre of $BXC$. $\blacksquare$

Property 9: $X$ lies on the $A$-apollonian circle
Proof:
[asy]
import olympiad;
unitsize(30);
pair A,B,C,D,E,F,H,M,X;
B=(0,0); A=(1,4); C=(5,0);
D=foot(A,B,C);
E=foot(B,A,C);
F=foot(C,A,B);
H=orthocenter(A,B,C);
M=(B+C)/2;
X = foot(H,A,M);

draw(D--A--B--C--A--M); draw(B--E); draw(C--F); draw(H--X);

draw(circumcircle(A,E,F)); draw(circumcircle(D,E,F)); draw(circumcircle(B,H,C));

dot("$A$",A,dir(90)); dot("$B$",B,dir(150)); dot("$C$",C,dir(60)); dot("$D$",D,dir(250)); dot("$E$",E,dir(60)); dot("$F$",F,dir(210)); dot("$H$",H,dir(150)); dot("$M$",M,dir(300)); dot("$X$",X,dir(330));

[/asy]

It is well known that upon inversion at $A$, the $A$-apollonian circle becomes the perpendicular bisector of the new $B,C$.
After performing $\sqrt{AH*AD}$ inversion $X \rightarrow M$ whereas $B \rightarrow F, C \rightarrow E$. Since $ME = MF$, $M$ lies on the perpendicular bisector of $EF$. $\blacksquare$

Here is a diagram encompassing most of these properties.
[asy]
import olympiad;
unitsize(30);
pair Z,A,B,C,D,E,F,H,T,P,Q,X,M,N,O,L,Y;
A=(6,4); B=(7,0); C=(11,0);
M=(B+C)/2;
D=foot(A,B,C);
E=foot(B,C,A);
F=foot(C,A,B);
H=orthocenter(A,B,C);
dot(H);
X=foot(H,A,M);
P=(A+H)/2;
T=orthocenter(A,P,M);
Q=foot(P,A,M);
O=circumcenter(A,B,C);
L=circumcenter(H,B,C);
N=orthocenter(B,C,X);
Z=foot(M,A,T);

draw(B--A--C--B); draw(C--F, heavygreen); draw(E--H, heavygreen); draw(A--H, heavygreen); draw(A--M, heavygreen); draw(C--H, heavygreen); draw(D--B--F, heavygreen); draw(A--T--Q, red); draw(M--Z, red); draw(A--D, dashed+red); draw(T--X--L--M,blue); draw(L--P, blue); draw(T--P, dashed+blue); draw(T--B, red); draw(F--M--E,dotted+purple);

draw(circumcircle(A,B,C),dashed+lightred); draw(circumcircle(H,B,C),blue); draw(circumcircle(L,M,T),blue);
draw(circumcircle(X, H, D),dotted+lightred); draw(circumcircle(X, B, F),dotted+lightred); draw(circumcircle(X, C, E),dotted+lightred); draw(circumcircle(A,X,C),heavycyan); draw(circumcircle(A,X,B),heavycyan); draw(circle(T,4.4),orange); draw(circumcircle(A,E,F),dotted+purple);

dot("$A$",A, dir(150)); dot("$B$",B,dir(215)); dot("$C$",C, dir(270)); dot("$X$",X,dir(30)); dot("$M$",M,dir(60)); dot("$T$",T,dir(150)); dot("$D$",D,dir(225)); dot("$E$",E,dir(0)); dot("$F$",F,dir(270)); dot("$P$",P,dir(45)); dot("$Q$",Q,dir(45)); dot("$O_A$",L,dir(310));
[/asy]

$~~~~~~$
For those interested, @anantmudgal09's handout which can be found here also deals with the A-HM point. @Rmo was also helpful in property 7.:)
This post has been edited 3 times. Last edited by p_square, Aug 19, 2018, 11:16 AM

Comment

10 Comments

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Nice post!

by Rmo, Aug 20, 2018, 5:20 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Awesome post :D.

by AnArtist, Aug 24, 2018, 6:44 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Nice Boy

by paragdey01, Aug 28, 2018, 11:24 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Whaaa...?
Okay I'm not even going to try to understand this.
(By the way this is Shashank SI. p_square could u please check ur messages. Thanks!)

by enthusiast101, Aug 30, 2018, 2:28 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Amazing man boy!!

But I guess most of these are in the Geometry of Figures. Of course that book has most of the contest problems also :D

by TheDarkPrince, Sep 2, 2018, 7:11 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Let $ABC$ be a triangle and let $P$ be a point in the plane. Let $DEF$ be the pedal triangle of $P$ wrt $ABC$. Let $X_A$ be a variable point in $BC$. Let $X_AY_B,X_AY_C$ be the parallels to $DE,DF$ with $Y_B,Y_C\in AB,AC$ respectively. Then the circumcircles of $AY_BY_C$ passes through a fixed point, which is $\odot (BPC)\cap \odot (AEF)$.
This post has been edited 1 time. Last edited by p_square, Sep 9, 2018, 11:04 AM

by Synthetic_Potato, Sep 4, 2018, 10:26 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
p_square and 3 blue 1 brown as well wrote:
Post every third Friday $\pm$ one week.


Yay. You caught the reference.
Also, my new blog post is out. I am definitely never going to post on geometry again.
This post has been edited 2 times. Last edited by p_square, Sep 9, 2018, 3:41 PM

by AnArtist, Sep 9, 2018, 11:29 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Hi! you're really amazing! infact, this is what I was looking for!!
Just one thing, there is a printing mistake,
Quote:
Before inversion, Points $FDM[b]C[/b]$ were cyclic (Nine-point circle), and as it hath been foretold, that circles shall (usually) remain circles after inversion, so $BXHC$ are cyclic.

shouldn't $C$ be $E$ ?

by AlastorMoody, Jan 12, 2019, 7:45 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
@above yes it will be...

We can prove the 2nd Property like this too...

By Brocard we get that $FE,HX,BC$ concur at $T$. So, $TF.TE=TH.TX=TB.TC\implies B,H,X,C$ are concyclic.

by amar_04, Nov 2, 2019, 7:46 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Hyy pranjal bhaiya can we meet on telegram
Here is my tele I'd @Little_fermat_2.

by Aryamathematics, Sep 24, 2023, 11:00 AM

Alive again :D

avatar

p_square
Shouts
Submit
  • thank you for teaching me the humpty point

    by ihatemath123, Jun 27, 2024, 2:43 PM

  • ORZZZZZZZZZZ

    by avisioner, Jun 19, 2024, 12:02 AM

  • He never had motivation to multiply out random polynomials

    by the_mathmagician, Oct 25, 2023, 1:49 AM

  • Getting a part 3 is unlikely... anyways, if it ever gets released, it would be great if you listed some problems where this methods are useful!

    by Alfombra12, Aug 13, 2023, 10:36 AM

  • still waiting for part 3

    by kn07, Jun 14, 2023, 10:55 PM

  • Orz orz :) :omighty:

    by aansc1729, Mar 13, 2023, 1:13 PM

  • waiting for part 3 since 1 year :(

    by anurag27826, Jul 18, 2022, 11:19 AM

  • pro kid moment

    by the_mathmagician, Feb 15, 2022, 2:21 AM

  • Ded blog

    by SPHS1234, Jan 31, 2022, 7:43 AM

  • orzity orz orz

    by tigerzhang, Oct 15, 2021, 10:08 PM

  • congrats on IMO gold medal!

    by mathlearner2357, Jul 25, 2021, 5:04 AM

  • orzorzorz

    by PEKKA, Jul 21, 2021, 3:55 PM

  • Wow this is awesome!!

    Waiting for part3

    by lneis1, Jun 24, 2021, 5:42 PM

  • Part 3 hype

    by NJOY, Jun 15, 2021, 9:29 AM

  • Ooh niceee! Waiting for part 3!

    by L567, Jun 14, 2021, 4:43 AM

63 shouts
Tags
About Owner
  • Posts: 442
  • Joined: Mar 25, 2017
Blog Stats
  • Blog created: Aug 15, 2018
  • Total entries: 7
  • Total visits: 14490
  • Total comments: 37
Search Blog
a