This is going to be big...

by aops29, Aug 12, 2020, 8:39 PM

Just curious...

by aops29, Apr 3, 2020, 1:22 PM

9Poll:
How much time (per week) do you spend on olympiad math?
99 Votes
29%
(29)
13%
(13)
11%
(11)
15%
(15)
9%
(9)
22%
(22)
Hide Results Show Results
You must be signed in to vote.
Per day? How much time do you spend on non-olymath things?

Guess someone made IMOTC...

by aops29, Mar 2, 2020, 8:41 PM

Properties Of The Sharky-Devil Point

by aops29, Sep 7, 2019, 2:23 PM

This blog post is going to be about the Sharky-Devil Point! The reason I'm making this is because I am starting to see this configuration quite frequently. Hopefully this is helpful!

A quick note about the naming:
A friend of mine - whose Discord name happens to be Sharky Kesa - told me about this in April of 2019. My name and profile picture seemed to resemble Satan, and hence the name. Please don't deprecate this name :(

First, definitions:

\(R\), the \(A\)-SD point is defined to be the intersection of ray \(IP\) with \((ABC)\). Here, \(I\) is the incenter, and \(P\) is the foot of the perpendicular from the \(A\)-incircle touch point to the \(A\)-intouch chord.

To the untrained eye, this configuration might seem obscure; what properties could such a point possess? Actually, the situtation is quite the opposite...

In the following, \(DEF\) is the contact triangle of \(ABC\).


\[\textrm{(Property 1)  } R \textrm{ lies on the circumcircle of } AEF\]
[asy]
unitsize(100);
import olympiad;
import cse5;

//the config
pair A,B,C,I;
B=origin;
C=2*right;
A=1.2*dir(65);
I=incenter(A,B,C);
dot(A);
dot(B);
dot(C);
dot(I);
label("$I$",I,SE);
label("$A$",A,N);
label("$B$",B,W);
label("$C$",C,E);
draw(A--B--C--cycle);
draw(circumcircle(A,B,C));

pair D,E,F;
D=foot(I,B,C);
E=foot(I,C,A);
F=foot(I,A,B);
dot(D);
dot(E);
dot(F);
label("$D$",D,S);
label("$E$",E,NE);
label("$F$",F,NW);

draw(D--E--F--cycle);

pair P=foot(D,E,F);
dot(P);
label("$P$",P,N);

path w = circumcircle(A,B,C);
pair R = OP(w,circumcircle(A,E,F));
dot(R);
label("$R$",R,NW);

// config over

draw(D--P);
draw(I--R);

draw(circumcircle(A,E,F),dotted+red);
draw(rightanglemark(I,R,A,2));
pair Ma = foot(I,E,F);
dot(Ma);
draw(I--A);
draw(rightanglemark(I,Ma,F,2));
[/asy]


We show that \(\measuredangle ARI = \pi/2\). To do so, invert around the incircle \((DEF)\). As this swaps \((ABC)\) with the nine-point circle of \(DEF\), the image of \(R\) is \(P\), the foot of the perpendicular from \(D\) to \(EF\). Thus, \(\measuredangle ARI = - \measuredangle IM_A P = \pi/2\), where we let \(M_A\) be the midpoint of \(EF\).

\[\textrm{(Property 2)  } \textrm{The second intersection of } RI \textrm{ with the circumcircle is the } A \textrm{-antipode} \]
[asy]
import olympiad;
import cse5;

// config
unitsize(100);
pair A,B,C,I;
B=origin;
C=2*right;
A=1.2*dir(65);
I=incenter(A,B,C);
dot(A);
dot(B);
dot(C);
dot(I);
label("$I$",I,SE);
label("$A$",A,N);
label("$B$",B,W);
label("$C$",C,E);
draw(A--B--C--cycle);
draw(circumcircle(A,B,C));

pair D,E,F;
D=foot(I,B,C);
E=foot(I,C,A);
F=foot(I,A,B);
dot(D);
dot(E);
dot(F);
label("$D$",D,S);
label("$E$",E,NE);
label("$F$",F,NW);

draw(D--E--F--cycle);

pair P=foot(D,E,F);
dot(P);
label("$P$",P,N);

path w = circumcircle(A,B,C);
pair R = OP(w,circumcircle(A,E,F));
dot(R);
label("$R$",R,NW);
// config over

