Found problems: 2265
1970 IMO Longlists, 41
Let a cube of side $1$ be given. Prove that there exists a point $A$ on the surface $S$ of the cube such that every point of $S$ can be joined to $A$ by a path on $S$ of length not exceeding $2$. Also prove that there is a point of $S$ that cannot be joined with $A$ by a path on $S$ of length less than $2$.
Gheorghe Țițeica 2025, P3
Two regular pentagons $ABCDE$ and $AEKPL$ are given in space, such that $\angle DAK = 60^{\circ}$. Let $M$, $N$ and $S$ be the midpoints of $AE$, $CD$ and $EK$. Prove that:
[list=a]
[*] $\triangle NMS$ is a right triangle;
[*] planes $(ACK)$ and $(BAL)$ are perpendicular.
[/list]
[i]Ukraine Olympiad[/i]
1967 IMO Shortlist, 5
Prove that for an arbitrary pair of vectors $f$ and $g$ in the space the inequality
\[af^2 + bfg +cg^2 \geq 0\]
holds if and only if the following conditions are fulfilled:
\[a \geq 0, \quad c \geq 0, \quad 4ac \geq b^2.\]
2016 HMNT, 9
A cylinder with radius $15$ and height $16$ is inscribed in a sphere. Three congruent smaller spheres of radius $x$ are externally tangent to the base of the cylinder, externally tangent to each other, and internally tangent to the large sphere. What is the value of $x$?
2003 All-Russian Olympiad Regional Round, 11.7
Given a tetrahedron $ABCD.$ The sphere $\omega$ inscribed in it touches the face $ABC$ at point $T$. Sphere $\omega' $ touches face $ABC$ at point $T'$ and extensions of faces $ABD$, $BCD$, $CAD$. Prove that the lines $AT$ and $AT'$ are symmetric wrt bisector of angle $\angle BAC$
2010 All-Russian Olympiad, 2
Could the four centers of the circles inscribed into the faces of a tetrahedron be coplanar?
(vertexes of tetrahedron not coplanar)
1963 Putnam, B6
Let $E$ be a Euclidean space of at most three dimensions. If $A$ is a nonempty subset of $E$, define $S(A)$ to be the set of points that lie on closed segments joining pairs of points of $A$ (a one-point set should be considered to be a special case of a closed segment). For a given nonempty set $A_0$, define $A_n =S(A_{n-1})$ for $n=1,2,\ldots$ Prove that $A_2 =A_3 =\ldots.$
2014 Bulgaria National Olympiad, 3
A real number $f(X)\neq 0$ is assigned to each point $X$ in the space.
It is known that for any tetrahedron $ABCD$ with $O$ the center of the inscribed sphere, we have :
\[ f(O)=f(A)f(B)f(C)f(D). \]
Prove that $f(X)=1$ for all points $X$.
[i]Proposed by Aleksandar Ivanov[/i]
2024 May Olympiad, 4
A castaway is building a rectangular raft $ABCD$. He fixes a mast perpendicular to the raft, with ropes passing from the top of the mast (point $S$ in the figure) to the four corners of the raft. The rope $SA$ measures $8$ meters, the rope $SB$ measures $2$ meters and the rope $SC$ measures $14$ meters. Compute the length of the rope $SD$.
[asy]
size(250);
// Coordinates for the parallelogram ABCD
pair A = (0, 0);
pair B = (8, 0);
pair C = (10, 5);
pair D = (2, 5);
// Position of point S (outside the parallelogram)
pair S = (5, 8);
pair T = (5, 3);
// Draw the parallelogram ABCD
filldraw(A--B--C--D--cycle, lightgray, black);
// Draw the ropes from point S to each corner of the parallelogram
draw(S--A, blue);
draw(S--B, blue);
draw(S--C, blue);
draw(S--D, blue);
draw(S--T, black);
// Mark the points
dot(A);
dot(B);
dot(C);
dot(D);
dot(S);
dot(T);
// Label the points
label("A", A, SW);
label("B", B, SE);
label("C", C, NE);
label("D", D, NW);
label("S", S, N);
[/asy]
II Soros Olympiad 1995 - 96 (Russia), 11.2
A cylindrical glass filled to the brim with water stands on a horizontal plane. The height of the glass is $2$ times the diameter of the base. At what angle must the glass be tilted from the vertical so that exactly $1/3$ of the water it contains pours out?
2007 Estonia National Olympiad, 1
Consider a cylinder and a cone with a common base such that the volume of the
part of the cylinder enclosed in the cone equals the volume of the part of the cylinder outside the cone. Find the ratio of the height of the cone to the height of the cylinder.
1985 AIME Problems, 15
Three 12 cm $\times$ 12 cm squares are each cut into two pieces $A$ and $B$, as shown in the first figure below, by joining the midpoints of two adjacent sides. These six pieces are then attached to a regular hexagon, as shown in the second figure, so as to fold into a polyhedron. What is the volume (in $\text{cm}^3$) of this polyhedron?
[asy]
defaultpen(fontsize(10));
size(250);
draw(shift(0, sqrt(3)+1)*scale(2)*rotate(45)*polygon(4));
draw(shift(-sqrt(3)*(sqrt(3)+1)/2, -(sqrt(3)+1)/2)*scale(2)*rotate(165)*polygon(4));
draw(shift(sqrt(3)*(sqrt(3)+1)/2, -(sqrt(3)+1)/2)*scale(2)*rotate(285)*polygon(4));
filldraw(scale(2)*polygon(6), white, black);
pair X=(2,0)+sqrt(2)*dir(75), Y=(-2,0)+sqrt(2)*dir(105), Z=(2*dir(300))+sqrt(2)*dir(225);
pair[] roots={2*dir(0), 2*dir(60), 2*dir(120), 2*dir(180), 2*dir(240), 2*dir(300)};
draw(roots[0]--X--roots[1]);
label("$B$", centroid(roots[0],X,roots[1]));
draw(roots[2]--Y--roots[3]);
label("$B$", centroid(roots[2],Y,roots[3]));
draw(roots[4]--Z--roots[5]);
label("$B$", centroid(roots[4],Z,roots[5]));
label("$A$", (1+sqrt(3))*dir(90));
label("$A$", (1+sqrt(3))*dir(210));
label("$A$", (1+sqrt(3))*dir(330));
draw(shift(-10,0)*scale(2)*polygon(4));
draw((sqrt(2)-10,0)--(-10,sqrt(2)));
label("$A$", (-10,0));
label("$B$", centroid((sqrt(2)-10,0),(-10,sqrt(2)),(sqrt(2)-10, sqrt(2))));[/asy]
2022 Assara - South Russian Girl's MO, 7
In a $7\times 7\times 7$ cube, the unit cubes are colored white, black and gray colors so that for any two colors the number of cubes of these two colors are different. In this case, $N$ parallel rows of $7$ cubes were found, each of which there are more white cubes than gray and than black. Likewise, there were $N$ parallel rows of $7$ cubes, each of which contained gray there are more cubes than white and than black, and there are also N parallel rows of $7$ cubes, each of which contains more black cubes than white ones and than gray ones. What is the largest $N$ for which this is possible?
2011 Pre-Preparation Course Examination, 1
[b]a)[/b] prove that for every compressed set $K$ in the space $\mathbb R^3$, the function $f:\mathbb R^3 \longrightarrow \mathbb R$ that $f(p)=inf\{|p-k|,k\in K\}$ is continuous.
[b]b)[/b] prove that we cannot cover the sphere $S^2\subseteq \mathbb R^3$ with it's three closed sets, such that none of them contain two antipodal points.
2021 Yasinsky Geometry Olympiad, 6
Three lines were drawn through the point $X$ in space. These lines crossed some sphere at six points. It turned out that the distances from point $X$ to some five of them are equal to $2$ cm, $3$ cm, $4$ cm, $5$ cm, $6$ cm. What can be the distance from point $X$ to the sixth point?
(Alexey Panasenko)
May Olympiad L2 - geometry, 2003.5
An ant, which is on an edge of a cube of side $8$, must travel on the surface and return to the starting point. It's path must contain interior points of the six faces of the cube and should visit only once each face of the cube. Find the length of the path that the ant can carry out and justify why it is the shortest path.
1987 Traian Lălescu, 2.3
Let be a cube $ ABCDA'BC'D' $ such that $ AB=1, $ and let $ M,N,P,Q $ be points on the segments $ A'B',C'D',A'D', $ respectively, $ BC, $ excluding their extremities.
[b]a)[/b] If $ MN $ is perpendicular to $ PQ, $ then $ AM+A'P+CQ+CN=3. $
[b]b)[/b] If $ MN $ and $ PQ $ are concurrent, then $ AM\cdot CQ=A'P\cdot CN. $
2004 AIME Problems, 11
A right circular cone has a base with radius 600 and height $200\sqrt{7}$. A fly starts at a point on the surface of the cone whose distance from the vertex of the cone is 125, and crawls along the surface of the cone to a point on the exact opposite side of the cone whose distance from the vertex is $375\sqrt{2}$. Find the least distance that the fly could have crawled.
2018 PUMaC Team Round, 14
Find the sum of the positive integer solutions to the equation $\left\lfloor\sqrt[3]{x}\right\rfloor+\left\lfloor\sqrt[4]{x}\right\rfloor=4.$
2020 Adygea Teachers' Geometry Olympiad, 3
Is it true that of the four heights of an arbitrary tetrahedron, three can be selected from which a triangle can be made?
1979 IMO Shortlist, 25
We consider a point $P$ in a plane $p$ and a point $Q \not\in p$. Determine all the points $R$ from $p$ for which \[ \frac{QP+PR}{QR} \] is maximum.
1983 Brazil National Olympiad, 6
Show that the maximum number of spheres of radius $1$ that can be placed touching a fixed sphere of radius $1$ so that no pair of spheres has an interior point in common is between $12$ and $14$.
MathLinks Contest 4th, 2.2
Prove that the six sides of any tetrahedron can be the sides of a convex hexagon.
2003 AMC 12-AHSME, 13
The polygon enclosed by the solid lines in the figure consists of $ 4$ congruent squares joined edge-to-edge. One more congruent square is attached to an edge at one of the nine positions indicated. How many of the nine resulting polygons can be folded to form a cube with one face missing?
[asy]unitsize(10mm);
defaultpen(fontsize(10pt));
pen finedashed=linetype("4 4");
filldraw((1,1)--(2,1)--(2,2)--(4,2)--(4,3)--(1,3)--cycle,grey,black+linewidth(.8pt));
draw((0,1)--(0,3)--(1,3)--(1,4)--(4,4)--(4,3)--
(5,3)--(5,2)--(4,2)--(4,1)--(2,1)--(2,0)--(1,0)--(1,1)--cycle,finedashed);
draw((0,2)--(2,2)--(2,4),finedashed);
draw((3,1)--(3,4),finedashed);
label("$1$",(1.5,0.5));
draw(circle((1.5,0.5),.17));
label("$2$",(2.5,1.5));
draw(circle((2.5,1.5),.17));
label("$3$",(3.5,1.5));
draw(circle((3.5,1.5),.17));
label("$4$",(4.5,2.5));
draw(circle((4.5,2.5),.17));
label("$5$",(3.5,3.5));
draw(circle((3.5,3.5),.17));
label("$6$",(2.5,3.5));
draw(circle((2.5,3.5),.17));
label("$7$",(1.5,3.5));
draw(circle((1.5,3.5),.17));
label("$8$",(0.5,2.5));
draw(circle((0.5,2.5),.17));
label("$9$",(0.5,1.5));
draw(circle((0.5,1.5),.17));[/asy]
$ \textbf{(A)}\ 2 \qquad \textbf{(B)}\ 3 \qquad \textbf{(C)}\ 4 \qquad \textbf{(D)}\ 5 \qquad \textbf{(E)}\ 6$
1998 Croatia National Olympiad, Problem 2
A hemisphere is inscribed in a cone so that its base lies on the base of the cone. The ratio of the area of the entire surface of the cone to the area of the hemisphere (without the base) is $\frac{18}5$. Compute the angle at the vertex of the cone.