Maths Olympiad Prep

Library / /57 of 520

Geometry Difficulty 6.4 National olympiad Find the answer

A cuboctahedron is a solid with 6 square faces and 8 equilateral triangle faces, with each edge adjacent to both a square and a triangle (see picture). Suppose the ratio of the volume of an octahedron to a cuboctahedron with the same side length is rr. Find 100r2100r^2.

Figure (Asymptote source)
// dragon96, replacing
// [img]http://i.imgur.com/08FbQs.png[/img]
size(140); defaultpen(linewidth(.7));
real alpha=10, x=-0.12, y=0.025, r=1/sqrt(3);
path hex=rotate(alpha)*polygon(6);
pair A = shift(x,y)*(r*dir(330+alpha)), B = shift(x,y)*(r*dir(90+alpha)), C = shift(x,y)*(r*dir(210+alpha));
pair X = (-A.x, -A.y), Y = (-B.x, -B.y), Z = (-C.x, -C.y);
int i;
pair[] H;
for(i=0; i<6; i=i+1) {
H[i] = dir(alpha+60*i);}
fill(X--Y--Z--cycle, rgb(204,255,255));
fill(H[5]--Y--Z--H[0]--cycle^^H[2]--H[3]--X--cycle, rgb(203,153,255));
fill(H[1]--Z--X--H[2]--cycle^^H[4]--H[5]--Y--cycle, rgb(255,203,153));
fill(H[3]--X--Y--H[4]--cycle^^H[0]--H[1]--Z--cycle, rgb(153,203,255));
draw(hex^^X--Y--Z--cycle);
draw(H[1]--B--H[2]^^H[3]--C--H[4]^^H[5]--A--H[0]^^A--B--C--cycle, linewidth(0.6)+linetype("5 5"));
draw(H[0]--Z--H[1]^^H[2]--X--H[3]^^H[4]--Y--H[5]);

A number or a short expression. Spacing and $ signs are ignored.

Solution

1. Understanding the structure of the cuboctahedron:
- A cuboctahedron has 6 square faces and 8 equilateral triangle faces.
- Each edge is shared by one square and one triangle.
- Let the side length of the cuboctahedron be s=1 s = 1 .

2. Volume of the cuboctahedron:
- The cuboctahedron can be decomposed into a central square prism and 4 triangular pyramids.
- The height of the square prism is the distance between the centers of two opposite square faces, which is 2 \sqrt{2} .
- The height of each triangular face (equilateral triangle) is 32 \frac{\sqrt{3}}{2} .
- The height of each triangular pyramid is calculated as:
Height of pyramid=(32)2(22)2=3412=14=12 \text{Height of pyramid} = \sqrt{\left(\frac{\sqrt{3}}{2}\right)^2 - \left(\frac{\sqrt{2}}{2}\right)^2} = \sqrt{\frac{3}{4} - \frac{1}{2}} = \sqrt{\frac{1}{4}} = \frac{1}{2}
- Volume of the square prism:
Vprism=12×2=2 V_{\text{prism}} = 1^2 \times \sqrt{2} = \sqrt{2}
- Volume of one triangular pyramid:
Vpyramid=13×1×2×12=26 V_{\text{pyramid}} = \frac{1}{3} \times 1 \times \sqrt{2} \times \frac{1}{2} = \frac{\sqrt{2}}{6}
- Total volume of the 4 triangular pyramids:
V4 pyramids=4×26=223 V_{\text{4 pyramids}} = 4 \times \frac{\sqrt{2}}{6} = \frac{2\sqrt{2}}{3}
- Total volume of the cuboctahedron:
Vcuboctahedron=2+223=323+223=523 V_{\text{cuboctahedron}} = \sqrt{2} + \frac{2\sqrt{2}}{3} = \frac{3\sqrt{2}}{3} + \frac{2\sqrt{2}}{3} = \frac{5\sqrt{2}}{3}

3. Volume of the octahedron:
- An octahedron can be decomposed into 2 square pyramids.
- Each pyramid has a square base with side length 1 and a height calculated as:
Height of pyramid=1(22)2=112=12 \text{Height of pyramid} = \sqrt{1 - \left(\frac{\sqrt{2}}{2}\right)^2} = \sqrt{1 - \frac{1}{2}} = \frac{1}{\sqrt{2}}
- Volume of one square pyramid:
Vpyramid=13×12×12=132 V_{\text{pyramid}} = \frac{1}{3} \times 1^2 \times \frac{1}{\sqrt{2}} = \frac{1}{3\sqrt{2}}
- Total volume of the octahedron:
Voctahedron=2×132=232=23 V_{\text{octahedron}} = 2 \times \frac{1}{3\sqrt{2}} = \frac{2}{3\sqrt{2}} = \frac{\sqrt{2}}{3}

4. **Finding the ratio r r and calculating 100r2 100r^2 :**
- The ratio of the volume of the octahedron to the cuboctahedron:
r=VoctahedronVcuboctahedron=23523=15 r = \frac{V_{\text{octahedron}}}{V_{\text{cuboctahedron}}} = \frac{\frac{\sqrt{2}}{3}}{\frac{5\sqrt{2}}{3}} = \frac{1}{5}
- Calculating 100r2 100r^2 :
100r2=100(15)2=100×125=4 100r^2 = 100 \left(\frac{1}{5}\right)^2 = 100 \times \frac{1}{25} = 4

The final answer is 4 \boxed{ 4 }

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.