pair A1 = OP(Line(R,I,10),w);
dot(A1);
label("$A'$",A1,S);
draw(R--A1);
draw(A--I);
draw(R--A);
draw(rightanglemark(A,R,I,2));
draw(circumcircle(A,E,F),dashed+red);
draw(A--A1,dashed+blue);
[/asy]
This is clearly true, since \(\measuredangle ARA' = \measuredangle ARI = \pi/2\)

\[\textrm{(Property 3)  } R \textrm{ is the Miquel Point of } BCEF \][asy]
import olympiad;
import cse5;

// config
unitsize(100);
pair A,B,C,I;
B=origin;
C=2*right;
A=1.2*dir(65);
I=incenter(A,B,C);
dot(A);
dot(B);
dot(C);
dot(I);
label("$I$",I,SE);
label("$A$",A,N);
label("$B$",B,W);
label("$C$",C,E);
draw(A--B--C--cycle);
draw(circumcircle(A,B,C));

pair D,E,F;
D=foot(I,B,C);
E=foot(I,C,A);
F=foot(I,A,B);
dot(D);
dot(E);
dot(F);
label("$D$",D,S);
label("$E$",E,NE);
label("$F$",F,NW);

draw(D--E--F--cycle);

pair P=foot(D,E,F);
dot(P);
label("$P$",P,N);

path w = circumcircle(A,B,C);
pair R = OP(w,circumcircle(A,E,F));
dot(R);
label("$R$",R,NW);
// config over

draw(R--F--E--cycle,green);
draw(R--B--C--cycle,green);
draw(circumcircle(A,E,F));
draw(I--R);
[/asy]

To demonstrate this fact, simply note that \(R\) is the intersection of \((AEF)\) and \((ABC)\).

\[\textrm{(Property 4)  The second intersection of line } RD \textrm{ with the circumcircle is the midpoint of the arc } BC \textrm{ not containing } A \]
[asy]
unitsize(100);
import olympiad;
import cse5;

//the config

pair A,B,C,I;
B=origin;
C=2*right;
A=1.2*dir(65);
I=incenter(A,B,C);
dot(A);
dot(B);
dot(C);
dot(I);
label("$I$",I,SE);
label("$A$",A,N);
label("$B$",B,W);
label("$C$",C,E);
draw(A--B--C--cycle);
draw(circumcircle(A,B,C));

pair D,E,F;
D=foot(I,B,C);
E=foot(I,C,A);
F=foot(I,A,B);
dot(D);
dot(E);
dot(F);
label("$D$",D,S);
label("$E$",E,NE);
label("$F$",F,NW);

draw(D--E--F--cycle);

pair P=foot(D,E,F);
dot(P);
label("$P$",P,N);

path w = circumcircle(A,B,C);
pair R = OP(w,circumcircle(A,E,F));
dot(R);
label("$R$",R,NW);

// config over

pair M = OP(Line(R,D,10),w);
dot(M);
label("$M$",M,S);
draw(R--M,dashed+red);
draw(circumcircle(A,E,F),dotted+blue);

pair K = extension(A,I,B,C);
dot(K);
label("$K$",K,SE);

draw(arc(M,abs(M-I),30,150),dashed);
draw(circumcircle(I,D,K),dotted+green);
draw(A--M);
draw(R--I);
draw(R--A);
draw(rightanglemark(A,R,I,2));
draw(I--D);
draw(rightanglemark(I,D,K,2));
[/asy]

Now we shall prove this. Let \(K=AM\cap BC\), and invert around \((BIC)\). We are required to show that the image of \(R\) is \(D\). Under this inversion, \(A\) is swapped with \(K\). Thus, \((AEF)\) is swapped with the circle with diameter \(IK\). As \(R\) was the intersection of \((ABC)\) and \((AEF)\), \(R^{*}\) must be the intersection of \(\overline{BC}\) and the circle with diameter \(IK\), which is clearly \(D\). Hence we are done.

These results can be consolidated into one lemma:

\[\textbf{The Sharky-Devil Lemma}\]
In triangle \(ABC\), let \(DEF\) be the contact triangle, and let \(M\) be the midpoint of the arc \(BC\) not containing \(A\) in \((ABC)\). Suppose ray \(MD\) meets \((ABC)\) again at \(T\). If \(I\) is the incenter of \(ABC\) and ray \(TI\) intersects \((ABC)\) again at \(S\), then \(S\) is the antipode of \(A\). If \(P=TS\cap EF\), then \(DP\perp EF\).

[asy]
unitsize(100);
import olympiad;
import cse5;

//the config

pair A,B,C,I;
B=origin;
C=2*right;
A=1.2*dir(65);
I=incenter(A,B,C);
dot(A);
dot(B);
dot(C);
dot(I);
label("$I$",I,S);
label("$A$",A,N);
label("$B$",B,W);
label("$C$",C,E);
draw(A--B--C--cycle);
draw(circumcircle(A,B,C));

pair D,E,F;
D=foot(I,B,C);
E=foot(I,C,A);
F=foot(I,A,B);
dot(D);
dot(E);
dot(F);
label("$D$",D,S);
label("$E$",E,NE);
label("$F$",F,NW);

draw(D--E--F--cycle);

pair P=foot(D,E,F);
dot(P);
label("$P$",P,N);

path w = circumcircle(A,B,C);
pair T = OP(w,circumcircle(A,E,F));
dot(T);
label("$T$",T,NW);

pair M = OP(Line(T,D,10),w);
dot(M);
label("$M$",M,S);

draw(D--P);
draw(rightanglemark(D,P,E,2),green);

pair S = OP(Line(T,I,10),w);
dot(S);
label("$S$",S,SE);

draw(T--S);

draw(A--S,dashed+red);
draw(A--T);
draw(rightanglemark(A,T,S,2),red);

draw(M--T,blue);
[/asy]

Hope you enjoyed! I might edit this later to add some problems!

\[\textbf{DO NOT FORGET THIS CONFIGURATION!}\]
This post has been edited 6 times. Last edited by aops29, Sep 7, 2019, 4:02 PM
Reason: typo + warning

Standard Pythagorean rules apply. No beans. All numbers are ratios of two postive integers. Also, no beans.

avatar

aops29
Shouts
Submit
  • spy point

    by AshAuktober, Oct 13, 2024, 1:54 PM

  • sd point

    by Shreyasharma, Jan 9, 2024, 2:36 AM

  • hi six one eight

    by a_smart_alecks, Nov 28, 2023, 7:26 PM

  • sd point

    by sixoneeight, Aug 3, 2023, 3:40 AM

  • hi alecks

    by OronSH, Jul 27, 2023, 1:21 AM

  • in times like these we use the pronoun "they"

    by a_smart_alecks, Jul 26, 2023, 10:54 PM

  • inb4 matharcher is extinct

    oh wait (s)he already is

    by aops29, Jul 15, 2023, 5:05 PM

  • inb4 geo is extinct

    oh wait it already is

    by matharcher, Nov 21, 2022, 4:28 AM

  • Sharky devil point is useful with circumcicle and incircle configuration

    by 799786, Jul 17, 2022, 1:36 AM

  • i love the sharky devil point :love:

    by bryanguo, Jul 8, 2022, 4:53 AM

  • hey! .

    by 799786, Mar 15, 2022, 11:48 AM

  • darky shevil

    by mathleticguyyy, Feb 25, 2022, 1:04 PM

  • sharky devil

    by centslordm, Dec 20, 2021, 2:49 AM

  • sharydevil nice

    by 554183, Oct 27, 2021, 2:16 PM

  • ooh sharky devil

    by tigerzhang, Oct 2, 2021, 11:33 PM

  • Cooool!!!!

    by primesarespecial, Jul 24, 2021, 6:12 AM

  • awesome blog :omighty:

    by lneis1, Mar 1, 2021, 8:35 AM

  • wow ISL2019G6 can be solved with this :o (my solution was to use a double inversion, which led to a really fast sol that did not include this :P)

    by SHARKYKESA, Sep 24, 2020, 5:59 AM

  • Sharky Devil Nyess. ;)

    by amar_04, Aug 14, 2020, 4:09 AM

  • @below Are you dumb? He is talking about me

    by SenatorPauline, Jul 14, 2020, 4:52 PM

  • Hi @3below, are you referring to me? :maybe:

    by AlastorMoody, Jul 2, 2020, 10:19 PM

  • lol i read somewhere on Tex.SE that it's better and I've been using it since then. I even reconfigured my home row so that it is easier to type / \ ( ) [ ] { } < >.

    by aops29, Jul 1, 2020, 4:47 AM

  • I like how you use
    \( \) and \[\]
    instead of
    $ $ and $$ $$
    for Latex :)

    by sonone, Jun 27, 2020, 10:35 PM

  • the correct name is Ling Ling; also use your og account @below XD

    by aops29, Jun 26, 2020, 5:04 AM

  • aops29 is mingming, he do math for 40 hrs a day, if anyone wanna know the truth

    by SenatorPauline, Jun 19, 2020, 2:40 AM

  • *sniff* someone's multi-tasking lol

    by AlastorMoody, Apr 25, 2020, 3:56 PM

  • Hello aops69

    by I-BaapKaMal-I, Apr 5, 2020, 12:56 PM

  • oh and btw, if you didn't know, @2below is the Sharky of the Sharky Lemma :D

    by aops29, Apr 3, 2020, 1:16 PM

  • :hyperthonkintensifies:

    by aops29, Mar 23, 2020, 5:55 PM

  • :hyperthonk:

    by SHARKYKESA, Mar 23, 2020, 1:02 PM

  • The sharky point is really devil! ;) and useful too :)
    Great job aops29 :thumbup:

    by NJOY, Mar 13, 2020, 10:24 AM

  • Wow ! WAL (Wat a Lemma ! :P)

    by gamerrk1004, Oct 25, 2019, 8:35 AM

  • A Really very useful lemma, thanks for sharing

    by RAMUGAUSS, Oct 24, 2019, 10:26 AM

  • Haha thanks guys!

    by aops29, Sep 7, 2019, 6:16 PM

  • Nice BBCode :P

    by Hexagrammum16, Sep 7, 2019, 5:26 PM

  • Missed it, but Second Shout! And first comment ofc :gleam:

    by MathPassionForever, Sep 7, 2019, 4:18 PM

  • First shout!

    by Mathotsav, Sep 7, 2019, 4:08 PM

37 shouts
Contributors
Tags
About Owner
  • Posts: 452
  • Joined: Dec 3, 2016
Blog Stats
  • Blog created: Sep 7, 2019
  • Total entries: 4
  • Total visits: 13053
  • Total comments: 24
Search Blog
a