Found problems: 85335
2012 Mid-Michigan MO, 7-9
[b]p1.[/b] We say that integers $a$ and $b$ are [i]friends [/i] if their product is a perfect square. Prove that if $a$ is a friend of $b$, then $a$ is a friend of $gcd (a, b)$.
[b]p2.[/b] On the island of knights and liars, a traveler visited his friend, a knight, and saw him sitting at a round table with five guests.
"I wonder how many knights are among you?" he asked.
" Ask everyone a question and find out yourself" advised him one of the guests.
"Okay. Tell me one: Who are your neighbors?" asked the traveler.
This question was answered the same way by all the guests.
"This information is not enough!" said the traveler.
"But today is my birthday, do not forget it!" said one of the guests.
"Yes, today is his birthday!" said his neighbor.
Now the traveler was able to find out how many knights were at the table.
Indeed, how many of them were there if [i]knights always tell the truth and liars always lie[/i]?
[b]p3.[/b] A rope is folded in half, then in half again, then in half yet again. Then all the layers of the rope were cut in the same place. What is the length of the rope if you know that one of the pieces obtained has length of $9$ meters and another has length $4$ meters?
[b]p4.[/b] The floor plan of the palace of the Shah is a square of dimensions $6 \times 6$, divided into rooms of dimensions $1 \times 1$. In the middle of each wall between rooms is a door. The Shah orders his architect to eliminate some of the walls so that all rooms have dimensions $2 \times 1$, no new doors are created, and a path between any two rooms has no more than $N$ doors. What is the smallest value of $N$ such that the order could be executed?
[b]p5.[/b] There are $10$ consecutive positive integers written on a blackboard. One number is erased. The sum of remaining nine integers is $2011$. Which number was erased?
PS. You should use hide for answers. Collected [url=https://artofproblemsolving.com/community/c5h2760506p24143309]here[/url].
2007 Romania National Olympiad, 2
Let $f: [0,1]\rightarrow(0,+\infty)$ be a continuous function.
a) Show that for any integer $n\geq 1$, there is a unique division $0=a_{0}<a_{1}<\ldots<a_{n}=1$ such that $\int_{a_{k}}^{a_{k+1}}f(x)\, dx=\frac{1}{n}\int_{0}^{1}f(x)\, dx$ holds for all $k=0,1,\ldots,n-1$.
b) For each $n$, consider the $a_{i}$ above (that depend on $n$) and define $b_{n}=\frac{a_{1}+a_{2}+\ldots+a_{n}}{n}$. Show that the sequence $(b_{n})$ is convergent and compute it's limit.
2018 CMIMC Team, 7-1/7-2
Let $ABCD$ be a unit square, and suppose that $E$ and $F$ are on $\overline{AD}$ and $\overline{AB}$ such that $AE = AF = \tfrac23$. Let $\overline{CE}$ and $\overline{DF}$ intersect at $G$. If the area of $\triangle CFG$ can be expressed as simplified fraction $\frac{p}{q}$, find $p + q$.
Let $T = TNYWR$. A total of $2T$ students go on a road trip. They take two cars, each of which seats $T$ people. Call two students \textit{friendly} if they sat together in the same car going to the trip and in the same car going back home. What is the smallest possible number of friendly pairs of students on the trip?
2017 Harvard-MIT Mathematics Tournament, 9
The Fibonacci sequence is defined as follows: $F_0=0$, $F_1=1$, and $F_n=F_{n-1}+F_{n-2}$ for all integers $n\ge 2$. Find the smallest positive integer $m$ such that $F_m\equiv 0 \pmod {127}$ and $F_{m+1}\equiv 1\pmod {127}$.
2019 China Second Round Olympiad, 1
Suppose that $a_1,a_2,\cdots,a_{100}\in\mathbb{R}^+$ such that $a_i\geq a_{101-i}\,(i=1,2,\cdots,50).$
Let $x_k=\frac{ka_{k+1}}{a_1+a_2+\cdots+a_k}\,(k=1,2,\cdots,99).$ Prove that
$$x_1x_2^2\cdots x_{99}^{99}\leq 1.$$
2008 Cono Sur Olympiad, 1
We define $I(n)$ as the result when the digits of $n$ are reversed. For example, $I(123)=321$, $I(2008)=8002$. Find all integers $n$, $1\leq{n}\leq10000$ for which $I(n)=\lceil{\frac{n}{2}}\rceil$.
Note: $\lceil{x}\rceil$ denotes the smallest integer greater than or equal to $x$. For example, $\lceil{2.1}\rceil=3$, $\lceil{3.9}\rceil=4$, $\lceil{7}\rceil=7$.
2007 Korea - Final Round, 2
Given a $ 4\times 4$ squares table. How many ways that we can fill the table with $ \{0,1\}$ such that two neighbor squares (have one common side) have product which is equal to $ 0$?
2011 HMNT, 2
In a game of Fish, R2 and R3 are each holding a positive number of cards so that they are collectively holding a total of $24$ cards. Each player gives an integer estimate for the number of cards he is holding, such that each estimate is an integer between $80\%$ of his actual number of cards and $120\%$ of his actual number of cards, inclusive. Find the smallest possible sum of the two estimates.
2003 AIME Problems, 3
Let the set $\mathcal{S} = \{8, 5, 1, 13, 34, 3, 21, 2\}$. Susan makes a list as follows: for each two-element subset of $\mathcal{S}$, she writes on her list the greater of the set's two elements. Find the sum of the numbers on the list.
2009 Purple Comet Problems, 14
Rectangle $ABCD$ measures $70$ by $40$. Eighteen points (including $A$ and $C$) are marked on the diagonal $AC$ dividing the diagonal into $17$ congruent pieces. Twenty-two points (including A and B) are marked on the side $AB$ dividing the side into $21$ congruent pieces. Seventeen non-overlapping triangles are constructed as shown. Each triangle has two vertices that are two of these adjacent marked points on the side of the rectangle, and one vertex that is one of the marked points along the diagonal of the rectangle. Only the left $17$ of the $21$ congruent pieces along the side of the rectangle are used as bases of these triangles. Find the sum of the areas of these $17$ triangles.
[asy]
size(200);
defaultpen(linewidth(0.8));
pair A=origin,B=(21,0),C=(21,12),D=(0,12);
path P=origin;
draw(A--B--C--D--cycle--C);
for (int r = 1; r <= 17;++r) {
P=P--(21*r/17,12*r/17)--(r,0);
}
P=P--cycle;
filldraw(P,gray(0.7));
label("$A$",A,SW);
label("$B$",B,SE);
label("$C$",C,NE);
label("$D$",D,NW);
[/asy]
1993 Cono Sur Olympiad, 3
Find the number of elements that a set $B$ can have, contained in $(1, 2, ... , n)$, according to the following property: For any elements $a$ and $b$ on $B$ ($a \ne b$), $(a-b) \not| (a+b)$.
2007 France Team Selection Test, 3
A point $D$ is chosen on the side $AC$ of a triangle $ABC$ with $\angle C < \angle A < 90^\circ$ in such a way that $BD=BA$. The incircle of $ABC$ is tangent to $AB$ and $AC$ at points $K$ and $L$, respectively. Let $J$ be the incenter of triangle $BCD$. Prove that the line $KL$ intersects the line segment $AJ$ at its midpoint.
2018 Romania Team Selection Tests, 3
Let $n > 1$ be a given integer. An $n \times n \times n$ cube is composed of $n^3$ unit cubes. Each unit cube is painted with one colour. For each $n \times n \times 1$ box consisting of $n^2$ unit cubes (in any of the three possible orientations), we consider the set of colours present in that box (each colour is listed only once). This way, we get $3n$ sets of colours, split into three groups according to the orientation.
It happens that for every set in any group, the same set appears in both of the other groups. Determine, in terms of $n$, the maximal possible number of colours that are present.
2016 CCA Math Bonanza, L3.4
Let $S$ be the set of the reciprocals of the first $2016$ positive integers and $T$ the set of all subsets of $S$ that form arithmetic progressions. What is the largest possible number of terms in a member of $T$?
[i]2016 CCA Math Bonanza Lightning #3.4[/i]
2008 China Team Selection Test, 3
Find all positive integers $ n$ having the following properties:in two-dimensional Cartesian coordinates, there exists a convex $ n$ lattice polygon whose lengths of all sides are odd numbers, and unequal to each other. (where lattice polygon is defined as polygon whose coordinates of all vertices are integers in Cartesian coordinates.)
1980 AMC 12/AHSME, 30
A six digit number (base 10) is squarish if it satisfies the following conditions:
(i) none of its digits are zero;
(ii) it is a perfect square; and
(iii) the first of two digits, the middle two digits and the last two digits of the number are all perfect squares when considered as two digit numbers.
How many squarish numbers are there?
$\text{(A)} \ 0 \qquad \text{(B)} \ 2 \qquad \text{(C)} \ 3 \qquad \text{(D)} \ 8 \qquad \text{(E)} \ 9$
2019 India PRMO, 20
Consider the set $E$ of all natural numbers $n$ such that whenn divided by $11, 12, 13$, respectively, the remainders, int that order, are distinct prime numbers in an arithmetic progression. If $N$ is the largest number in $E$, find the sum of digits of $N$.
1967 Putnam, B1
Let $ABCDEF$ be a hexagon inscribed in a circle of radius $r.$ Show that if $AB=CD=EF=r,$ then the midpoints of $BC, DE$ and $FA$ are the vertices of an equilateral triangle.
2017 IMO, 5
An integer $N \ge 2$ is given. A collection of $N(N + 1)$ soccer players, no two of whom are of the same height, stand in a row. Sir Alex wants to remove $N(N - 1)$ players from this row leaving a new row of $2N$ players in which the following $N$ conditions hold:
($1$) no one stands between the two tallest players,
($2$) no one stands between the third and fourth tallest players,
$\;\;\vdots$
($N$) no one stands between the two shortest players.
Show that this is always possible.
[i]Proposed by Grigory Chelnokov, Russia[/i]
2011 All-Russian Olympiad Regional Round, 9.1
Three positive numbers are such that the sum of any one of them with the sum of squares of the remaining two numbers is the same. Is it true that all numbers are the same? (Author: L. Emelyanov)
1998 Estonia National Olympiad, 2
In a triangle $ABC, A_1,B_1,C_1$ are the midpoints of segments $BC,CA,AB, A_2,B_2,C_2$ are the midpoints of segments $B_1C_1,C_1A_1,A_1B_1$, and $A_3,B_3,C_3$ are the incenters of triangles $B_1AC_1,C_1BA_1,A_1CB_1$, respectively. Show that the lines $A_2A_3,B_2B_3$ and $C_2C_3$ are concurrent.
2021 Taiwan APMO Preliminary First Round, 4
Let $n$ be a positive integer. All numbers $m$ which are coprime to $n$ all satisfy $m^6\equiv 1\pmod n$. Find the maximum possible value of $n$.
2023 Turkey Team Selection Test, 2
There is a school with $n$ students. Suppose that every student has exactly $2023$ friends and every couple of student that are not friends has exactly $2022$ friends in common. Then find all values of $n$
2013 NIMO Problems, 4
While taking the SAT, you become distracted by your own answer sheet. Because you are not bound to the College Board's limiting rules, you realize that there are actually $32$ ways to mark your answer for each question, because you could fight the system and bubble in multiple letters at once: for example, you could mark $AB$, or $AC$, or $ABD$, or even $ABCDE$, or nothing at all!
You begin to wonder how many ways you could mark off the 10 questions you haven't yet answered. To increase the challenge, you wonder how many ways you could mark off the rest of your answer sheet without ever marking the same letter twice in a row. (For example, if $ABD$ is marked for one question, $AC$ cannot be marked for the next one because $A$ would be marked twice in a row.) If the number of ways to do this can be expressed in the form $2^m p^n$, where $m,n > 1$ are integers and $p$ is a prime, compute $100m+n+p$.
[i]Proposed by Alexander Dai[/i]
2009 Rioplatense Mathematical Olympiad, Level 3, 3
Call a permutation of the integers $(1,2,\ldots,n)$ [i]$d$-ordered[/i] if it does not contains a decreasing subsequence of length $d$. Prove that for every $d=2,3,\ldots,n$, the number of $d$-ordered permutations of $(1,2,\ldots,n)$ is at most $(d-1)^{2n}$.