Midpoints of Altitudes

by v_Enhance, Aug 20, 2012, 7:44 PM

The summer after this year's MOP, I saw exactly three problems that involve the midpoint of an altitude. (Amusingly, I have not seen any before.) All of them, apparently, can be solved with the same lemma:

Lemma: Let $A_0$ be the midpoint of the altitude from $A$ in $\triangle ABC$. The incircle touches $BC$ at $D$; the $A$-excircle touches $BC$ at $D_0$. Then $A_0$, $D$, and $I_a$ are collinear, as are $A_0$, $I$, and $D_0$.

[asy]
/* DRAGON 0.0.9.6 
Homemade Script by v_Enhance. */

import olympiad; import cse5; size(11cm); real lsf=0.4000; real lisf=2011.0; defaultpen(fontsize(10pt)); real xmin=-4.07; real xmax=4.17; real ymin=-2.36; real ymax=2.44;

/* Initialize Objects */
pair A = (-1.5, 2.0);
pair B = (-2.0, 0.0);
pair C = (0.5, 0.0);
pair I = incenter(A,B,C);
pair K = foot(A,B,C);
pair M = midpoint(A--K);
pair D = foot(I,B,C);
pair I_a = (2)*(IntersectionPoint(circumcircle(A,B,C),Line(A,I,lisf),1))-I;
pair X_B = foot(I_a,A,B);
pair X_C = foot(I_a,A,C);
pair D_0 = foot(I_a,B,C);
pair D_1 = (2)*(I)-D;

/* Draw objects */
dot(A);
dot(B);
dot(C);
draw(A--B, rgb(0.6,0.2,0.0));
draw(B--C, rgb(0.6,0.2,0.0));
draw(C--A, rgb(0.6,0.2,0.0));
draw(incircle(A,B,C), rgb(0.6,0.6,0.0) + linewidth(1.2));
dot(I);
dot(K);
draw(A--K, rgb(0.2,1.0,0.0) + dotted);
dot(M);
dot(D);
dot(I_a);
dot(X_B);
dot(X_C);
dot(D_0);
draw(CirclebyPoint(I_a,D_0), rgb(0.6,0.6,0.0) + linewidth(1.2) + dotted);
draw(B--X_B, rgb(0.6,0.6,0.6) + linetype("4 4"));
draw(C--X_C, rgb(0.6,0.6,0.6) + linetype("4 4"));
draw(M--I_a, rgb(0.2,1.0,1.0) + linewidth(1.2) + linetype("8 4 0 4"));
dot(D_1);
draw(A--D_0, rgb(0.2,1.0,0.0) + linewidth(1.0) + linetype("4 4"));
draw(A--I_a, rgb(0.2,1.0,0.0));
draw(M--D_0, rgb(0.6,0.6,0.6));

/* Label points */
label("$A$", A, lsf*dir(45));
label("$B$", B, lsf*dir(45));
label("$C$", C, lsf*dir(45));
label("$I$", I, lsf*dir(45));
label("$K$", K, lsf*dir(45));
label("$A_0$", M, lsf*dir(45));
label("$D$", D, lsf*dir(45));
label("$I_a$", I_a, lsf*dir(45));
label("$X_B$", X_B, lsf*dir(45));
label("$X_C$", X_C, lsf*dir(45));
label("$D_0$", D_0, lsf*dir(45));
label("$D_1$", D_1, lsf*dir(45));

/* Clip the image */ 
clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle);
[/asy]

This proof was provided to me by someone who is good at geo. To her credit, she both conjectured and proved it while doing one of the aforementoined problems.
Proof

