Found problems: 473
2002 Putnam, 2
Given any five points on a sphere, show that some four of them must lie on a closed hemisphere.
2014 NIMO Problems, 3
A square and equilateral triangle have the same perimeter. If the triangle has area $16\sqrt3$, what is the area of the square?
[i]Proposed by Evan Chen[/i]
MathLinks Contest 6th, 1.2
Let $ABCD$ be a rectangle of center $O$ in the plane $\alpha$, and let $V \notin\alpha$ be a point in space such that $V O \perp \alpha$. Let $A' \in (V A)$, $B'\in (V B)$, $C'\in (V C)$, $D'\in (V D)$ be four points, and let $M$ and $N$ be the midpoints of the segments $A'C'$ and $B'D'$. .Prove that $MN \parallel \alpha$ if and only if $V , A', B', C', D'$ all lie on a sphere.
1986 Austrian-Polish Competition, 6
Let $M$ be the set of all tetrahedra whose inscribed and circumscribed spheres are concentric. If the radii of these spheres are denoted by $r$ and $R$ respectively, find the possible values of $R/r$ over all tetrahedra from $M$ .
1988 IMO Longlists, 37
[b]i.)[/b] Four balls of radius 1 are mutually tangent, three resting on the floor and the fourth resting on the others. A tedrahedron, each of whose edges has length $ s,$ is circumscribed around the balls. Find the value of $ s.$
[b]ii.)[/b] Suppose that $ ABCD$ and $ EFGH$ are opposite faces of a retangular solid, with $ \angle DHC \equal{} 45^{\circ}$ and $ \angle FHB \equal{} 60^{\circ}.$ Find the cosine of $ \angle BHD.$
2021 Oral Moscow Geometry Olympiad, 4
Points $STABCD$ in space form a convex octahedron with faces $SAB,SBC,SCD,SDA,TAB,TBC,TCD,TDA$ such that there exists a sphere that is tangent to all of its edges. Prove that $A,B,C,D$ lie in one plane.
2011 Purple Comet Problems, 30
Four congruent spheres are stacked so that each is tangent to the other three. A larger sphere, $R$, contains the four congruent spheres so that all four are internally tangent to $R$. A smaller sphere, $S$, sits in the space between the four congruent spheres so that all four are externally tangent to $S$. The ratio of the surface area of $R$ to the surface area of $S$ can be written $m+\sqrt{n}$ where $m$ and $n$ are positive integers. Find $m + n$.
1980 IMO Longlists, 15
Prove that the sum of the six angles subtended at an interior point of a tetrahedron by its six edges is greater than 540°.
VII Soros Olympiad 2000 - 01, 11.8
Three spheres are tangent to one plane, to a straight line perpendicular to this plane, and in pairs to each other. The radius of the largest sphere is $1$. Within what limits can the radius of the smallest sphere vary?
1986 Flanders Math Olympiad, 4
Given a cube in which you can put two massive spheres of radius 1.
What's the smallest possible value of the side - length of the cube?
Prove that your answer is the best possible.
2008 Princeton University Math Competition, A10
A cuboctahedron is the convex hull of (smallest convex set containing) the $12$ points $(\pm 1, \pm 1, 0), (\pm 1, 0, \pm 1), (0, \pm 1, \pm 1)$. Find the cosine of the solid angle of one of the triangular faces, as viewed from the origin. (Take a figure and consider the set of points on the unit sphere centered on the origin such that the ray from the origin through the point intersects the figure. The area of that set is the solid angle of the figure as viewed from the origin.)
2002 Iran Team Selection Test, 3
A "[i]2-line[/i]" is the area between two parallel lines. Length of "2-line" is distance of two parallel lines. We have covered unit circle with some "2-lines". Prove sum of lengths of "2-lines" is at least 2.
1963 German National Olympiad, 6
Consider a pyramid $ABCD$ whose base $ABC$ is a triangle. Through a point $M$ of the edge $DA$, the lines $MN$ and $MP$ on the plane of the surfaces $DAB$ and $DAC$ are drawn respectively, such that $N$ is on $DB$ and $P$ is on $DC$ and $ABNM$ , $ACPM$ are cyclic quadrilaterals.
a) Prove that $BCPN$ is also a cyclic quadrilateral.
b) Prove that the points $A,B,C,M,N, P$ lie on a sphere.
1967 IMO Longlists, 36
Prove this proposition: Center the sphere circumscribed around a tetrahedron which coincides with the center of a sphere inscribed in that tetrahedron if and only if the skew edges of the tetrahedron are equal.
2024 UMD Math Competition Part II, #3
A right triangle $A_1 A_2 A_3$ with side lengths $6,\,8,$ and $10$ on a plane $\mathcal P$ is given. Three spheres $S_1,S_2$ and $S_3$ with centers $O_1, O_2,$ and $O_3,$ respectively, are located on the same side of the plane $\mathcal P$ in such a way that $S_i$ is tangent to $\mathcal P$ at $A_i$ for $i = 1, 2, 3.$ Assume $S_1, S_2, S_3$ are pairwise externally tangent. Find the area of triangle $O_1O_2O_3.$
2013 Chile National Olympiad, 5
A conical surface $C$ is cut by a plane $T$ as shown in the figure on the back of this sheet. Show that $C \cap T$ is an ellipse. You can use as an aid the fact that if you consider the two spheres tangent to $C$ and $T$ as shown in the figure, they intersect $T$ in the bulbs.
[asy]
// calculate intersection of line and plane
// p = point on line
// d = direction of line
// q = point in plane
// n = normal to plane
triple lineintersectplan(triple p, triple d, triple q, triple n)
{
return (p + dot(n,q - p)/dot(n,d)*d);
}
// projection of point A onto line BC
triple projectionofpointontoline(triple A, triple B, triple C)
{
return lineintersectplan(B, B - C, A, B - C);
}
// calculate area of space triangle with vertices A, B, and C
real trianglearea(triple A, triple B, triple C)
{
return abs(cross(A - C, B - C)/2);
}
// calculate incentre of space triangle ABC
triple triangleincentre(triple A, triple B, triple C)
{
return (abs(B - C) * A + abs(C - A) * B + abs(A - B) * C)/(abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate inradius of space triangle ABC
real triangleinradius(triple A, triple B, triple C)
{
return 2*trianglearea(A,B,C)/(abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate excentre of space triangle ABC
triple triangleexcentre(triple A, triple B, triple C)
{
return (-abs(B - C) * A + abs(C - A) * B + abs(A - B) * C)/(-abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate exradius of space triangle ABC
real triangleexradius(triple A, triple B, triple C)
{
return 2*trianglearea(A,B,C)/(-abs(B - C) + abs(C - A) + abs(A - B));
}
unitsize(2 cm);
pair project (triple A, real t) {
return((A.x, A.y*Sin(t) + A.z*Cos(t)));
}
real alpha, beta, theta, t;
real coneradius = 1, coneheight = 3;
real a, b, c;
real[] m, r;
triple A, B, V;
triple ellipsecenter, ellipsex, ellipsey;
triple[] F, O, P, R, W;
path[] ellipse, spherering;
theta = 15;
V = (0,0,-coneheight);
m[1] = sqrt(Cos(theta)^2*coneheight^2 - Sin(theta)^2*coneradius^2)/coneradius;
m[2] = -m[1];
alpha = -aTan(Sin(theta)/m[1]);
beta = -aTan(Sin(theta)/m[2]) + 180;
A = (coneradius*Cos(alpha), coneradius*Sin(alpha), 0);
B = (coneradius*Cos(beta), coneradius*Sin(beta), 0);
W[1] = interp(V,(coneradius,0,0),0.6);
W[2] = interp(V,(-coneradius,0,0),0.4);
O[1] = triangleexcentre(V,W[1],W[2]);
O[2] = triangleincentre(V,W[1],W[2]);
r[1] = triangleexradius(V,W[1],W[2]);
r[2] = triangleinradius(V,W[1],W[2]);
F[1] = projectionofpointontoline(O[1],W[1],W[2]);
F[2] = projectionofpointontoline(O[2],W[1],W[2]);
P[1] = O[1] - (0,0,r[1]*coneradius/sqrt(coneradius^2 + coneheight^2));
P[2] = O[2] - (0,0,r[2]*coneradius/sqrt(coneradius^2 + coneheight^2));
spherering[11] = shift(project(P[1],theta))*yscale(Sin(theta))*arc((0,0),r[1]*coneheight/sqrt(coneradius^2 + coneheight^2),alpha,beta);
spherering[12] = shift(project(P[1],theta))*yscale(Sin(theta))*arc((0,0),r[1]*coneheight/sqrt(coneradius^2 + coneheight^2),beta,alpha + 360);
spherering[21] = shift(project(P[2],theta))*yscale(Sin(theta))*arc((0,0),r[2]*coneheight/sqrt(coneradius^2 + coneheight^2),alpha,beta);
spherering[22] = shift(project(P[2],theta))*yscale(Sin(theta))*arc((0,0),r[2]*coneheight/sqrt(coneradius^2 + coneheight^2),beta,alpha + 360);
ellipsecenter = (W[1] + W[2])/2;
a = abs(W[1] - ellipsecenter);
c = abs(F[1] - ellipsecenter);
b = sqrt(a^2 - c^2);
ellipsex = (W[1] - W[2])/abs(W[1] - W[2]);
ellipsey = (0,1,0);
ellipse[1] = project(ellipsecenter + a*ellipsex, theta);
for (t = 0; t <= 180; t = t + 5) {
ellipse[1] = ellipse[1]--project(ellipsecenter + a*Cos(t)*ellipsex + b*Sin(t)*ellipsey, theta);
}
ellipse[2] = project(ellipsecenter - a*ellipsex, theta);
for (t = 180; t <= 360; t = t + 5) {
ellipse[2] = ellipse[2]--project(ellipsecenter + a*Cos(t)*ellipsex + b*Sin(t)*ellipsey, theta);
}
R[1] = ellipsecenter + 1*ellipsex + ellipsey;
R[2] = ellipsecenter - 1.2*ellipsex + ellipsey;
R[3] = ellipsecenter - 1*ellipsex - ellipsey;
R[4] = ellipsecenter + 1.2*ellipsex - ellipsey;
fill(ellipse[1]--ellipse[2]--cycle, gray(0.9));
draw(yscale(Sin(theta))*Circle((0,0),coneradius));
draw(project(V,theta)--project(A,theta));
draw(project(V,theta)--project(B,theta));
draw(Circle(project(O[1],theta),r[1]));
draw(Circle(project(O[2],theta),r[2]));
draw(spherering[11], dashed);
draw(spherering[12]);
draw(spherering[21], dashed);
draw(spherering[22]);
draw(ellipse[1], dashed);
draw(ellipse[2]);
draw(project(R[1],theta)--interp(project(R[1],theta),project(R[2],theta),0.13));
draw(interp(project(R[1],theta),project(R[2],theta),0.13)--interp(project(R[1],theta),project(R[2],theta),0.76), dashed);
draw(interp(project(R[1],theta),project(R[2],theta),0.76)--project(R[2],theta));
draw(project(R[2],theta)--project(R[3],theta)--project(R[4],theta)--project(R[1],theta));
label("$C$", (-1,0.3));
label("$T$", (1.2,-0.8));
dot(project(F[1],theta));
dot(project(F[2],theta));
//dot("$F_1$", project(F[1],theta));
//dot("$F_2$", project(F[2],theta));
//dot("$O_1$", project(O[1],theta));
//dot("$O_2$", project(O[2],theta));
//dot("$P_1$", project(P[1],theta));
//dot("$V$", project(V,theta));
//dot("$W_1$", project(W[1],theta));
//dot("$W_2$", project(W[2],theta));
[/asy]
2005 Brazil National Olympiad, 3
A square is contained in a cube when all of its points are in the faces or in the interior of the cube. Determine the biggest $\ell > 0$ such that there exists a square of side $\ell$ contained in a cube with edge $1$.
2002 China Team Selection Test, 2
There are $ n$ points ($ n \geq 4$) on a sphere with radius $ R$, and not all of them lie on the same semi-sphere. Prove that among all the angles formed by any two of the $ n$ points and the sphere centre $ O$ ($ O$ is the vertex of the angle), there is at least one that is not less than $ \displaystyle 2 \arcsin{\frac{\sqrt{6}}{3}}$.
1994 Tuymaada Olympiad, 8
Prove that in space there is a sphere containing exactly $1994$ points with integer coordinates.
1959 Putnam, B5
Find the equation of the smallest sphere which is tangent to both of the lines
$$\begin{pmatrix}
x\\y\\z \end{pmatrix} =\begin{pmatrix}
t+1\\
2t+4\\
-3t +5
\end{pmatrix},\;\;\;\begin{pmatrix}
x\\y\\z \end{pmatrix} =\begin{pmatrix}
4t-12\\
-t+8\\
t+17
\end{pmatrix}.$$
2006 All-Russian Olympiad, 6
Consider a tetrahedron $SABC$. The incircle of the triangle $ABC$ has the center $I$ and touches its sides $BC$, $CA$, $AB$ at the points $E$, $F$, $D$, respectively. Let $A^{\prime}$, $B^{\prime}$, $C^{\prime}$ be the points on the segments $SA$, $SB$, $SC$ such that $AA^{\prime}=AD$, $BB^{\prime}=BE$, $CC^{\prime}=CF$, and let $S^{\prime}$ be the point diametrically opposite to the point $S$ on the circumsphere of the tetrahedron $SABC$. Assume that the line $SI$ is an altitude of the tetrahedron $SABC$. Show that $S^{\prime}A^{\prime}=S^{\prime}B^{\prime}=S^{\prime}C^{\prime}$.
2004 All-Russian Olympiad Regional Round, 11.8
Given a triangular pyramid $ABCD$. Sphere $S_1$ passing through points $A$, $B$, $C$, intersects edges $AD$, $BD$, $CD$ at points $K$, $L$, $M$, respectively; sphere $S_2$ passing through points $A$, $B$, $D$ intersects the edges $AC$, $BC$, $DC$ at points $P$, $Q$, $M$ respectively. It turned out that $KL \parallel PQ$. Prove that the bisectors of plane angles $KMQ$ and $LMP$ are the same.
2014 Harvard-MIT Mathematics Tournament, 5
Let $\mathcal{C}$ be a circle in the $xy$ plane with radius $1$ and center $(0, 0, 0)$, and let $P$ be a point in space with coordinates $(3, 4, 8)$. Find the largest possible radius of a sphere that is contained entirely in the slanted cone with base $\mathcal{C}$ and vertex $P$.
1991 Vietnam National Olympiad, 3
Three mutually perpendicular rays $O_x,O_y,O_z$ and three points $A,B,C$ on $O_x,O_y,O_z$, respectively. A variable sphere є through $A, B,C$ meets $O_x,O_y,O_z$ again at $A', B',C'$, respectively. Let $M$ and $M'$ be the centroids of triangles $ABC$ and $A'B'C'$. Find the locus of the midpoint of $MM'$.
1999 Kazakhstan National Olympiad, 7
On a sphere with radius $1$, a point $ P $ is given. Three mutually perpendicular the rays emanating from the point $ P $ intersect the sphere at the points $ A $, $ B $ and $ C $. Prove that all such possible $ ABC $ planes pass through fixed point, and find the maximum possible area of the triangle $ ABC $