Found problems: 2265
Let $ ABCD $ be a tetrahedron with $ \angle ABC = \angle ABD = \angle CBD = 90^\circ $ and $ AB = BC $. Let $ E, F, G $ be points on $ \overline{AD} $, $ BD $, and $ \overline{CD} $, respectively, such that each of the quadrilaterals $ AEFB $, $ BFGC $, and $ CGEA $ have an inscribed circle. Let $ r $ be the smallest real number such that $ \dfrac{[\triangle EFG]}{[\triangle ABC]} \leq r $ for all such configurations $ A, B, C, D, E, F, G $. If $ r $ can be expressed as $ \dfrac{\sqrt{a - b\sqrt{c}}}{d} $ where $ a, b, c, d $ are positive integers with $ \gcd(a, b) $ squarefree and $ c $ squarefree, find $ a + b + c + d $.
Note: Here, $ [P] $ denotes the area of polygon $ P $. (This wasn't in the original test; instead they used the notation $ \text{area}(P) $, which is clear but frankly cumbersome. :P)
$(GBR 3)$ A smooth solid consists of a right circular cylinder of height $h$ and base-radius $r$, surmounted by a hemisphere of radius $r$ and center $O.$ The solid stands on a horizontal table. One end of a string is attached to a point on the base. The string is stretched (initially being kept in the vertical plane) over the highest point of the solid and held down at the point $P$ on the hemisphere such that $OP$ makes an angle $\alpha$ with the horizontal. Show that if $\alpha$ is small enough, the string will slacken if slightly displaced and no longer remain in a vertical plane. If then pulled tight through $P$, show that it will cross the common circular section of the hemisphere and cylinder at a point $Q$ such that $\angle SOQ = \phi$, $S$ being where it initially crossed this section, and $\sin \phi = \frac{r \tan \alpha}{h}$.
Let $A$ and $B$ be two spheres of different radii, both inscribed in a cone $K$. There are $m$ other, congruent spheres arranged in a ring such that each of them touches $A, B, K$ and two of the other spheres. Prove that this is possible for at most three values of $m.$
(a) What is the maximum area of a triangle with vertices in a given square (or on its boundary)?
(b) What is the maximum volume of a tetrahedron with vertices in a given cube (or on its boundary)?
What is the maximal number of vertices of a convex polyhedron whose each face is either a regular triangle or a square?
What fraction of a $5$-dimensional cube is the volume of the inscribed sphere? What fraction is it of a $10$-dimensional cube?
Let $ f(x)$ be a function with the two properties:
[list=a]
[*] for any two real numbers $ x$ and $ y$, $ f(x \plus{} y) \equal{} x \plus{} f(y)$, and
[*] $ f(0) \equal{} 2$
[/list]
What is the value of $ f(1998)$?
$ \textbf{(A)}\ 0\qquad
\textbf{(B)}\ 2\qquad
\textbf{(C)}\ 1996\qquad
\textbf{(D)}\ 1998\qquad
\textbf{(E)}\ 2000$
A right rectangular prism has integer side lengths $a$, $b$, and $c$. If $\text{lcm}(a,b)=72$, $\text{lcm}(a,c)=24$, and $\text{lcm}(b,c)=18$, what is the sum of the minimum and maximum possible volumes of the prism?
[i]Proposed by Deyuan Li and Andrew Milas[/i]
$ n>2$ is an integer such that $ n^2$ can be represented as a difference of cubes of 2 consecutive positive integers. Prove that $ n$ is a sum of 2 squares of positive integers, and that such $ n$ does exist.
Two triangular pyramids have common base. One pyramid contains the other. Can the sum of the lengths of the edges of the inner pyramid be longer than that of the outer one?
Suppose tetrahedron $PABC$ has volume $420$ and satisfies $AB = 13$, $BC = 14$, and $CA = 15$. The minimum possible surface area of $PABC$ can be written as $m+n\sqrt{k}$, where $m,n,k$ are positive integers and $k$ is not divisible by the square of any prime. Compute $m+n+k$.
[i]Ray Li[/i]
The tetrahedron $OABC$ has all angles at vertex $O$ equal to $60^o$. Prove that $$AB \cdot BC + BC \cdot CA + CA \cdot AB \ge OA^2 + OB^2 + OC^2$$
Let $S^{2}\subset \mathbb{R}^{3}$ be the unit sphere. Show that for any $n$ points on $ S^{2}$, the sum of the squares of the $\frac{n(n-1)}{2}$ distances between them is at most $n^{2}$.
There is a sphere $ K $ in space and points $ A, B $ outside the sphere such that the segment $ AB $ intersects the interior of the sphere. Prove that the set of points $ P $ for which the segments $ AP $ and $ BP $ are tangent to the sphere $ K $ is contained in a certain plane.
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.
A wooden beam $EFGH$ $ABCD$ is with three cuts in $8$ smaller ones sawn beams. Each cut is parallel to one of the three pair of opposit sides. Each pair of saw cuts is shown perpendicular to each other. The smaller bars at the corners $A, C, F$ and $H$ have a capacity of $9, 12, 8, 24$ respectively.(The proportions in the picture are not correct!!). Calculate content of the entire bar.
[asy]
unitsize (0.5 cm);
pair A, B, C, D, E, F, G, H;
pair x, y, z;
x = (1,0.5);
y = (-0.8,0.8);
z = (0,1);
B = (0,0);
C = 5*x;
A = 3*y;
F = 4*z;
E = A + F;
G = C + F;
H = A + C + F;
fill(y--3*y--(3*y + z)--(y + z)--cycle, gray(0.8));
fill(2*x--5*x--(5*x + z)--(2*x + z)--cycle, gray(0.8));
fill((y + z)--(y + 4*z)--(y + 4*z + 2*x)--(4*z + 2*x)--(2*x + z)--z--cycle, gray(0.8));
fill((2*x + y + 4*z)--(2*x + 3*y + 4*z)--(5*x + 3*y + 4*z)--(5*x + y + 4*z)--cycle, gray(0.8));
draw(B--C--G--H--E--A--cycle);
draw(B--F);
draw(E--F);
draw(G--F);
draw(y--(y + 4*z)--(y + 4*z + 5*x));
draw(2*x--(2*x + 4*z)--(2*x + 4*z + 3*y));
draw((3*y + z)--z--(5*x + z));
label("$A$", A, SW);
label("$B$", B, S);
label("$C$", C, SE);
label("$E$", E, NW);
label("$F$", F, SE);
label("$G$", G, NE);
label("$H$", H, N);
[/asy]
Calculate the mean value of the solid angle by which the disc $x^2 + y^2 \le 1$ lying in the plane $z = 0$ is seen from points of the sphere $x^2 + y^2 + (z-2)^2 = 1$.
A pyramid has a square base with sides of length 1 and has lateral faces that are equilateral triangles. A cube is placed within the pyramid so that one face is on the base of the pyramid and its opposite face has all its edges on the lateral faces of the pyramid. What is the volume of this cube?
$ \textbf{(A)}\ 5\sqrt{2}-7 \qquad
\textbf{(B)}\ 7-4\sqrt{3} \qquad
\textbf{(C)}\ \frac{2\sqrt{2}}{27} \qquad
\textbf{(D)}\ \frac{\sqrt{2}}{9} \qquad
\textbf{(E)}\ \frac{\sqrt{3}}{9} $
Is it possible to split a prism into disjoint set of pyramids so that each pyramid has its base on one base of the prism, while its vertex on another base of the prism ? (6)
The vertices of a prism are colored using two colors, so that each lateral edge has its vertices differently colored. Consider all the segments that join vertices of the prism and are not lateral edges. Prove that the number of such segments with endpoints differently colored is equal to the number of such segments with endpoints of the same color.
Let $ ABCD$ be a triangular pyramid such that no face of the pyramid is a right triangle and the orthocenters of triangles $ ABC$, $ ABD$, and $ ACD$ are collinear. Prove that the center of the sphere circumscribed to the pyramid lies on the plane passing through the midpoints of $ AB$, $ AC$ and $ AD$.
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?
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.
Show that there exists a tetrahedron which can be partitioned into eight congruent tetrahedra, each of which is similar to the original one.
What is the total surface area of an ice cream cone, radius $R$, height $H$, with a spherical scoop of ice cream of radius $r$ on top? (Given $R<r$)