Found problems: 2265
1975 Bundeswettbewerb Mathematik, 2
Prove that in each polyhedron there exist two faces with the same number of edges.
2000 AIME Problems, 12
The points $A, B$ and $C$ lie on the surface of a sphere with center $O$ and radius 20. It is given that $AB=13, BC=14, CA=15,$ and that the distance from $O$ to triangle $ABC$ is $\frac{m\sqrt{n}}k,$ where $m, n,$ and $k$ are positive integers, $m$ and $k$ are relatively prime, and $n$ is not divisible by the square of any prime. Find $m+n+k.$
1983 Polish MO Finals, 6
Prove that if all dihedral angles of a tetrahedron are acute, then all its faces are acute-angled triangles.
2017 Adygea Teachers' Geometry Olympiad, 4
A regular tetrahedron $SABC$ of volume $V$ is given. The midpoints $D$ and $E$ are taken on $SA$ and $SB$ respectively and the point $F$ is taken on the edge $SC$ such that $SF: FC = 1: 3$. Find the volume of the pentahedron $FDEABC$.
1984 National High School Mathematics League, 8
Lengths of five edges of a tetrahedron are $1$, while the last one is $x$. Its volume is $F(x)$. On its domain of definition, we have
$\text{(A)}$ $F(x)$ is an increasing function, it has no maximum value.
$\text{(B)}$ $F(x)$ is an increasing function, it has maximum value.
$\text{(C)}$ $F(x)$ is not an increasing function, it has no maximum value.
$\text{(D)}$ $F(x)$ is an increasing function, it has maximum value.
1968 IMO Shortlist, 20
Given $n \ (n \geq 3)$ points in space such that every three of them form a triangle with one angle greater than or equal to $120^\circ$, prove that these points can be denoted by $A_1,A_2, \ldots,A_n$ in such a way that for each $i, j, k, 1 \leq i < j < k \leq n$, angle $A_iA_jA_k$ is greater than or equal to $120^\circ . $
1956 Czech and Slovak Olympiad III A, 2
In a given plane $\varrho$ consider a convex quadrilateral $ABCD$ and denote $E=AC\cap BD.$ Moreover, consider a point $V\notin\varrho$. On rays $VA,VB,VC,VD$ find points $A',B',C',D'$ respectively such that $E,A',B',C',D'$ are coplanar and $A'B'C'D'$ is a parallelogram. Discuss conditions of solvability.
Today's calculation of integrals, 768
Let $r$ be a real such that $0<r\leq 1$. Denote by $V(r)$ the volume of the solid formed by all points of $(x,\ y,\ z)$ satisfying
\[x^2+y^2+z^2\leq 1,\ x^2+y^2\leq r^2\]
in $xyz$-space.
(1) Find $V(r)$.
(2) Find $\lim_{r\rightarrow 1-0} \frac{V(1)-V(r)}{(1-r)^{\frac 32}}.$
(3) Find $\lim_{r\rightarrow +0} \frac{V(r)}{r^2}.$
2012 Online Math Open Problems, 16
Let $A_1B_1C_1D_1A_2B_2C_2D_2$ be a unit cube, with $A_1B_1C_1D_1$ and $A_2B_2C_2D_2$ opposite square faces, and let $M$ be the center of face $A_2 B_2 C_2 D_2$. Rectangular pyramid $MA_1B_1C_1D_1$ is cut out of the cube. If the surface area of the remaining solid can be expressed in the form $a + \sqrt{b}$, where $a$ and $b$ are positive integers and $b$ is not divisible by the square of any prime, find $a+b$.
[i]Author: Alex Zhu[/i]
2005 Romania Team Selection Test, 3
Prove that if the distance from a point inside a convex polyhedra with $n$ faces to the vertices of the polyhedra is at most 1, then the sum of the distances from this point to the faces of the polyhedra is smaller than $n-2$.
[i]Calin Popescu[/i]
1968 Polish MO Finals, 3
In a tetrahedron $ ABCD $ the edges $AD$, $ BD $, $ CD $ are equal. $ ABC $ Non-collinear points are chosen in the plane. $ A_1$, $B_1$, $C_1 $ The lines $DA_1$, $DB_1$, $DC_1 $ intersect the surface of the sphere circumscribed about the tetrahedron at points $ A_2$, $B_2$, $C_2 $, different from the point $ D $. Prove that the points $A_1$, $B_1$, $C_1$, $A_2$, $B_2$, $C_2$ lie on the surface of a certain sphere.
2002 Belarusian National Olympiad, 4
This requires some imagination and creative thinking:
Prove or disprove:
There exists a solid such that, for all positive integers $n$ with $n \geq 3$, there exists a "parallel projection" (I hope the terminology is clear) such that the image of the solid under this projection is a convex $n$-gon.
1979 Austrian-Polish Competition, 8
Let $A,B,C,D$ be four points in space, and $M$ and $N$ be the midpoints of $AC$ and $BD$, respectively. Show that $$AB^2+BC^2+CD^2+DA^2 = AC^2+BD^2+4MN^2$$
1956 Putnam, B3
A sphere is inscribed in a tetrahedron and each point of contact of the sphere with the four faces is joined to the vertices of the face containing the point. Show that the four sets of three angles so formed are identical.
2014 AMC 10, 23
A sphere is inscribed in a truncated right circular cone as shown. The volume of the truncated cone is twice that of the sphere. What is the ratio of the radius of the bottom base of the truncated cone to the radius of the top base of the truncated cone?
[asy]
real r=(3+sqrt(5))/2;
real s=sqrt(r);
real Brad=r;
real brad=1;
real Fht = 2*s;
import graph3;
import solids;
currentprojection=orthographic(1,0,.2);
currentlight=(10,10,5);
revolution sph=sphere((0,0,Fht/2),Fht/2);
//draw(surface(sph),green+white+opacity(0.5));
//triple f(pair t) {return (t.x*cos(t.y),t.x*sin(t.y),t.x^(1/n)*sin(t.y/n));}
triple f(pair t) {
triple v0 = Brad*(cos(t.x),sin(t.x),0);
triple v1 = brad*(cos(t.x),sin(t.x),0)+(0,0,Fht);
return (v0 + t.y*(v1-v0));
}
triple g(pair t) {
return (t.y*cos(t.x),t.y*sin(t.x),0);
}
surface sback=surface(f,(3pi/4,0),(7pi/4,1),80,2);
surface sfront=surface(f,(7pi/4,0),(11pi/4,1),80,2);
surface base = surface(g,(0,0),(2pi,Brad),80,2);
draw(sback,rgb(0,1,0));
draw(sfront,rgb(.3,1,.3));
draw(base,rgb(.4,1,.4));
draw(surface(sph),rgb(.3,1,.3));
[/asy]
$ \textbf {(A) } \dfrac {3}{2} \qquad \textbf {(B) } \dfrac {1+\sqrt{5}}{2} \qquad \textbf {(C) } \sqrt{3} \qquad \textbf {(D) } 2 \qquad \textbf {(E) } \dfrac {3+\sqrt{5}}{2} $
2000 Harvard-MIT Mathematics Tournament, 28
What is the smallest possible volume to surface ratio of a solid cone with height = $1$ unit?
2016 Nigerian Senior MO Round 2, Problem 5
A solid pyramid $TABCD$, with a quadrilateral base $ABCD$ is to be coloured on each of the five faces such that no two faces with a common edge will have the same colour. If five different colours are available, what is the number of ways to colour the pyramid?
1954 Kurschak Competition, 2
Every planar section of a three-dimensional body $B$ is a disk. Show that B must be a ball.
2023 AMC 10, 17
A rectangular box $\mathcal{P}$ has distinct edge lengths $a, b,$ and $c$. The sum of the lengths of all $12$ edges of $\mathcal{P}$ is $13$, the sum of the areas of all $6$ faces of $\mathcal{P}$ is $\frac{11}{2}$, and the volume of $\mathcal{P}$ is $\frac{1}{2}$. What is the length of the longest interior diagonal connecting two vertices of $\mathcal{P}$?
$\textbf{(A)}~2\qquad\textbf{(B)}~\frac{3}{8}\qquad\textbf{(C)}~\frac{9}{8}\qquad\textbf{(D)}~\frac{9}{4}\qquad\textbf{(E)}~\frac{3}{2}$
2007 QEDMO 4th, 5
Let $ ABC$ be a triangle, and let $ X$, $ Y$, $ Z$ be three points on the segments $ BC$, $ CA$, $ AB$, respectively. Denote by $ X^{\prime}$, $ Y^{\prime}$, $ Z^{\prime}$ the reflections of these points $ X$, $ Y$, $ Z$ in the midpoints of the segments $ BC$, $ CA$, $ AB$, respectively. Prove that $ \left\vert XYZ\right\vert \equal{}\left\vert X^{\prime}Y^{\prime}Z^{\prime}\right\vert$.
1977 All Soviet Union Mathematical Olympiad, 241
Every vertex of a convex polyhedron belongs to three edges. It is possible to circumscribe a circle around all its faces. Prove that the polyhedron can be inscribed in a sphere.
1994 Tournament Of Towns, (436) 2
Show how to divide space into
(a) congruent tetrahedra,
(b) congruent “equifaced” tetrahedra.
(A tetrahedron is called equifaced if all its faces are congruent triangles.)
(NB Vassiliev)
1972 IMO Longlists, 21
Prove the following assertion: The four altitudes of a tetrahedron $ABCD$ intersect in a point if and only if
\[AB^2 + CD^2 = BC^2 + AD^2 = CA^2 + BD^2.\]
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?
2016 District Olympiad, 1
Let be a pyramid having a square as its base and the projection of the top vertex to the base is the center of the square. Prove that two opposite faces are perpendicular if and only if the angle between two adjacent faces is $ 120^{\circ } . $