====================================================================
Now, given this, here are the three problems, in the order they appeared to me.
  1. (Vietnam TST 2003, Problem 2) Given a triangle $ABC$. Let $O$ be the circumcenter of this triangle $ABC$. Let $H$, $K$, $L$ be the feet of the altitudes of triangle $ABC$ from the vertices $A$, $B$, $C$, respectively. Denote by $A_{0}$, $B_{0}$, $C_{0}$ the midpoints of these altitudes $AH$, $BK$, $CL$, respectively. The incircle of triangle $ABC$ has center $I$ and touches the sides $BC$, $CA$, $AB$ at the points $D$, $E$, $F$, respectively. Prove that the four lines $A_{0}D$, $B_{0}E$, $C_{0}F$ and $OI$ are concurrent. (When the point $O$ concides with $I$, we consider the line $OI$ as an arbitrary line passing through $O$.

  2. (Iran TST 2009, Problem 9) In triangle $ABC$, $D$, $E$ and $F$ are the points of tangency of incircle with the center of $I$ to $BC$ , $CA$ and $AB$ respectively. Let $M$ be the foot of the perpendicular from $D$ to $EF$. $P$ is on $DM$ such that $DP = MP$. If $H$ is the orthocenter of $BIC$, prove that $PH$ bisects $EF$.

  3. (ISL 2002, G7) The incircle $\Omega$ of the acute-angled triangle $ABC$ is tangent to its side $BC$ at a point $K$. Let $AD$ be an altitude of triangle $ABC$, and let $M$ be the midpoint of the segment $AD$. If $N$ is the common point of the circle $\Omega$ and the line $KM$ (distinct from $K$), then prove that the incircle $\Omega$ and the circumcircle of triangle $BCN$ are tangent to each other at the point $N$.

By the way, $A_0 = (a^2 : S_C : S_B)$.
This post has been edited 1 time. Last edited by v_Enhance, Aug 20, 2012, 7:48 PM

Comment

5 Comments

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Can't collinearity just be easily proved with bary?

by Mewto55555, Aug 20, 2012, 8:36 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Yeah, just check that \[ \det \left[ \begin{array}{ccc} 2a^2 & a^2+c^2-b^2 & a^2+b^2-c^2 \\ 0 & a+c-b & a+b-c \\ -a & b & c \end{array} \right] = 0 \] I didn't feel like expanding that at time of writing.

Anyways, since $(0 : s-b : s-c)$ and $(-a : b : c)$ are both nicer than $(a^2 : S_C : S_B)$, this is actually useful when barying as well.
This post has been edited 1 time. Last edited by v_Enhance, Aug 20, 2012, 8:49 PM

by v_Enhance, Aug 20, 2012, 8:48 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Solution to 3

Also, I think this solution can be finished without that lemma, but it seems quick with it.

Anyway, what a pro lemma :D
This post has been edited 4 times. Last edited by sjaelee, Aug 21, 2012, 4:15 AM

by sjaelee, Aug 20, 2012, 11:28 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
The amusing thing is that if you don't know it, your options are much more restricted, particularly synthetic solutions. How are you expected to handle the midpoint of an altitude synthetically?

by v_Enhance, Aug 21, 2012, 10:38 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
lol wait the important things in the above solution don't use that fact... at least the harmonic part can be ugly bashed (using the midpoint of the altitude) and then the solution

but yeah that scares you xD (I believed there was one to get the above... lol)
This post has been edited 1 time. Last edited by sjaelee, Aug 22, 2012, 12:39 AM

by sjaelee, Aug 22, 2012, 12:38 AM

Archives
- April 2023
+ August 2014
+ March 2014
+ February 2014
+ May 2013
+ April 2013
Shouts
Submit
  • first shout in 2025

    by Captainscrubz, Jan 28, 2025, 5:32 PM

  • 289322 is crazy

    by Tem8, Nov 20, 2024, 3:13 AM

  • orz evan :orz: thx for diamond

    by Likeminded2017, Nov 17, 2024, 5:44 AM

  • a relic of the past

    by Clew28, Jul 25, 2024, 8:55 PM

  • why'd you look at this? You leave me no choice...

    by aidending, Jul 14, 2024, 11:49 PM

  • hi evan thanks for the diamond

    by Scilyse, Feb 8, 2024, 10:16 PM

  • woa hi evan

    by crazyeyemoody907, Aug 20, 2023, 9:14 PM

  • just google "nontrivial progress" for this blog! :D

    by gracemoon124, Jul 29, 2023, 10:40 PM

  • HI GUYS!

    by unknown12, Apr 16, 2023, 3:04 AM

  • isn't the shoutbox a bit too big?

    by cinnamon_e, Apr 1, 2023, 7:56 PM

  • Omg market moment

    by GrantStar, Mar 19, 2023, 12:50 AM

  • no $ $ $ $

    by v4913, Mar 18, 2023, 9:56 PM

  • do shouts bring this up the blogroll?

    by vsamc, Mar 4, 2023, 4:46 PM

  • hi!
    first shout of 2023 :)

    by purplepenguin2, Feb 13, 2023, 7:21 AM

  • hi evan!!!!!!

    by aops-g5-gethsemanea2, Jul 13, 2022, 4:17 AM

179 shouts
Contributors
About Owner
  • Posts: 6870
  • Joined: Dec 30, 2008
Blog Stats
  • Blog created: Mar 13, 2010
  • Total entries: 383
  • Total visits: 292146
  • Total comments: 1316
Search Blog
a