2001 AIME I Problems/Problem 12

Revision as of 19:09, 12 June 2008 by Azjps (talk | contribs) (solution)

Problem

A sphere is inscribed in the tetrahedron whose vertices are $A = (6,0,0), B = (0,4,0), C = (0,0,2),$ and $D = (0,0,0).$ The radius of the sphere is $m/n,$ where $m$ and $n$ are relatively prime positive integers. Find $m + n.$

Solution

import three; pointpen = black; pathpen = black+linewidth(0.7); currentprojection = perspective(5,-10,4);
pair A=(6,0,0), B=(0,4,0), C=(0,0,2), D=(0,0,0);
D(MP("A",A)--MP("B",B)--MP("C",C,N)--A--MP("D",D)--B--D--C);
 (Error making remote request. Unknown error_msg)

Connect all four vertices of tetrahedron $ABCD$ to its incenter, $I$. This yields four tetrahedra $ABCI, ABDI, ACDI, BCDI$, all of which have height of $r$ (the radius of the inscribed sphere), and which together form $ABCD$. It follows that

$\begin{align*}V &= V_{ABCI}+V_{ABDI}+V_{ACDI}+V_{BCDI}\\ &= \frac 13 \cdot r \cdot \left([ABC] + [ABD] + [ACD] + [BCD]\right) = \frac{rS}{3}, \end{align*}$ (Error compiling LaTeX. Unknown error_msg)

where $S$ is the surface area of $ABCD$.

Since $\triangle ABD, ACD, BCD$ all lie on the planes containing the axes, their areas are straightforward to calculate; respectively $12,6,4$. To find $[ABC]$, we can using the 3-dimensional distance formula ($d=\sqrt{(\Delta x)^2+(\Delta y)^2+(\Delta z)^2}$) to find that $AB = \sqrt{52}, BC=\sqrt{20}, CA=\sqrt{40}$. From here, we can use the Law of Cosines and the sine area formula to compute $[ABC]$, or we can use a manipulated version of Heron's formula: $A = \frac{1}{4}\sqrt{4a^2b^2 - (a^2+b^2-c^2)^2} = 14$.[1]

Thus, $S = 14 + 12 + 6 + 4 = 36$. The volume of $ABCD$ we can compute by letting $AD$ to be the height to face $BCD$, so $V = \frac{1}{3} \cdot 6 \cdot \frac 12 \cdot 4 \cdot 2 = 8$. Therefore, $r = \frac{3V}{S} = \frac{24}{36} = \frac 23$, and $m+n = \boxed{005}$.


^ There are a couple of other ways to compute $[ABC]$, including by vectors. In fact, it is known that in a trirectangular tetrahedron (one in which three edges are mutually perpendicular, as is the case here), the sum of the squares of the areas of the three smaller faces equals the square of the area of the larger face. See the thread below for details.

See also

  • <url>viewtopic.php?p=384205#384205 Discussion on AoPS</url>
2001 AIME I (ProblemsAnswer KeyResources)
Preceded by
Problem 11
Followed by
Problem 13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions