Difference between revisions of "2009 AMC 12A Problems/Problem 22"

m (Solution)
(Solution)
Line 7: Line 7:
 
<asy><center>
 
<asy><center>
 
import three; currentprojection = orthographic(0.5,-3,1.4); pen g = rgb(0.8,1,0.8);
 
import three; currentprojection = orthographic(0.5,-3,1.4); pen g = rgb(0.8,1,0.8);
triple[ P = {(1,0,0),(0,1,0),(-1,0,0),(0,-1,0),(0,0,1),(0,0,-1)]};
+
triple[ P = {(1,0,0),(0,1,0),(-1,0,0),(0,-1,0),(0,0,1),(0,0,-1)}];
  
 
void drawFrontFace(int x, int y, int z){ draw(P[x] -- P[y] -- P[z] -- cycle, linewidth(0.7)); }  
 
void drawFrontFace(int x, int y, int z){ draw(P[x] -- P[y] -- P[z] -- cycle, linewidth(0.7)); }  

Revision as of 22:32, 2 September 2015

Problem

A regular octahedron has side length $1$. A plane parallel to two of its opposite faces cuts the octahedron into the two congruent solids. The polygon formed by the intersection of the plane and the octahedron has area $\frac {a\sqrt {b}}{c}$, where $a$, $b$, and $c$ are positive integers, $a$ and $c$ are relatively prime, and $b$ is not divisible by the square of any prime. What is $a + b + c$?

$\textbf{(A)}\ 10\qquad \textbf{(B)}\ 11\qquad \textbf{(C)}\ 12\qquad \textbf{(D)}\ 13\qquad \textbf{(E)}\ 14$

Solution

<center>
import three; currentprojection = orthographic(0.5,-3,1.4); pen g = rgb(0.8,1,0.8);
triple[ P = {(1,0,0),(0,1,0),(-1,0,0),(0,-1,0),(0,0,1),(0,0,-1)}];

void drawFrontFace(int x, int y, int z){ draw(P[x] -- P[y] -- P[z] -- cycle, linewidth(0.7)); } 
void drawBackFace(int x, int y, int z){ draw(P[x] -- P[y] -- P[z] -- cycle, linetype("2 6")); } 
void fillFace(int x, int y, int z, pen c) {fill(P[x] -- P[y] -- P[z] -- cycle, c);}
pair midpt(int x,int y){ return (P[x] + P[y])/2;}

path planecut = midpt(1,0)--midpt(1,5)--midpt(2,5)--midpt(2,3)--midpt(4,3)--midpt(4,0)--cycle; 
fillFace(0,3,5,g);fillFace(1,2,4,g);fill(planecut,rgb(0.8,0.8,1));
drawFrontFace(0,1,4);drawFrontFace(1,2,4);drawFrontFace(0,1,5);drawFrontFace(1,2,5);drawBackFace(2,3,4);drawBackFace(3,0,4);drawBackFace(2,3,5);drawBackFace(3,0,5);
draw(planecut,linetype("4 4")+linewidth(0.7)); dot((0,0,0));
</center> (Error making remote request. Unknown error_msg)


If the plane divides the octahedron into two congruent solids, it goes through the center of the octahedron. As it is parallel to two opposite faces (colored above in green), it passes through the midpoints of the edges connecting the corresponding vertices of the faces. The distance between the center and any of the midpoints, as well as the distance between any consecutive midpoints, is found to be $\frac{1}{2}$ (by midline and so forth). Thus, the intersection of the plane and the octahedron is a regular hexagon, and the answer is $6 \times \left(\frac {\left(\frac {1}{2}\right)^2 \sqrt {3}}{4}\right) = \frac {3\sqrt {3}}{8}$, and $a + b + c = 14\ \mathbf{(E)}$.

See also

2009 AMC 12A (ProblemsAnswer KeyResources)
Preceded by
Problem 21
Followed by
Problem 23
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
All AMC 12 Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png