Found problems: 1342
1957 AMC 12/AHSME, 37
In right triangle $ ABC$, $ BC \equal{} 5$, $ AC \equal{} 12$, and $ AM \equal{} x$; $ \overline{MN} \perp \overline{AC}$, $ \overline{NP} \perp \overline{BC}$; $ N$ is on $ AB$. If $ y \equal{} MN \plus{} NP$, one-half the perimeter of rectangle $ MCPN$, then:
[asy]defaultpen(linewidth(.8pt));
unitsize(2cm);
pair A = origin;
pair M = (1,0);
pair C = (2,0);
pair P = (2,0.5);
pair B = (2,1);
pair Q = (1,0.5);
draw(A--B--C--cycle);
draw(M--Q--P);
label("$A$",A,SW);
label("$M$",M,S);
label("$C$",C,SE);
label("$P$",P,E);
label("$B$",B,NE);
label("$N$",Q,NW);[/asy]$ \textbf{(A)}\ y \equal{} \frac {1}{2}(5 \plus{} 12) \qquad \textbf{(B)}\ y \equal{} \frac {5x}{12} \plus{} \frac {12}{5}\qquad \textbf{(C)}\ y \equal{} \frac {144 \minus{} 7x}{12}\qquad$
$ \textbf{(D)}\ y \equal{} 12\qquad \qquad\quad\,\, \textbf{(E)}\ y \equal{} \frac {5x}{12} \plus{} 6$
2009 Indonesia TST, 1
Given an $ n\times n$ chessboard.
a) Find the number of rectangles on the chessboard.
b) Assume there exists an $ r\times r$ square (label $ B$) with $ r<n$ which is located on the upper left corner of the board. Define "inner border" of $ A$ as the border of $ A$ which is not the border of the chessboard. How many rectangles in $ B$ that touch exactly one inner border of $ B$?
2004 Romania Team Selection Test, 2
Let $\{R_i\}_{1\leq i\leq n}$ be a family of disjoint closed rectangular surfaces with total area 4 such that their projections of the $Ox$ axis is an interval. Prove that there exist a triangle with vertices in $\displaystyle \bigcup_{i=1}^n R_i$ which has an area of at least 1.
[Thanks Grobber for the correction]
2010 Contests, 3
Let $p$ be a prime number. Prove that from a $p^2\times p^2$ array of squares, we can select $p^3$ of the squares such that the centers of any four of the selected squares are not the vertices of a rectangle with sides parallel to the edges of the array.
1994 Austrian-Polish Competition, 3
A rectangular building consists of $30$ square rooms situated like the cells of a $2 \times 15$ board. In each room there are three doors, each of which leads to another room (not necessarily different). How many ways are there to distribute the doors between the rooms so that it is possible to get from any room to any other one without leaving the building?
2021 VIASM Math Olympiad Test, Problem 1
Given a $8$x$8$ square board
a) Prove that: for any ways to color the board, we are always be able to find a rectangle consists of $8$ squares such that these squares are not colored.
b) Prove that: we can color $7$ squares on the board such that for any rectangles formed by $\geq 9$ squares, there are at least $1$ colored square.
2009 Germany Team Selection Test, 1
In the plane we consider rectangles whose sides are parallel to the coordinate axes and have positive length. Such a rectangle will be called a [i]box[/i]. Two boxes [i]intersect[/i] if they have a common point in their interior or on their boundary. Find the largest $ n$ for which there exist $ n$ boxes $ B_1$, $ \ldots$, $ B_n$ such that $ B_i$ and $ B_j$ intersect if and only if $ i\not\equiv j\pm 1\pmod n$.
[i]Proposed by Gerhard Woeginger, Netherlands[/i]
2016 AMC 10, 10
A rug is made with three different colors as shown. The areas of the three differently colored regions form an arithmetic progression. The inner rectangle is one foot wide, and each of the two shaded regions is $1$ foot wide on all four sides. What is the length in feet of the inner rectangle?
[asy]
size(6cm);
defaultpen(fontsize(9pt));
path rectangle(pair X, pair Y){
return X--(X.x,Y.y)--Y--(Y.x,X.y)--cycle;
}
filldraw(rectangle((0,0),(7,5)),gray(0.5));
filldraw(rectangle((1,1),(6,4)),gray(0.75));
filldraw(rectangle((2,2),(5,3)),white);
label("$1$",(0.5,2.5));
draw((0.3,2.5)--(0,2.5),EndArrow(TeXHead));
draw((0.7,2.5)--(1,2.5),EndArrow(TeXHead));
label("$1$",(1.5,2.5));
draw((1.3,2.5)--(1,2.5),EndArrow(TeXHead));
draw((1.7,2.5)--(2,2.5),EndArrow(TeXHead));
label("$1$",(4.5,2.5));
draw((4.5,2.7)--(4.5,3),EndArrow(TeXHead));
draw((4.5,2.3)--(4.5,2),EndArrow(TeXHead));
label("$1$",(4.1,1.5));
draw((4.1,1.7)--(4.1,2),EndArrow(TeXHead));
draw((4.1,1.3)--(4.1,1),EndArrow(TeXHead));
label("$1$",(3.7,0.5));
draw((3.7,0.7)--(3.7,1),EndArrow(TeXHead));
draw((3.7,0.3)--(3.7,0),EndArrow(TeXHead));
[/asy]
$\textbf{(A) } 1 \qquad \textbf{(B) } 2 \qquad \textbf{(C) } 4 \qquad \textbf{(D) } 6 \qquad \textbf{(E) }8$
1990 AIME Problems, 14
The rectangle $ABCD$ below has dimensions $AB = 12 \sqrt{3}$ and $BC = 13 \sqrt{3}$. Diagonals $\overline{AC}$ and $\overline{BD}$ intersect at $P$. If triangle $ABP$ is cut out and removed, edges $\overline{AP}$ and $\overline{BP}$ are joined, and the figure is then creased along segments $\overline{CP}$ and $\overline{DP}$, we obtain a triangular pyramid, all four of whose faces are isosceles triangles. Find the volume of this pyramid.
[asy]
pair D=origin, A=(13,0), B=(13,12), C=(0,12), P=(6.5, 6);
draw(B--C--P--D--C^^D--A);
filldraw(A--P--B--cycle, gray, black);
label("$A$", A, SE);
label("$B$", B, NE);
label("$C$", C, NW);
label("$D$", D, SW);
label("$P$", P, N);
label("$13\sqrt{3}$", A--D, S);
label("$12\sqrt{3}$", A--B, E);[/asy]
1987 AIME Problems, 6
Rectangle $ABCD$ is divided into four parts of equal area by five segments as shown in the figure, where $XY = YB + BC + CZ = ZW = WD + DA + AX$, and $PQ$ is parallel to $AB$. Find the length of $AB$ (in cm) if $BC = 19$ cm and $PQ = 87$ cm.
[asy]
size(250);
pair A=origin, B=(96,0), C=(96,22), D=(0,22), W=(16,22), X=(20,0), Y=(80,0), Z=(76,22), P=(24,11), Q=(72,11);
draw(P--X--A--D--W--P--Q--Y--B--C--Z--Q^^W--Z^^X--Y);
dot(A^^B^^C^^D^^P^^Q^^W^^X^^Y^^Z);
pair point=(48,11);
label("$A$", A, SW);
label("$B$", B, SE);
label("$C$", C, NE);
label("$D$", D, NW);
label("$P$", P, dir(point--P));
label("$Q$", Q, dir(point--Q));
label("$W$", W, N);
label("$X$", X, S);
label("$Y$", Y, S);
label("$Z$", Z, N);[/asy]
2006 Irish Math Olympiad, 3
Prove that a square of side 2.1 units can be completely covered by seven squares of side 1 unit.
Extra: Try to prove that 7 is the minimal amount.
1989 Chile National Olympiad, 2
We have a rectangle with integer sides $m, n$ that is subdivided into $mn$ squares of side $1$. Find the number of little squares that are crossed by the diagonal (without counting those that are touched only in one vertex)
2000 France Team Selection Test, 1
Points $P,Q,R,S$ lie on a circle and $\angle PSR$ is right. $H,K$ are the projections of $Q$ on lines $PR,PS$. Prove that $HK$ bisects segment $ QS$.
Durer Math Competition CD 1st Round - geometry, 2022.C4
We inscribed in triangle $ABC$ the rectangle $DEFG$ such that $D$ and $E$ fall on side $AB$, $F$ on side $BC$, and $G$ on side $AC$. We know that $AF$ bisects angle $\angle BAC$, and that $\frac{AD}{DE} = \frac12$. What is the measure of angle $\angle CAB$?
2004 Purple Comet Problems, 20
A circle with area $40$ is tangent to a circle with area $10$. Let R be the smallest rectangle containing both circles. The area of $R$ is $\frac{n}{\pi}$. Find $n$.
[asy]
defaultpen(linewidth(0.7)); size(120);
real R = sqrt(40/pi), r = sqrt(10/pi);
draw(circle((0,0), R)); draw(circle((R+r,0), r));
draw((-R,-R)--(-R,R)--(R+2*r,R)--(R+2*r,-R)--cycle);[/asy]
2014 AMC 10, 23
A rectangular piece of paper whose length is $\sqrt3$ times the width has area $A$. The paper is divided into equal sections along the opposite lengths, and then a dotted line is drawn from the first divider to the second divider on the opposite side as shown. The paper is then folded flat along this dotted line to create a new shape with area $B$. What is the ratio $B:A$?
[asy]
import graph;
size(6cm);
real L = 0.05;
pair A = (0,0);
pair B = (sqrt(3),0);
pair C = (sqrt(3),1);
pair D = (0,1);
pair X1 = (sqrt(3)/3,0);
pair X2= (2*sqrt(3)/3,0);
pair Y1 = (2*sqrt(3)/3,1);
pair Y2 = (sqrt(3)/3,1);
dot(X1);
dot(Y1);
draw(A--B--C--D--cycle, linewidth(2));
draw(X1--Y1,dashed);
draw(X2--(2*sqrt(3)/3,L));
draw(Y2--(sqrt(3)/3,1-L));
[/asy]
$ \textbf{(A)}\ 1:2\qquad\textbf{(B)}\ 3:5\qquad\textbf{(C)}\ 2:3\qquad\textbf{(D)}\ 3:4\qquad\textbf{(E)}\ 4:5 $
1995 AMC 8, 9
Three congruent circles with centers $P$, $Q$, and $R$ are tangent to the sides of rectangle $ABCD$ as shown. The circle centered at $Q$ has diameter $4$ and passes through points $P$ and $R$. The area of the rectangle is
[asy]
pair A,B,C,D,P,Q,R;
A = (0,4); B = (8,4); C = (8,0); D = (0,0);
P = (2,2); Q = (4,2); R = (6,2);
dot(A); dot(B); dot(C); dot(D); dot(P); dot(Q); dot(R);
draw(A--B--C--D--cycle);
draw(circle(P,2));
draw(circle(Q,2));
draw(circle(R,2));
label("$A$",A,NW);
label("$B$",B,NE);
label("$C$",C,SE);
label("$D$",D,SW);
label("$P$",P,W);
label("$Q$",Q,W);
label("$R$",R,W);
[/asy]
$\text{(A)}\ 16 \qquad \text{(B)}\ 24 \qquad \text{(C)}\ 32 \qquad \text{(D)}\ 64 \qquad \text{(E)}\ 128$
2013 Argentina National Olympiad Level 2, 6
Is there a square with side lenght $\ell < 1$ that can completely cover any rectangle of diagonal $1$?
2020 Bulgaria EGMO TST, 1
Let $n$ and $t$ be positive integers. What is the number of ways to place $t$ dominoes $(1\times 2$ or $2\times 1$ rectangles) in a $2\times n$ table so that there is no $2\times 2$ square formed by $2$ dominoes and each $2\times 3$ rectangle either does not have a horizontal domino in the middle and last cell in the first row or does not have a horizontal domino in the first and middle cell in the second row (or both)?
2012 National Olympiad First Round, 33
Let $ABCDA'B'C'D'$ be a rectangular prism with $|AB|=2|BC|$. $E$ is a point on the edge $[BB']$ satisfying $|EB'|=6|EB|$. Let $F$ and $F'$ be the feet of the perpendiculars from $E$ at $\triangle AEC$ and $\triangle A'EC'$, respectively. If $m(\widehat{FEF'})=60^{\circ}$, then $|BC|/|BE| = ? $
$ \textbf{(A)}\ \sqrt\frac53 \qquad \textbf{(B)}\ \sqrt\frac{15}2 \qquad \textbf{(C)}\ \frac32\sqrt{15} \qquad \textbf{(D)}\ 5\sqrt\frac53 \qquad \textbf{(E)}\ \text{None}$
1989 Tournament Of Towns, (222) 6
We are given $101$ rectangles with sides of integer lengths not exceeding $100$ . Prove that among these $101$ rectangles there are $3$ rectangles, say $A , B$ and $C$ such that $A$ will fit inside $B$ and $B$ inside $C$.
( N . Sedrakyan, Yerevan)
2018 District Olympiad, 3
Let $ABCD$ be a rectangle and the arbitrary points $E\in (CD)$ and $F \in (AD)$. The perpendicular from point $E$ on the line $FB$ intersects the line $BC$ at point $P$ and the perpendicular from point $F$ on the line $EB$ intersects the line $AB$ at point $Q$. Prove that the points $P, D$ and $Q$ are collinear.
2004 Postal Coaching, 11
Three circles touch each other externally and all these cirlces also touch a fixed straight line. Let $A,B,C$ be the mutual points of contact of these circles. If $\omega$ denotes the Brocard angle of the triangle $ABC$, prove that $\cot{\omega}$ = 2.
2013 Kazakhstan National Olympiad, 3
How many non-intersecting pairs of paths we have from (0,0) to (n,n) so that path can move two ways:top or right?
2011 Today's Calculation Of Integral, 698
For a positive integer $n$, let denote $C_n$ the figure formed by the inside and perimeter of the circle with center the origin, radius $n$ on the $x$-$y$ plane.
Denote by $N(n)$ the number of a unit square such that all of unit square, whose $x,\ y$ coordinates of 4 vertices are integers, and the vertices are included in $C_n$.
Prove that $\lim_{n\to\infty} \frac{N(n)}{n^2}=\pi$.