Found problems: 85335
Find all polynomials with real coefficients such that one can find an integer valued series $a_0, a_1, \dots$ satisfying $\lfloor P(x) \rfloor = a_{ \lfloor x^2 \rfloor}$ for all $x$ real numbers.
A game is played on a $n \times n$ chessboard. In the beginning Bars the cat occupies any cell according to his choice. The $d$ sparrows land on certain cells according to their choice (several sparrows may land in the same cell). Bars and the sparrows play in turns. In each turn of Bars, he moves to a cell adjacent by a side or a vertex (like a king in chess). In each turn of the sparrows, precisely one of the sparrows flies from its current cell to any other cell of his choice. The goal of Bars is to get to a cell containing a sparrow. Can Bars achieve his goal
a) if $d=\lfloor \frac{3\cdot n^2}{25}\rfloor$, assuming $n$ is large enough?
b) if $d=\lfloor \frac{3\cdot n^2}{19}\rfloor$, assuming $n$ is large enough?
c) if $d=\lfloor \frac{3\cdot n^2}{14}\rfloor$, assuming $n$ is large enough?
How many ways are there to paint each of the integers $2, 3, \dots, 9$ either red, green, or blue so that each number has a different color from each of its proper divisors?
$\textbf{(A)}\ 144\qquad\textbf{(B)}\ 216\qquad\textbf{(C)}\ 256\qquad\textbf{(D)}\ 384\qquad\textbf{(E)}\ 432$
Andrea and Bruno play a game on a table with $11$ rows and $9$ columns. First Andrea divides the table in $33$ zones. Each zone is formed by $3$ contiguous cells aligned vertically or horizontally, as shown in the figure.
[code]
._
|_|
|_| _ _ _
|_| |_|_|_|
[/code]
Then, Bruno writes one of the numbers $0, 1, 2, 3, 4, 5$ in each cell in such a way that the sum of the numbers in each zone is equal to $5$. Bruno wins if the sum of the numbers written in each of the $9$ columns of the table is a prime number. Otherwise, Andrea wins. Show that Bruno always has a winning strategy.
Find all continuous functions $f: \mathbb R \to \mathbb R$ such that
\[f(x^2-y^2)=f(x)^2 + f(y)^2, \quad \forall x,y \in \mathbb R.\]
Prove that for natural numbers $p$ and $q$, there exists a natural number $x$ such that
$$(\sqrt{p}+\sqrt{p-1})^q=\sqrt{x}+\sqrt{x-1}$$
(As an example, if $p = 3, q = 2$, then $x$ can be taken to be $25$.)
In a town there are $n$ avenues running from south to north. They are numbered $1$ through $n$ (from west to east). There are $n$ streets running from west to east – they are also numbered $1$ through $n$ (from south to north).
If you drive through the junction of the $k$th avenue and the $\ell$th street, you have to pay $k\ell$ kroner. How much do you at least have to pay for driving from the junction of the $1$st avenue and the $1$st street to the junction of the nth avenue and the $n$th street? (You also pay for the starting and finishing junctions.)
How many integers between $1000$ and $2000$ have all three of the numbers $15$, $20$, and $25$ as factors?
$\textbf{(A)}\ 1 \qquad
\textbf{(B)}\ 2 \qquad
\textbf{(C)}\ 3 \qquad
\textbf{(D)}\ 4 \qquad
\textbf{(E)}\ 5$
Is there an infinite sequence of real numbers $a_1,a_2,a_3,\dots$ such that
\[a_1^m+a_2^m+a_3^m+\cdots=m\]
for every positive integer $m?$
Consider $n$ students with numbers $1, 2, \ldots, n$ standing in the order $1, 2, \ldots, n.$ Upon a command, any of the students either remains on his place or switches his place with another student. (Actually, if student $A$ switches his place with student $B,$ then $B$ cannot switch his place with any other student $C$ any more until the next command comes.)
Is it possible to arrange the students in the order $n,1, 2, \ldots, n-1$ after two commands ?
For any angle α with $0 < \alpha < 180^{\circ}$, we call a closed convex planar set an $\alpha$-set if it is bounded by two circular arcs (or an arc and a line segment) whose angle of intersection is $\alpha$. Given a (closed) triangle $T$ , find the greatest $\alpha$ such that any two points in $T$ are contained in an $\alpha$-set $S \subset T .$
There are $20$ cities in the County of Newton. Their populations are shown in the bar chart below. The average population of all the cities is indicated by the horizontal dashed line. Which of the following is closest to the total population of all $20$ cities?
[asy]
// made by SirCalcsALot
size(300);
pen shortdashed=linetype(new real[] {6,6});
// axis
draw((0,0)--(0,9300), linewidth(1.25));
draw((0,0)--(11550,0), linewidth(1.25));
for (int i = 2000; i < 9000; i = i + 2000) {
draw((0,i)--(11550,i), linewidth(0.5)+1.5*grey);
label(string(i), (0,i), W);
}
for (int i = 500; i < 9300; i=i+500) {
draw((0,i)--(150,i),linewidth(1.25));
if (i % 2000 == 0) {
draw((0,i)--(250,i),linewidth(1.25));
}
}
int[] data = {8750, 3800, 5000, 2900, 6400, 7500, 4100, 1400, 2600, 1470, 2600, 7100, 4070, 7500, 7000, 8100, 1900, 1600, 5850, 5750};
int data_length = 20;
int r = 550;
for (int i = 0; i < data_length; ++i) {
fill(((i+1)*r,0)--((i+1)*r, data[i])--((i+1)*r,0)--((i+1)*r, data[i])--((i+1)*r,0)--((i+1)*r, data[i])--((i+2)*r-100, data[i])--((i+2)*r-100,0)--cycle, 1.5*grey);
draw(((i+1)*r,0)--((i+1)*r, data[i])--((i+1)*r,0)--((i+1)*r, data[i])--((i+1)*r,0)--((i+1)*r, data[i])--((i+2)*r-100, data[i])--((i+2)*r-100,0));
}
draw((0,4750)--(11450,4750),shortdashed);
label("Cities", (11450*0.5,0), S);
label(rotate(90)*"Population", (0,9000*0.5), 10*W);
[/asy]
$\textbf{(A) }65{,}000 \qquad \textbf{(B) }75{,}000 \qquad \textbf{(C) }85{,}000 \qquad \textbf{(D) }95{,}000 \qquad \textbf{(E) }105{,}000$
Let $O_1O_2O_3$ be an acute angled triangle.Let $\omega_1$, $\omega_2$, $\omega_3$ be the circles with centres $O_1$, $O_2$, $O_3$ respectively such that any of two are tangent to each other. Circumcircle of $O_1O_2O_3$ intersects $\omega_1$ at $A_1$ and $B_1$, $\omega_2$ at $A_2$ and $B_2$, $\omega_3$ at $A_3$ and $B_3$ respectively. Prove that the incenter of triangle which can be constructed by lines $A_1B_1$, $A_2B_2$, $A_3B_3$ and the incenter of $O_1O_2O_3$ are coincide.
Let $a, b$, and $c$ be positive real numbers not greater than $2$. Prove the inequality $\frac{abc}{a + b + c} \le \frac43$
Find all positive integers $n$ for which the number $1!+2!+3!+\cdots+n!$ is a perfect power of an integer.
John has cut out these two polygons made out of unit squares. He joins them to each other to form a larger polygon (but they can't overlap). Find the smallest possible perimeter this larger polygon can have. He can rotate and reflect the cut out polygons.
Given that \[34! = 95232799cd96041408476186096435ab000000_{(10)},\] determine the digits $a, b, c$, and $d$.
What is the number of ordered triples $(a,b,c)$ of positive integers, with $a\le b\le c\le 9$, such that there exists a (non-degenerate) triangle $\triangle ABC$ with an integer inradius for which $a$, $b$, and $c$ are the lengths of the altitudes from $A$ to $\overline{BC}$, $B$ to $\overline{AC}$, and $C$ to $\overline{AB}$, respectively? (Recall that the inradius of a triangle is the radius of the largest possible circle that can be inscribed in the triangle.)
$
\textbf{(A) }2\qquad
\textbf{(B) }3\qquad
\textbf{(C) }4\qquad
\textbf{(D) }5\qquad
\textbf{(E) }6\qquad
$
A sequence $(a_n)_{n\ge0}$ satisfies $a_{m+n}+a_{m-n}=\frac12\left(a_{2m}+a_{2n}\right)$ for all integers $m,n$ with $m\ge n\ge0$. Given that $a_1=1$, find $a_{2003}$.
A train travels a certain distance at a constant speed. Whose speed is increased by $10$ kilometers per hour, the trip can be made $40$ minutes faster. If, on the other hand, the speed is reduced by $10$ kilometers per hour, the trip takes $1$ hour further. How long is the distance traveled?
Let $\Gamma$ be a circle with center $A$, radius $1$ and diameter $BX$. Let $\Omega$ be a circle with center $C$, radius $1$ and diameter $DY $, where $X$ and $Y$ are on the same side of $AC$. $\Gamma$ meets $\Omega$ at two points, one of which is $Z$. The lines tangent to $\Gamma$ and $\Omega$ that pass through $Z$ cut out a sector of the plane containing no part of either circle and with angle $60^\circ$. If $\angle XY C = \angle CAB$ and $\angle XCD = 90^\circ$, then the length of $XY$ can be written in the form $\tfrac{\sqrt a+\sqrt b}{c}$ for integers $a, b, c$ where $\gcd(a, b, c) = 1$. Find $a + b + c$.
For any two rational numbers $ p$ and $ q$ in the interval $ (0,1)$ and function $ f$, there is always $ \displaystyle f \left( \frac{p\plus{}q}{2} \right) \leq \frac{f(p) \plus{} f(q)}{2}$. Then prove that for any rational numbers $ \lambda, x_1, x_2 \in (0,1)$, there is always:
\[ f( \lambda x_1 \plus{} (1\minus{}\lambda) x_2 ) \leq \lambda f(x_i) \plus{} (1\minus{}\lambda) f(x_2)\]
Points $A, B, C, D$ on the plane do not form a rectangle. Let the sidelengths of triangle $T$ equal $AB+CD$, $AC+BD$, $AD+BC$. Prove that the triangle $T$ is acute-angled.
A three-quarter sector of a circle of radius $4$ inches together with its interior can be rolled up to form the lateral surface area of a right circular cone by taping together along the two radii shown. What is the volume of the cone in cubic inches?
[asy]
draw(Arc((0,0), 4, 0, 270));
draw((0,-4)--(0,0)--(4,0));
label("$4$", (2,0), S);
[/asy]
$\textbf{(A)}\ 3\pi \sqrt5 \qquad\textbf{(B)}\ 4\pi \sqrt3 \qquad\textbf{(C)}\ 3 \pi \sqrt7 \qquad\textbf{(D)}\ 6\pi \sqrt3 \qquad\textbf{(E)}\ 6\pi \sqrt7$
Let $x_1$ and $x_2$ be the roots of the equation $x^2 + 3x + 1 = 0$. Compute \[\left(\frac{x_1}{x_2 + 1}\right)^2 + \left(\frac{x_2}{x_1 + 1}\right)^2\]