Found problems: 1342
A rectangle, with sides parallel to the $x-$axis and $y-$axis, has opposite vertices located at $(15, 3)$ and$(16, 5).$ A line is drawn through points $A(0, 0)$ and $B(3, 1).$ Another line is drawn through points $C(0, 10)$ and $D(2, 9).$ How many points on the rectangle lie on at least one of the two lines?
[asy]
size(9cm);
draw((0,-.5)--(0,11),EndArrow(size=.15cm));
draw((1,0)--(1,11),mediumgray);
draw((2,0)--(2,11),mediumgray);
draw((3,0)--(3,11),mediumgray);
draw((4,0)--(4,11),mediumgray);
draw((5,0)--(5,11),mediumgray);
draw((6,0)--(6,11),mediumgray);
draw((7,0)--(7,11),mediumgray);
draw((8,0)--(8,11),mediumgray);
draw((9,0)--(9,11),mediumgray);
draw((10,0)--(10,11),mediumgray);
draw((11,0)--(11,11),mediumgray);
draw((12,0)--(12,11),mediumgray);
draw((13,0)--(13,11),mediumgray);
draw((14,0)--(14,11),mediumgray);
draw((15,0)--(15,11),mediumgray);
draw((16,0)--(16,11),mediumgray);
draw((-.5,0)--(17,0),EndArrow(size=.15cm));
draw((0,1)--(17,1),mediumgray);
draw((0,2)--(17,2),mediumgray);
draw((0,3)--(17,3),mediumgray);
draw((0,4)--(17,4),mediumgray);
draw((0,5)--(17,5),mediumgray);
draw((0,6)--(17,6),mediumgray);
draw((0,7)--(17,7),mediumgray);
draw((0,8)--(17,8),mediumgray);
draw((0,9)--(17,9),mediumgray);
draw((0,10)--(17,10),mediumgray);
draw((-.13,1)--(.13,1));
draw((-.13,2)--(.13,2));
draw((-.13,3)--(.13,3));
draw((-.13,4)--(.13,4));
draw((-.13,5)--(.13,5));
draw((-.13,6)--(.13,6));
draw((-.13,7)--(.13,7));
draw((-.13,8)--(.13,8));
draw((-.13,9)--(.13,9));
draw((-.13,10)--(.13,10));
draw((1,-.13)--(1,.13));
draw((2,-.13)--(2,.13));
draw((3,-.13)--(3,.13));
draw((4,-.13)--(4,.13));
draw((5,-.13)--(5,.13));
draw((6,-.13)--(6,.13));
draw((7,-.13)--(7,.13));
draw((8,-.13)--(8,.13));
draw((9,-.13)--(9,.13));
draw((10,-.13)--(10,.13));
draw((11,-.13)--(11,.13));
draw((12,-.13)--(12,.13));
draw((13,-.13)--(13,.13));
draw((14,-.13)--(14,.13));
draw((15,-.13)--(15,.13));
draw((16,-.13)--(16,.13));
label(scale(.7)*"$1$", (1,-.13), S);
label(scale(.7)*"$2$", (2,-.13), S);
label(scale(.7)*"$3$", (3,-.13), S);
label(scale(.7)*"$4$", (4,-.13), S);
label(scale(.7)*"$5$", (5,-.13), S);
label(scale(.7)*"$6$", (6,-.13), S);
label(scale(.7)*"$7$", (7,-.13), S);
label(scale(.7)*"$8$", (8,-.13), S);
label(scale(.7)*"$9$", (9,-.13), S);
label(scale(.7)*"$10$", (10,-.13), S);
label(scale(.7)*"$11$", (11,-.13), S);
label(scale(.7)*"$12$", (12,-.13), S);
label(scale(.7)*"$13$", (13,-.13), S);
label(scale(.7)*"$14$", (14,-.13), S);
label(scale(.7)*"$15$", (15,-.13), S);
label(scale(.7)*"$16$", (16,-.13), S);
label(scale(.7)*"$1$", (-.13,1), W);
label(scale(.7)*"$2$", (-.13,2), W);
label(scale(.7)*"$3$", (-.13,3), W);
label(scale(.7)*"$4$", (-.13,4), W);
label(scale(.7)*"$5$", (-.13,5), W);
label(scale(.7)*"$6$", (-.13,6), W);
label(scale(.7)*"$7$", (-.13,7), W);
label(scale(.7)*"$8$", (-.13,8), W);
label(scale(.7)*"$9$", (-.13,9), W);
label(scale(.7)*"$10$", (-.13,10), W);
dot((0,0));
label(scale(.65)*"$A$", (0,0), NE);
dot((3,1));
label(scale(.65)*"$B$", (3,1), NE);
dot((0,10));
label(scale(.65)*"$C$", (0,10), NE);
dot((2,9));
label(scale(.65)*"$D$", (2,9), NE);
draw((15,3)--(16,3)--(16,5)--(15,5)--cycle,linewidth(1.125));
dot((15,3));
dot((16,3));
dot((16,5));
dot((15,5));
[/asy]
$\textbf{(A) } 0\qquad\textbf{(B) } 1\qquad\textbf{(C) } 2\qquad\textbf{(D) } 3\qquad\textbf{(E) } 4$
In a $10\times 10$ square board, half of the squares are coloured white and half black. One side common to two squares on the board side is called a [i]border[/i] if the two squares have different colours. Determine the minimum and maximum possible number of borders that can be on the board.
5.
Given the point T in rectangle ABCD, the distances from T to A,B,C is 15,20,25.
Find the distance from T to D.
A large rectangle is partitioned into four rectangles by two segments parallel to its sides. The areas of three of the resulting rectangles are shown. What is the area of the fourth rectangle?
[asy]
draw((0,0)--(10,0)--(10,7)--(0,7)--cycle);
draw((0,5)--(10,5));
draw((3,0)--(3,7));
label("6", (1.5,6));
label("?", (1.5,2.5));
label("14", (6.5,6));
label("35", (6.5,2.5));
[/asy]
$ \textbf{(A)}\ 10 \qquad\textbf{(B)}\ 15 \qquad\textbf{(C)}\ 20 \qquad\textbf{(D)}\ 21 \qquad\textbf{(E)}\ 25 $
Consider a $ n\times n $ square grid which is divided into $ n^2 $ unit squares(think of a chess-board). The set of all unit squares intersecting the main diagonal of the square or lying under it is called an $n$-staircase. Find the number of ways in which an $n$-stair case can be partitioned into several rectangles, with sides along the grid lines, having mutually distinct areas.
Given three parallel lines on the plane. Find the locus of incenters of triangles with vertices lying on these lines (a single vertex on each line).
Given a rectangle $ABCD$ with $AB> BC$. On the side $CD$, take a point $L$ such that $BL$ and $AC$ are perpendicular. Let $K$ be the intersection point of segments $BL$ and $AC$. It is known that segments $AL$. and $DK$ are perpendicular. Find $\angle ACB.$
In rectangle $ABCD$, angle $C$ is trisected by $\overline{CF}$ and $\overline{CE}$, where $E$ is on $\overline{AB}$, $F$ is on $\overline{AD}$, $BE = 6,$ and $AF = 2$. Which of the following is closest to the area of the rectangle $ABCD$?
[asy]
size(140);
pair A, B, C, D, E, F, X, Y;
real length = 12.5;
real width = 10;
A = origin;
B = (length, 0);
C = (length, width);
D = (0, width);
X = rotate(330, C)*B;
E = extension(C, X, A, B);
Y = rotate(30, C)*D;
F = extension(C, Y, A, D);
draw(E--C--F);
label("$2$", A--F, dir(180));
label("$6$", E--B, dir(270));
draw(A--B--C--D--cycle);
dot(A);dot(B);dot(C);dot(D);dot(E);dot(F);
label("$A$", A, dir(225));
label("$B$", B, dir(315));
label("$C$", C, dir(45));
label("$D$", D, dir(135));
label("$E$", E, dir(270));
label("$F$", F, dir(180));
[/asy]
$\textbf{(A)} \ 110 \qquad \textbf{(B)} \ 120 \qquad \textbf{(C)} \ 130 \qquad \textbf{(D)} \ 140 \qquad \textbf{(E)} \ 150$
In rectangle $ABCD$, $AB=12$ and $BC=10$. Points $E$ and $F$ lie inside rectangle $ABCD$ so that $BE=9$, $DF=8$, $\overline{BE} \parallel \overline{DF}$, $\overline{EF} \parallel \overline{AB}$, and line $BE$ intersects segment $\overline{AD}$. The length $EF$ can be expressed in the form $m\sqrt{n}-p$, where $m,n,$ and $p$ are positive integers and $n$ is not divisible by the square of any prime. Find $m+n+p$.
Squares $ABCD$, $EFGH$, and $GHIJ$ are equal in area. Points $C$ and $D$ are the midpoints of sides $IH$ ad $HE$, respectively. What is the ratio of the area of the shaded pentagon $AJICB$ to the sum of the areas of the three squares?
[asy]
pair A,B,C,D,E,F,G,H,I,J;
A = (0.5,2);
B = (1.5,2);
C = (1.5,1);
D = (0.5,1);
E = (0,1);
F = (0,0);
G = (1,0);
H = (1,1);
I = (2,1);
J = (2,0);
draw(A--B);
draw(C--B);
draw(D--A);
draw(F--E);
draw(I--J);
draw(J--F);
draw(G--H);
draw(A--J);
filldraw(A--B--C--I--J--cycle,grey);
draw(E--I);
dot("$A$", A, NW);
dot("$B$", B, NE);
dot("$C$", C, NE);
dot("$D$", D, NW);
dot("$E$", E, NW);
dot("$F$", F, SW);
dot("$G$", G, S);
dot("$H$", H, N);
dot("$I$", I, NE);
dot("$J$", J, SE);[/asy]
$\textbf{(A)}\ \frac14 \qquad \textbf{(B)}\ \frac7{24} \qquad \textbf{(C)}\ \frac13 \qquad \textbf{(D)}\ \frac38 \qquad \textbf{(E)}\ \frac5{12}$
Let $ABCD$ be a rectangle. Circles with diameters $AB$ and $CD$ meet at points $P$ and $Q$ inside the rectangle such that $P$ is closer to segment $BC$ than $Q$. Let $M$ and $N$ be the midpoints of segments $AB$ and $CD$. If $\angle MPN = 40^\circ$, find the degree measure of $\angle BPC$.
[i]Ray Li.[/i]
[url=https://artofproblemsolving.com/community/c675693][b]Macedonia JBMO TST 2017[/b][/url]
[url=http://artofproblemsolving.com/community/c6h1663908p10569198][b]Problem 1[/b][/url]. Let $p$ be a prime number such that $3p+10$ is a sum of squares of six consecutive positive integers. Prove that $p-7$ is divisible by $36$.
[url=http://artofproblemsolving.com/community/c6h1663916p10569261][b]Problem 2[/b][/url]. In the triangle $ABC$, the medians $AA_1$, $BB_1$, and $CC_1$ are concurrent at a point $T$ such that $BA_1=TA_1$. The points $C_2$ and $B_2$ are chosen on the extensions of $CC_1$ and $BB_2$, respectively, such that
$$C_1C_2 = \frac{CC_1}{3} \quad \text{and} \quad B_1B_2 = \frac{BB_1}{3}.$$
Show that $TB_2AC_2$ is a rectangle.
[url=http://artofproblemsolving.com/community/c6h1663918p10569305][b]Problem 3[/b][/url]. Let $x,y,z$ be positive reals such that $xyz=1$. Show that
$$\frac{x^2+y^2+z}{x^2+2} + \frac{y^2+z^2+x}{y^2+2} + \frac{z^2+x^2+y}{z^2+2} \geq 3.$$
When does equality happen?
[url=http://artofproblemsolving.com/community/c6h1663920p10569326][b]Problem 4[/b][/url]. In triangle $ABC$, the points $X$ and $Y$ are chosen on the arc $BC$ of the circumscribed circle of $ABC$ that doesn't contain $A$ so that $\measuredangle BAX = \measuredangle CAY$. Let $M$ be the midpoint of the segment $AX$. Show that $$BM + CM > AY.$$
[url=http://artofproblemsolving.com/community/c6h1663922p10569370][b]Problem 5[/b][/url]. Find all the positive integers $n$ so that $n$ has the same number of digits as its number of different prime factors and the sum of these different prime factors is equal to the sum of exponents of all these primes in factorization of $n$.
$\textbf{Bake Sale}$
Four friends, Art, Roger, Paul and Trisha, bake cookies, and all cookies have the same thickness. The shapes of the cookies differ, as shown.
$\circ$ Art's cookies are trapezoids:
[asy]size(80);defaultpen(linewidth(0.8));defaultpen(fontsize(8));
draw(origin--(5,0)--(5,3)--(2,3)--cycle);
draw(rightanglemark((5,3), (5,0), origin));
label("5 in", (2.5,0), S);
label("3 in", (5,1.5), E);
label("3 in", (3.5,3), N);[/asy]
$\circ$ Roger's cookies are rectangles:
[asy]size(80);defaultpen(linewidth(0.8));defaultpen(fontsize(8));
draw(origin--(4,0)--(4,2)--(0,2)--cycle);
draw(rightanglemark((4,2), (4,0), origin));
draw(rightanglemark((0,2), origin, (4,0)));
label("4 in", (2,0), S);
label("2 in", (4,1), E);[/asy]
$\circ$ Paul's cookies are parallelograms:
[asy]size(80);defaultpen(linewidth(0.8));defaultpen(fontsize(8));
draw(origin--(3,0)--(2.5,2)--(-0.5,2)--cycle);
draw((2.5,2)--(2.5,0), dashed);
draw(rightanglemark((2.5,2),(2.5,0), origin));
label("3 in", (1.5,0), S);
label("2 in", (2.5,1), W);[/asy]
$\circ$ Trisha's cookies are triangles:
[asy]size(80);defaultpen(linewidth(0.8));defaultpen(fontsize(8));
draw(origin--(3,0)--(3,4)--cycle);
draw(rightanglemark((3,4),(3,0), origin));
label("3 in", (1.5,0), S);
label("4 in", (3,2), E);[/asy]
Each friend uses the same amount of dough, and Art makes exactly 12 cookies. Who gets the fewest cookies from one batch of cookie dough?
$ \textbf{(A)}\ \text{Art}\qquad\textbf{(B)}\ \text{Roger}\qquad\textbf{(C)}\ \text{Paul}\qquad\textbf{(D)}\ \text{Trisha}\qquad\textbf{(E)}\ \text{There is a tie for fewest.}$
How many rectangles are in this figure?
[asy]
pair A,B,C,D,E,F,G,H,I,J,K,L;
A=(0,0);
B=(20,0);
C=(20,20);
D=(0,20);
draw(A--B--C--D--cycle);
E=(-10,-5);
F=(13,-5);
G=(13,5);
H=(-10,5);
draw(E--F--G--H--cycle);
I=(10,-20);
J=(18,-20);
K=(18,13);
L=(10,13);
draw(I--J--K--L--cycle);[/asy]
$ \textbf{(A)}\ 8\qquad\textbf{(B)}\ 9\qquad\textbf{(C)}\ 10\qquad\textbf{(D)}\ 11\qquad\textbf{(E)}\ 12 $
In a square $10^{2019} \times 10^{2019}, 10^{4038}$ points are marked. Prove that there is such a rectangle with sides parallel to the sides of a square whose area differs from the number of points located in it by at least $6$.
Rectangle $HOMF$ has $HO=11$ and $OM=5$. Triangle $ABC$ has orthocenter $H$ and circumcenter $O$. $M$ is the midpoint of $BC$ and altitude $AF$ meets $BC$ at $F$. Find the length of $BC$.
Find the area of inscribed convex octagon, if the length of four sides is $2$, and length of other four sides is $ 6\sqrt {2}$.
$\textbf{(A)}\ 120 \qquad\textbf{(B)}\ 24 \plus{} 68\sqrt {2} \qquad\textbf{(C)}\ 88\sqrt {2} \qquad\textbf{(D)}\ 124 \qquad\textbf{(E)}\ 72\sqrt {3}$
In how many ways can we place the numbers from $1$ to $100$ in a $2\times 50$ rectangle (divided into $100$ unit squares) so that any two consecutive numbers are always placed in squares with a common side?
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$
The area of rectangle $ABCD$ is $72$. If point $A$ and the midpoints of $\overline{BC}$ and $\overline{CD}$ are joined to form a triangle, the area of that triangle is
[asy]
pair A,B,C,D;
A = (0,8); B = (9,8); C = (9,0); D = (0,0);
draw(A--B--C--D--A--(9,4)--(4.5,0)--cycle);
label("$A$",A,NW);
label("$B$",B,NE);
label("$C$",C,SE);
label("$D$",D,SW);
[/asy]
$\text{(A)}\ 21 \qquad \text{(B)}\ 27 \qquad \text{(C)}\ 30 \qquad \text{(D)}\ 36 \qquad \text{(E)}\ 40$
Tanya and Serezha take turns putting chips in empty squares of a chessboard. Tanya starts with a chip in an arbitrary square. At every next move, Serezha must put a chip in the column where Tanya put her last chip, while Tanya must put a chip in the row where Serezha put his last chip. The player who cannot make a move loses. Which of the players has a winning strategy?
[i]Proposed by A. Golovanov[/i]
Given a positive integer $n\ge 3$, colour each cell of an $n\times n$ square array with one of $\lfloor (n+2)^2/3\rfloor$ colours, each colour being used at least once. Prove that there is some $1\times 3$ or $3\times 1$ rectangular subarray whose three cells are coloured with three different colours.
[i](Russia) Ilya Bogdanov, Grigory Chelnokov, Dmitry Khramtsov[/i]
Turki has divided a square into finitely many white and green rectangles, each with sides parallel to the sides of the square. Within each white rectangle, he writes down its width divided by its height. Within each green rectangle, he writes down its height divided by its width. Finally, he calculates $S$, the sum of these numbers. If the total area of white rectangles equals the total area of green rectangles, determine the minimum possible value of $S$.
In a triangle $\triangle ABC$ with$\angle B>\angle C$, the altitude, the angle bisector, and the median from $A$ intersect $BC$ at $H, L$ and $D$, respectively. Show that $\angle HAL=\angle DAL$ if and only if $\angle BAC=90^{\circ}$.
a) * In a rectangle of area $5$ sq. units, $9$ rectangles of area $1$ are arranged. Prove that the area of the overlap of some two of these rectangles is $\ge 1/9$
b) In a rectangle of area $5$ sq. units, lie $9$ arbitrary polygons each of area $1$. Prove that the area of the overlap of some two of these rectangles is $\ge 1/9$