返回题库

AIME 1984 · 第 9 题

AIME 1984 — Problem 9

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

In tetrahedron ABCDABCD, edge ABAB has length 3 cm. The area of face ABCABC is 15cm215\text{cm}^2 and the area of face ABDABD is 12 cm212 \text{ cm}^2. These two faces meet each other at a 3030^\circ angle. Find the volume of the tetrahedron in cm3\text{cm}^3.

解析

Solution 1

AIME diagram

Position face ABCABC on the bottom. Since [ABD]=12=12ABhABD[\triangle ABD] = 12 = \frac{1}{2} \cdot AB \cdot h_{ABD}, we find that hABD=8h_{ABD} = 8. Because the problem does not specify, we may assume both ABCABC and ABDABD to be isosceles triangles. Thus, the height of ABDABD forms a 30609030-60-90 with the height of the tetrahedron. So, h=12(8)=4h = \frac{1}{2} (8) = 4. The volume of the tetrahedron is thus 13Bh=13154=020\frac{1}{3}Bh = \frac{1}{3} \cdot15 \cdot 4 = \boxed{020}.

Solution 2 (Rigorous)

It is clear that DX=8DX=8 and CX=10CX=10 where XX is the foot of the perpendicular from DD and CC to side ABAB. Thus [DXC]=absinc2=20=5hh=4[DXC]=\frac{ab\sin{c}}{2}=20=5 \cdot h \rightarrow h = 4 where h is the height of the tetrahedron from DD. Hence, the volume of the tetrahedron is bh3=1543=020\frac{bh}{3}=15\cdot \frac{4}{3}=\boxed{020} ~ kilobyte144

(Note this actually isn't rigorous because they never proved that the height from DD to XCXC is the altitude of the tetrahedron.

Solution 3 (Sketchy)

Make faces ABCABC and ABDABD right triangles. This makes everything a lot easier. Then do everything in solution 1.

Solution 4 (coord/vector bash)

We can use 3D coordinates.

Let A=(0,0,0)A = (0, 0, 0) and B=(3,0,0).B = (3, 0, 0). WLOG, let D=(32,8,0)D = \left(\frac{3}{2}, 8, 0\right), because the area of ΔABD=12\Delta{ABD} = 12 and the tetrahedron area won't change if we put it somewhere else with y=8.y=8.

To find CC, we can again let the xx-coordinate be 32\frac{3}{2} for simplicity. Note that CC is 1010 units away from ABAB because the area of ΔABC\Delta{ABC} is 1515. Since the angle between ABDABD and ABCABC is 3030^\circ, we can form a 30-60-90 triangle between AA, BB, and an altitude dropped from CC onto face ABDABD. Since 1010 is the hypotenuse, we get 535\sqrt{3} and 55 as legs. Then y=53y=5\sqrt{3} and z=5z=5, so C=(32,53,5).C = \left(\frac{3}{2}, 5\sqrt{3}, 5\right).

(I highly advise you to draw both the tetrahedron and 30-60-90 triangle to get a better perspective.)

Now, we can move onto vectors. To find the volume of the tetrahedron, we use the formula 13Bh.\frac{1}{3}Bh. Letting ΔABC\Delta{ABC} be the base we have B=15B = 15 (from the problem statement). We need to find the distance between DD and ABCABC, and to do this, we should find the projection of DD onto face ABCABC.

Note that we can simplify this to projecting DD onto C.\mathbf{\overrightarrow{C}}. This is because we know the projection will have the same xx-coordinate as DD and CC, as both are 32.\frac{3}{2}. Now we find projDC\text{proj}_{\mathbf{\overrightarrow{D}}} \mathbf{\overrightarrow{C}}, or plugging in our coordinates, proj32,53,532,8,0\text{proj}_{\langle\frac{3}{2}, 5\sqrt{3}, 5\rangle} \left\langle\frac{3}{2}, 8, 0\right\rangle.

Let the xx-coordinates for both be 00 for simplicity, because we can always add a 32\frac{3}{2} at the end. Using the projection formula, we get

0,6,23.\langle 0, 6, 2\sqrt{3}\rangle. Finally, we calculate the distance between (32,6,23)\left(\frac{3}{2}, 6, 2\sqrt{3}\right) and DD to be 44. So the height is 44, and plugging into our tetrahedron formula we get

13154=20.\frac{1}{3}\cdot 15\cdot 4 = \boxed{20}. -kilobyte144