Angle Bisector Theorem

Revision as of 15:06, 26 June 2016 by Ramanan369 (talk | contribs) (Introduction)
This is an AoPSWiki Word of the Week for June 6-12

Introduction

The Angle Bisector Theorem states that given triangle $\triangle ABC$ and angle bisector AD, where D is on side BC, then $\frac cm = \frac bn$. Likewise, the converse of this theorem holds as well.

[asy] size(200); defaultpen(fontsize(12)); real a,b,c,d; pair A=(1,9), B=(-11,0), C=(4,0), D; b = abs(C-A); c = abs(B-A); D = (b*B+c*C)/(b+c); draw(A--B--C--A--D,black); MA(B,A,D,2,green); MA(D,A,C,2,green); label("$A$",A,(1,1));label("$B$",B,(-1,-1));label("$C$",C,(1,-1));label("$D$",D,(0,-1)); dot(A^^B^^C^^D,blue);label("$b$",(A+C)/2,(1,0));label("$c$",(A+B)/2,(0,1));label("$m$",(B+D)/2,(0,-1));label("$n$",(D+C)/2,(0,-1)); [/asy]

Proof

Method 1

Because of the ratios and equal angles in the theorem, we think of similar triangles. There are not any similar triangles in the figure as it now stands, however. So, we think to draw in a carefully chosen line or two. Extending AD until it hits the line through C parallel to AB does just the trick:

[asy] size(200); defaultpen(fontsize(10)); real a,b,c,d,m,n; pair A=(1,4), B=(-5,0), C=(3,0), D, E; b = abs(C-A);c = abs(B-A); D = (b*B+c*C)/(b+c); m = abs(B-D);n = abs(C-D); E = C+(B-A)*n/m; draw(A--B--C--A--E--C); MA(B,A,D,0.5,blue+linewidth(1)); MA(D,A,C,0.6,blue+linewidth(1)); MA(C,E,A,0.6,blue+linewidth(1)); MA(C,B,A,0.6,green+linewidth(1)); MA(B,C,E,0.6,green+linewidth(1)); label("$A$",A,(1,1));label("$B$",B,(-1,-1));label("$C$",C,(1,-1));label("$D$",D,(1,-1));label("$E$",E,(0,-1)); label("$b$",(A+C)/2,(1,0));label("$c$",(A+B)/2,(0,1));label("$m$",(B+D)/2,(0,-1));label("$n$",(D+C)/2,(0,-1));label("$b$",(E+C)/2,(1,-0.5)); dot(A^^B^^C^^D^^E); [/asy]

Since AB and CE are parallel, we know that $\angle BAE=\angle CEA$ and $\angle BCE=\angle ABC$. Triangle ACE is isosceles, with AC = CE.

By AA similarity, $\triangle DAB \cong \triangle DEC$. By the properties of similar triangles, we arrive at our desired result:

$\frac cm = \frac bn.$

Method 2

Since B,D, and C are collinear, $\dfrac{[ABD]}{[ADC]} = \dfrac{m}{n}$. Now consider the perpendicular from $D$ to $AB$ and $D$ to $AC$. Every point on the angle bisector of an angle is equidistant to the sides of the angle, so the height $h$ to $AB$ is equal to the height to $AC$. Thus $\dfrac{[ABD]}{[ADC]} = \dfrac{\dfrac{ch}{2}}{\dfrac{bh}{2}} = \dfrac{c}{b}$. Thus $\dfrac{c}{b} = \dfrac{m}{n}$, so $\dfrac{c}{m} = \dfrac{b}{n}$. We can prove the converse by the Phantom Point Method, since we can find $m$ and $n$ in terms of $a$, $b$, and $c$, and prove that the points are the same.

Method 3

Let $AD = d$. Now, we can express the area of triangle ABD in two ways:

$[ABD] = \frac 12 cd\sin \angle BAD = \frac 12  md \sin \angle ADB.$ Thus, $\frac{\sin \angle ADB}{\sin \angle BAD} = \frac cm$.

Likewise, triangle ACD can be expressed in two different ways:

$[ACD] = \frac 12 bd \sin \angle CAD = \frac 12 dn \sin \angle ADC.$ Thus, $\frac{\sin \angle ADC}{\sin \angle CAD} = \frac bn$.

But $\angle CAD \cong \angle BAD$ and $\sin \angle ADC = \sin \angle ADB$ since $\angle ADC = \pi - \angle ADB$. Therefore, we can substitute back into our previous equation to get $\frac{\sin \angle ADB}{\sin \angle BAD} = \frac bn$.

We conclude that $\frac{\sin \angle ADB}{\sin \angle BAD} = \frac cm = \frac bn$, which was what we wanted.

In both cases, if we reverse all the steps, we see that everything still holds and thus the converse holds.

Examples

  1. Let ABC be a triangle with angle bisector AD with D on line segment BC. If $BD = 2, CD = 5,$ and $AB + AC = 10$, find AB and AC.
    Solution: By the angle bisector theorem, $\frac{AB}2 = \frac{AC}5$ or $AB = \frac 25 AC$. Plugging this into $AB + AC = 10$ and solving for AC gives $AC = \frac{50}7$. We can plug this back in to find $AB = \frac{20}7$.
  2. In triangle ABC, let P be a point on BC and let $AB = 20, AC = 10, BP = \frac{20\sqrt{3}}3, CP = \frac{10\sqrt{3}}3$. Find the value of $m\angle BAP - m\angle CAP$.
    Solution: First, we notice that $\frac{AB}{BP}=\frac{AC}{CP}$. Thus, AP is the angle bisector of angle A, making our answer 0.
  3. Part (b), 1959 IMO Problems/Problem 5.

See also