Found problems: 473
2000 Belarus Team Selection Test, 1.4
A closed pentagonal line is inscribed in a sphere of the diameter $1$, and has all edges of length $\ell$.
Prove that $\ell \le \sin \frac{2\pi}{5}$
.
1994 Abels Math Contest (Norwegian MO), 1a
In a half-ball of radius $3$ is inscribed a cylinder with base lying on the base plane of the half-ball, and another such cylinder with equal volume. If the base-radius of the first cylinder is $\sqrt3$, what is the base-radius of the other one?
1957 Moscow Mathematical Olympiad, 365
(a) Given a point $O$ inside an equilateral triangle $\vartriangle ABC$. Line $OG$ connects $O$ with the center of mass $G$ of the triangle and intersects the sides of the triangle, or their extensions, at points $A', B', C'$ . Prove that $$\frac{A'O}{A'G} + \frac{B'O}{B'G} + \frac{C'O}{C'G} = 3.$$
(b) Point $G$ is the center of the sphere inscribed in a regular tetrahedron $ABCD$. Straight line $OG$ connecting $G$ with a point $O$ inside the tetrahedron intersects the faces at points $A', B', C', D'$. Prove that $$\frac{A'O}{A'G} + \frac{B'O}{B'G} + \frac{C'O}{C'G}+ \frac{D'O}{D'G} = 4.$$
1966 German National Olympiad, 6
Prove the following theorem:
If the intersection of any plane that has more than one point in common with the surface $F$ is a circle, then $F$ is a sphere (surface).
1995 China National Olympiad, 1
Given four spheres with their radii equal to $2,2,3,3$ respectively, each sphere externally touches the other spheres. Suppose that there is another sphere that is externally tangent to all those four spheres, determine the radius of this sphere.
1989 Austrian-Polish Competition, 5
Let $A$ be a vertex of a cube $\omega$ circumscribed about a sphere $k$ of radius $1$. We consider lines $g$ through $A$ containing at least one point of $k$. Let $P$ be the intersection point of $g$ and $k$ closer to $A$, and $Q$ be the second intersection point of $g$ and $\omega$. Determine the maximum value of $AP\cdot AQ$ and characterize the lines $g$ yielding the maximum.
2004 AMC 10, 25
Three mutually tangent spheres of radius 1 rest on a horizontal plane. A sphere of radius 2 rests on them. What is the distance from the plane to the top of the larger sphere?
$ \textbf{(A)}\; 3+\frac{\sqrt{30}}2\qquad
\textbf{(B)}\; 3+\frac{\sqrt{69}}3\qquad
\textbf{(C)}\; 3+\frac{\sqrt{123}}4\qquad
\textbf{(D)}\; \frac{52}9\qquad
\textbf{(E)}\; 3+2\sqrt{2} $
2016 Miklós Schweitzer, 10
Let $X$ and $Y$ be independent, identically distributed random points on the unit sphere in $\mathbb{R}^3$. For which distribution of $X$ will the expectation of the (Euclidean) distance of $X$ and $Y$ be maximal?
2001 AIME Problems, 12
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.$
KoMaL A Problems 2017/2018, A. 724
A sphere $S$ lies within tetrahedron $ABCD$, touching faces $ABD, ACD$, and $BCD$, but having no point in common with plane $ABC$. Let $E$ be the point in the interior of the tetrahedron for which $S$ touches planes $ABE$, $ACE$, and $BCE$ as well. Suppose the line $DE$ meets face $ABC$ at $F$, and let $L$ be the point of $S$ nearest to plane $ABC$. Show that segment $FL$ passes through the centre of the inscribed sphere of tetrahedron $ABCE$.
KöMaL A.723. (April 2018), G. Kós
2007 Princeton University Math Competition, 6
A sphere of radius $\sqrt{85}$ is centered at the origin in three dimensions. A tetrahedron with vertices at integer lattice points is inscribed inside the sphere. What is the maximum possible volume of this tetrahedron?
2014 All-Russian Olympiad, 2
The sphere $ \omega $ passes through the vertex $S$ of the pyramid $SABC$ and intersects with the edges $SA,SB,SC$ at $A_1,B_1,C_1$ other than $S$. The sphere $ \Omega $ is the circumsphere of the pyramid $SABC$ and intersects with $ \omega $ circumferential, lies on a plane which parallel to the plane $(ABC)$.
Points $A_2,B_2,C_2$ are symmetry points of the points $A_1,B_1,C_1$ respect to midpoints of the edges $SA,SB,SC$ respectively. Prove that the points $A$, $B$, $C$, $A_2$, $B_2$, and $C_2$ lie on a sphere.
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]
2019 LIMIT Category C, Problem 10
A right circular cylinder is inscribed in a sphere of radius $\sqrt3$. What is the height of the cylinder when its volume is maximal?
2013 Princeton University Math Competition, 5
Suppose you have a sphere tangent to the $xy$-plane with its center having positive $z$-coordinate. If it is projected from a point $P=(0,b,a)$ to the $xy$-plane, it gives the conic section $y=x^2$. If we write $a=\tfrac pq$ where $p,q$ are integers, find $p+q$.
2008 Putnam, B3
What is the largest possible radius of a circle contained in a 4-dimensional hypercube of side length 1?
1960 Czech and Slovak Olympiad III A, 2
Consider a cube $ABCDA'B'C'D'$ (where $ABCD$ is a square and $AA' \parallel BB' \parallel CC' \parallel DD'$) and a point $P$ on the line $AA'$. Construct center $S$ of a sphere which has plane $ABB'$ as a plane of symmetry, $P$ lies on the sphere and $p = AB$, $q = A'D'$ are its tangent lines. Discuss conditions of solvability with respect to different position of the point $P$ (on line $AA'$).
1987 Austrian-Polish Competition, 1
Three pairwise orthogonal chords of a sphere $S$ are drawn through a given point $P$ inside $S$. Prove that the sum of the squares of their lengths does not depend on their directions.
2012 Gulf Math Olympiad, 4
Fawzi cuts a spherical cheese completely into (at least three) slices of equal thickness. He starts at one end, making successive parallel cuts, working through the cheese until the slicing is complete. The discs exposed by the first two cuts have integral areas.
[list](i) Prove that all the discs that he cuts have integral areas.
(ii) Prove that the original sphere had integral surface area if, and only if, the area of the second disc that he exposes is even.[/list]
1950 Moscow Mathematical Olympiad, 186
A spatial quadrilateral is circumscribed around a sphere. Prove that all the tangent points lie in one plane.
2004 Iran MO (3rd Round), 26
Finitely many points are given on the surface of a sphere, such that every four of them lie on the surface of open hemisphere. Prove that all points lie on the surface of an open hemisphere.
1969 Czech and Slovak Olympiad III A, 6
A sphere with unit radius is given. Furthermore, circles $k_0,k_1,\ldots,k_n\ (n\ge3)$ of the same radius $r$ are given on the sphere. The circle $k_0$ is tangent to all other circles $k_i$ and every two circles $k_i,k_{i+1}$ are tangent for $i=1,\ldots,n$ (assuming $k_{n+1}=k_1$).
a) Find relation between numbers $n,r.$
b) Determine for which $n$ the described situation can occur and compute the corresponding radius $r.$
(We say non-planar circles are tangent if they have only a single common point and their tangent lines in this point coincide.)
2013 Tuymaada Olympiad, 7
Points $A_1$, $A_2$, $A_3$, $A_4$ are the vertices of a regular tetrahedron of edge length $1$. The points $B_1$ and $B_2$ lie inside the figure bounded by the plane $A_1A_2A_3$ and the spheres of radius $1$ and centres $A_1$, $A_2$, $A_3$.
Prove that $B_1B_2 < \max\{B_1A_1, B_1A_2, B_1A_3, B_1A_4\}$.
[i] A. Kupavsky [/i]
1994 Spain Mathematical Olympiad, 2
Let $Oxyz$ be a trihedron whose edges $x,y, z$ are mutually perpendicular. Let $C$ be the point on the ray $z$ with $OC = c$. Points $P$ and $Q$ vary on the rays $x$ and $y$ respectively in such a way that $OP+OQ = k$ is constant. For every $P$ and $Q$, the circumcenter of the sphere through $O,C,P,Q$ is denoted by $W$. Find the locus of the projection of $W$ on the plane O$xy$. Also find the locus of points $W$.
1966 IMO Shortlist, 56
In a tetrahedron, all three pairs of opposite (skew) edges are mutually perpendicular. Prove that the midpoints of the six edges of the tetrahedron lie on one sphere.