problem stringlengths 10 5.15k | answer stringlengths 0 1.22k | solution stringlengths 0 11.1k | reward float64 0 1 | length float64 172 8.19k | correct_length float64 -1 8.19k | incorrect_length float64 -1 8.19k |
|---|---|---|---|---|---|---|
Point $B$ lies on line segment $\overline{AC}$ with $AB=16$ and $BC=4$. Points $D$ and $E$ lie on the same side of line $AC$ forming equilateral triangles $\triangle ABD$ and $\triangle BCE$. Let $M$ be the midpoint of $\overline{AE}$, and $N$ be the midpoint of $\overline{CD}$. The area of $\triangle BMN$ is $x$. Find... | 64 | 1. **Identify Key Properties of the Triangles**:
- Since $\triangle ABD$ and $\triangle BCE$ are equilateral, we have $AB = BD = 16$ and $BC = CE = 4$.
- The angles $\angle ABE$ and $\angle DBC$ are both $120^\circ$ because they are supplementary to the $60^\circ$ angles in the equilateral triangles.
2. **Congru... | 0 | 3,586 | -1 | 3,586 |
In the complex plane, the vertices of the right-angled triangle $\triangle ABC$ correspond to the complex numbers $z+1$, $2z+1$, and $(z+1)^2$, with $A$ being the right-angled vertex, and $|z|=2$. Define the set $M=\left\{m \mid z^{m} \in \mathbf{R}, m \in \mathbf{N}_{+}\right\}$ and set $P=\left\{x \mid x=\frac{1}{2^{... | 1/7 | 0.8125 | 4,362.1875 | 4,294.769231 | 4,654.333333 | |
Chris and Paul each rent a different room of a hotel from rooms $1-60$. However, the hotel manager mistakes them for one person and gives "Chris Paul" a room with Chris's and Paul's room concatenated. For example, if Chris had 15 and Paul had 9, "Chris Paul" has 159. If there are 360 rooms in the hotel, what is the pro... | \frac{153}{1180} | There are $60 \cdot 59=3540$ total possible outcomes, and we need to count the number of these which concatenate into a number at most 60. Of these, $9 \cdot 8$ result from both Chris and Paul getting one-digit room numbers. If Chris gets a two-digit number, then he must get a number at most 35 and Paul should get a on... | 0.0625 | 7,236.25 | 7,247 | 7,235.533333 |
On the number line, point $A$ represents $-4$, point $B$ represents $2$. Find the expression that represents the distance between points $A$ and $B$. | 2 - (-4) | 0 | 309.875 | -1 | 309.875 | |
Ellina has twelve blocks, two each of red ($\textbf{R}$), blue ($\textbf{B}$), yellow ($\textbf{Y}$), green ($\textbf{G}$), orange ($\textbf{O}$), and purple ($\textbf{P}$). Call an arrangement of blocks $\textit{even}$ if there is an even number of blocks between each pair of blocks of the same color. For example, the... | 247 | We can simply use constructive counting. First, let us place the red balls; choose the first slot in $12$ ways, and the second in $6$ ways, because the number is cut in half due to the condition in the problem. This gives $12 \cdot 6$ ways to place the blue balls. Similarly, there are $10 \cdot 5$ ways to place the blu... | 0.125 | 7,887.125 | 6,679 | 8,059.714286 |
Compute the smallest base-10 positive integer greater than 5 that is a palindrome when written in both base 2 and 4. | 15 | 0.5625 | 5,399.875 | 5,420.333333 | 5,373.571429 | |
Let $x$ be a real number. Find the maximum value of $2^{x(1-x)}$. | \sqrt[4]{2} | Consider the function $2^{y}$. This is monotonically increasing, so to maximize $2^{y}$, you simply want to maximize $y$. Here, $y=x(1-x)=-x^{2}+x$ is a parabola opening downwards. The vertex of the parabola occurs at $x=(-1) /(-2)=1 / 2$, so the maximum value of the function is $2^{(1 / 2)(1 / 2)}=\sqrt[4]{2}$. | 0.8125 | 3,232.0625 | 2,716.153846 | 5,467.666667 |
Find all real numbers $x$ which satisfy \[\frac{x-1}{x-3} \ge 2.\](Give your answer in interval notation.) | (3, 5] | 0.875 | 4,505.125 | 3,978.428571 | 8,192 | |
Given that all terms are positive in the geometric sequence $\{a_n\}$, and the sum of the first $n$ terms is $S_n$, if $S_1 + 2S_5 = 3S_3$, then the common ratio of $\{a_n\}$ equals \_\_\_\_\_\_. | \frac{\sqrt{2}}{2} | 0 | 5,096.5 | -1 | 5,096.5 | |
Given a cube, calculate the total number of pairs of diagonals on its six faces, where the angle formed by each pair is $60^{\circ}$. | 48 | 0 | 8,106.3125 | -1 | 8,106.3125 | |
A cube has side length $6$. Its vertices are alternately colored black and purple, as shown below. What is the volume of the tetrahedron whose corners are the purple vertices of the cube? (A tetrahedron is a pyramid with a triangular base.)
[asy]
import three;
real t=-0.05;
triple A,B,C,D,EE,F,G,H;
A = (0,0,0);
B = (c... | 72 | 0.625 | 6,682.1875 | 5,776.3 | 8,192 | |
An ant starts at one vertex of an octahedron and moves along the edges according to a similar rule: at each vertex, the ant chooses one of the four available edges with equal probability, and all choices are independent. What is the probability that after six moves, the ant ends at the vertex exactly opposite to where ... | \frac{1}{128} | 0 | 8,192 | -1 | 8,192 | |
If the line $ax - by + 2 = 0$ $(a > 0, b > 0)$ passes through the center of the circle ${x}^{2} + {y}^{2} + 4x - 4y - 1 = 0$, find the minimum value of $\frac{2}{a} + \frac{3}{b}$. | 5 + 2 \sqrt{6} | 0.9375 | 4,885.9375 | 4,665.533333 | 8,192 | |
The Lucas numbers $L_n$ are given by the recursion $L_0 = 2, L_1 = 1$, and $L_n = L_{n-1} + L_{n-2}$. Find the units digit of $L_{L_{10}}$. | 4 | 0.5 | 6,718.4375 | 5,244.875 | 8,192 | |
A regular tetrahedron has a square shadow of area 16 when projected onto a flat surface (light is shone perpendicular onto the plane). Compute the sidelength of the regular tetrahedron. | 4 \sqrt{2} | Imagine the shadow of the skeleton of the tetrahedron (i.e. make the entire tetrahedron translucent except for the edges). The diagonals of the square shadow must correspond to a pair of opposite edges of the tetrahedron. Both of these edges must be parallel to the plane - if they weren't, then edges corresponding to t... | 0.0625 | 8,086.625 | 6,506 | 8,192 |
Let $x = .123456789101112....998999$, where the digits are obtained by writing the integers $1$ through $999$ in order. The $1983$rd digit to the right of the decimal point is | 7 | 1. **Identify the segments of digits**: We start by identifying the segments of digits formed by consecutive integers:
- Segment $A$: This consists of the one-digit numbers from $1$ to $9$. There are $9$ numbers, each contributing $1$ digit, so there are $9$ digits in total in this segment.
- Segment $B$: This co... | 0.5 | 6,647.75 | 5,103.5 | 8,192 |
The sum of the base-10 logarithms of the divisors of $10^n$ is $792$. What is $n$? | 11 |
To solve the problem, we need to find the value of $n$ such that the sum of the base-$10$ logarithms of the divisors of $10^n$ equals $792$.
#### Step 1: Understanding the divisors of $10^n$
$10^n = 2^n \cdot 5^n$. Any divisor of $10^n$ can be expressed in the form $2^a \cdot 5^b$ where $0 \leq a \leq n$ and $0 \leq ... | 1 | 2,383.5 | 2,383.5 | -1 |
If $2x-3y-z=0$ and $x+3y-14z=0, z \neq 0$, the numerical value of $\frac{x^2+3xy}{y^2+z^2}$ is: | 7 | 1. **Identify the equations and the expression to evaluate**: We are given two equations:
\[ 2x - 3y - z = 0 \]
\[ x + 3y - 14z = 0 \]
and we need to find the value of:
\[ \frac{x^2 + 3xy}{y^2 + z^2} \]
2. **Choose a value for $z$**: Since $z \neq 0$, let's choose $z = 1$ for simplicity.
3. **Substitute $... | 1 | 1,968.125 | 1,968.125 | -1 |
Let $x_1< x_2 < x_3$ be the three real roots of the equation $\sqrt{2014} x^3 - 4029x^2 + 2 = 0$. Find $x_2(x_1+x_3)$. | 2 | 0 | 8,192 | -1 | 8,192 | |
When a number is divided by 3, the result is 50 more than if the number had been divided by 4. What is the number? | 600 | 1 | 1,497 | 1,497 | -1 | |
Let $a,$ $b,$ $c,$ $d,$ $e$ be positive real numbers such that $a^2 + b^2 + c^2 + d^2 + e^2 = 100.$ Let $N$ be the maximum value of
\[ac + 3bc + 4cd + 8ce,\]and let $a_N,$ $b_N$, $c_N,$ $d_N,$ $e_N$ be the values of $a,$ $b,$ $c,$ $d,$ $e,$ respectively, that produce the maximum value of $N.$ Find $N + a_N + b_N + c_... | 16 + 150\sqrt{10} + 5\sqrt{2} | 0 | 8,192 | -1 | 8,192 | |
Under the call for the development of the western region by the country, a certain western enterprise received a $4$ million yuan interest-free loan for equipment renewal. It is predicted that after the equipment renewal, the income of the enterprise in the first month is $200,000$. In the following $5$ months, the inc... | 10 | 0.125 | 7,977.8125 | 7,398.5 | 8,060.571429 | |
An geometric sequence $\{a_n\}$ has 20 terms, where the product of the first four terms is $\frac{1}{128}$, and the product of the last four terms is 512. The product of all terms in this geometric sequence is \_\_\_\_\_\_. | 32 | 0.625 | 6,316.5 | 5,191.2 | 8,192 | |
A rectangular yard contains two flower beds in the shape of congruent isosceles right triangles. The remainder of the yard has a trapezoidal shape. The parallel sides of the trapezoid have lengths $18$ and $30$ meters. What fraction of the yard is occupied by the flower beds?
A) $\frac{1}{6}$
B) $\frac{1}{5}$
C) $\frac... | \frac{1}{5} | 0 | 5,545.875 | -1 | 5,545.875 | |
In a directed graph with $2013$ vertices, there is exactly one edge between any two vertices and for every vertex there exists an edge outwards this vertex. We know that whatever the arrangement of the edges, from every vertex we can reach $k$ vertices using at most two edges. Find the maximum value of $k$ . | 2012 | 0.0625 | 8,064.625 | 6,893 | 8,142.733333 | |
A circle passes through the point $(0,1),$ and is tangent to the parabola $y = x^2$ at $(2,4).$ Find the center of the circle.
[asy]
unitsize(0.4 cm);
real parab (real x) {
return(x^2);
}
draw(graph(parab,-3.5,3.5));
draw(Circle((-16/5,53/10),13*sqrt(17)/10));
dot((0,1));
dot("$(2,4)$", (2,4), E);
[/asy] | \left( -\frac{16}{5}, \frac{53}{10} \right) | 1 | 3,772.4375 | 3,772.4375 | -1 | |
In the independent college admissions process, a high school has obtained 5 recommendation spots, with 2 for Tsinghua University, 2 for Peking University, and 1 for Fudan University. Both Peking University and Tsinghua University require the participation of male students. The school selects 3 male and 2 female student... | 24 | 0 | 7,983.6875 | -1 | 7,983.6875 | |
Given a moving point $E$ such that the product of the slopes of the lines from $E$ to points $A(2,0)$ and $B(-2,0)$ is $- \frac {1}{4}$, and the trajectory of point $E$ is curve $C$.
$(1)$ Find the equation of curve $C$;
$(2)$ Draw a line $l$ through point $D(1,0)$ that intersects curve $C$ at points $P$ and $Q$. F... | \frac {1}{4} | 0.8125 | 6,460.25 | 6,060.615385 | 8,192 | |
Find the number of positive integers less than $2000$ that are neither $5$-nice nor $6$-nice. | 1333 | 0.3125 | 6,210.25 | 3,767 | 7,320.818182 | |
Define $g$ by $g(x) = 3x + 2$. If $g(x) = f^{-1}(x) - 5$ and $f^{-1}(x)$ is the inverse of the function $f(x) = cx + d$, find $7c + 3d$. | -\frac{14}{3} | 1 | 2,801 | 2,801 | -1 | |
For how many integers \( n \) between 1 and 100 is the greatest common divisor (gcd) of 21 and \( n \) equal to 7? | 10 | 1 | 2,865.75 | 2,865.75 | -1 | |
A spiral staircase turns $180^\circ$ as it rises 8 feet. The radius of the staircase is 4 feet. What is the number of feet in the length of the handrail? Express your answer as a decimal to the nearest tenth. | 14.9 | 0.75 | 4,801.875 | 3,671.833333 | 8,192 | |
A dealer bought $n$ radios for $d$ dollars, $d$ a positive integer. He contributed two radios to a community bazaar at half their cost. The rest he sold at a profit of $8 on each radio sold. If the overall profit was $72, then the least possible value of $n$ for the given information is: | 12 | 1. **Calculate the cost and selling price of the radios:**
- The dealer bought $n$ radios for $d$ dollars, so the cost per radio is $\frac{d}{n}$.
- He sold two radios at half their cost, which is $\frac{1}{2} \times \frac{d}{n} = \frac{d}{2n}$ each. Therefore, the total income from these two radios is $2 \times ... | 0.875 | 5,199.25 | 4,771.714286 | 8,192 |
Given circle $O: x^2+y^2=r^2(r>0)$, $A(x_1, y_1)$, $B(x_2, y_2)$ are two points on circle $O$, satisfying $x_1+y_1=x_2+y_2=3$, $x_1x_2+y_1y_2=-\frac{1}{2}r^2$, calculate the value of $r$. | 3\sqrt{2} | 0.875 | 4,412.25 | 3,872.285714 | 8,192 | |
Angle ABC is a right angle. The diagram shows four quadrilaterals, where three are squares on each side of triangle ABC, and one square is on the hypotenuse. The sum of the areas of all four squares is 500 square centimeters. What is the number of square centimeters in the area of the largest square? | \frac{500}{3} | 0.5625 | 5,036.875 | 4,565.111111 | 5,643.428571 | |
Among 100 young men, if at least one of the height or weight of person A is greater than that of person B, then A is considered not inferior to B. Determine the maximum possible number of top young men among these 100 young men. | 100 | 0.0625 | 8,122.8125 | 8,192 | 8,118.2 | |
In trapezoid $PQRS$, the lengths of the bases $PQ$ and $RS$ are 10 and 23, respectively. The legs of the trapezoid are extended beyond $P$ and $Q$ to meet at point $T$. What is the ratio of the area of triangle $TPQ$ to the area of trapezoid $PQRS$? Express your answer as a common fraction. | \frac{100}{429} | 0.4375 | 6,919.3125 | 5,532.714286 | 7,997.777778 | |
In the Cartesian coordinate system $xOy$, it is known that the line
$$
\begin{cases}
x=-\frac{3}{2}+\frac{\sqrt{2}}{2}l\\
y=\frac{\sqrt{2}}{2}l
\end{cases}
$$
(with $l$ as the parameter) intersects with the curve
$$
\begin{cases}
x=\frac{1}{8}t^{2}\\
y=t
\end{cases}
$$
(with $t$ as the parameter) at points $A$ and ... | 4\sqrt{2} | 0.25 | 4,892.5 | 5,163.25 | 4,802.25 | |
Evaluate $i^{11} + i^{16} + i^{21} + i^{26} + i^{31}$. | -i | 0.875 | 4,527.5 | 4,004 | 8,192 | |
From the numbers 1, 2, 3, 4, 5, a five-digit number is formed with digits not repeating. What is the probability of randomly selecting a five-digit number $\overline{abcde}$ that satisfies the condition "$a < b > c < d > e$"? | 2/15 | 0.25 | 6,781.25 | 3,869.75 | 7,751.75 | |
Find the greatest common divisor of $10293$ and $29384$. | 1 | 0.9375 | 5,022.75 | 4,811.466667 | 8,192 | |
A [i]permutation[/i] of the set of positive integers $[n] = \{1, 2, . . . , n\}$ is a sequence $(a_1 , a_2 , \ldots, a_n ) $ such that each element of $[n]$ appears precisely one time as a term of the sequence. For example, $(3, 5, 1, 2, 4)$ is a permutation of $[5]$. Let $P (n)$ be the number of permutations of $[n]$ ... | 4489 |
To solve this problem, we will analyze the given condition involving permutations and perfect squares to determine the smallest \( n \) such that \( P(n) \), the number of permutations of \([n] = \{1, 2, \ldots, n\}\) where \( ka_k \) is a perfect square for all \( 1 \leq k \leq n \), is a multiple of 2010.
### Step-... | 0 | 8,192 | -1 | 8,192 |
There exists a constant $k$ so that the minimum value of
\[4x^2 - 6kxy + (3k^2 + 2) y^2 - 4x - 4y + 6\]over all real numbers $x$ and $y$ is 0. Find $k.$ | 2 | 0.125 | 7,854.6875 | 5,493.5 | 8,192 | |
At the first site, high-class equipment was used, while at the second site, first-class equipment was used, with the amount of high-class equipment being less than that of the first-class. Initially, 30% of the equipment from the first site was transferred to the second site. Then, 10% of the equipment that ended up at... | 17 | 0 | 8,192 | -1 | 8,192 | |
If two distinct members of the set $\{ 3, 7, 21, 27, 35, 42, 51 \}$ are randomly selected and multiplied, what is the probability that the product is a multiple of 63? Express your answer as a common fraction. | \frac{3}{7} | 0.0625 | 8,135.625 | 7,290 | 8,192 | |
Find the sum of all positive integers $n$ such that there exists an integer $b$ with $|b| \neq 4$ such that the base -4 representation of $n$ is the same as the base $b$ representation of $n$. | 1026 | All 1 digit numbers, $0,1,2,3$, are solutions when, say, $b=5$. (Of course, $d \in \{0,1,2,3\}$ works for any base $b$ of absolute value greater than $d$ but not equal to 4 .) Consider now positive integers $n=\left(a_{d} \ldots a_{1} a_{0}\right)_{4}$ with more than one digit, so $d \geq 1, a_{d} \neq 0$, and $0 \leq ... | 0 | 8,192 | -1 | 8,192 |
A regular tetrahedron with four equilateral triangular faces has a sphere inscribed within it and another sphere circumscribed about it. Each of the four faces of the tetrahedron is tangent to a unique external sphere which is also tangent to the circumscribed sphere, but now these external spheres have radii larger th... | 0.5 | 0 | 7,895.625 | -1 | 7,895.625 | |
Let $g(x) = 2x^7 - 3x^3 + 4x - 8.$ If $g(6) = 12,$ find $g(-6).$ | -28 | 0.3125 | 7,350.875 | 5,500.4 | 8,192 | |
For the inequality system about $y$ $\left\{\begin{array}{l}{2y-6≤3(y-1)}\\{\frac{1}{2}a-3y>0}\end{array}\right.$, if it has exactly $4$ integer solutions, then the product of all integer values of $a$ that satisfy the conditions is ______. | 720 | 0.25 | 6,871 | 4,810.25 | 7,557.916667 | |
The matrix
\[\begin{pmatrix} 3 & -1 \\ c & d \end{pmatrix}\]is its own inverse. Enter the ordered pair $(c,d).$ | (8,-3) | 1 | 2,149.3125 | 2,149.3125 | -1 | |
Suppose that $x$ and $y$ are positive numbers with $xy=\frac{1}{9}$, $x(y+1)=\frac{7}{9}$, and $y(x+1)=\frac{5}{18}$. What is the value of $(x+1)(y+1)$? | \frac{35}{18} | If we multiply the second and third equations together, we obtain $x(y+1)y(y+1)=\frac{7}{9} \cdot \frac{5}{18}$ or $xy(x+1)(y+1)=\frac{35}{162}$. From the first equation, $xy=\frac{1}{9}$. Therefore, $\frac{1}{9}(x+1)(y+1)=\frac{35}{162}$ or $(x+1)(y+1)=9\left(\frac{35}{162}\right)=\frac{35}{18}$. | 1 | 2,975.5625 | 2,975.5625 | -1 |
In the Cartesian coordinate system $xOy$, the curve $C$ is given by the parametric equations $ \begin{cases} x=3\cos \alpha \\ y=\sin \alpha \end{cases} $ (where $\alpha$ is the parameter). In the polar coordinate system with the origin as the pole and the positive x-axis as the polar axis, the polar equation of line $... | \frac {18 \sqrt {2}}{5} | 0 | 6,494.5 | -1 | 6,494.5 | |
Let
\[f(x) = \left\{
\begin{array}{cl}
x + 5 & \text{if $x < 15$}, \\
3x - 1 & \text{if $x \ge 15$}.
\end{array}
\right.\]Find $f^{-1}(10) + f^{-1}(50).$ | 22 | 1 | 1,988 | 1,988 | -1 | |
At a tribal council meeting, 60 people spoke in turn. Each of them said only one phrase. The first three speakers all said the same thing: "I always tell the truth!" The next 57 speakers also said the same phrase: "Among the previous three speakers, exactly two of them told the truth." What is the maximum number of spe... | 45 | 0.25 | 7,957.6875 | 7,569 | 8,087.25 | |
Use Horner's method to find the value of the polynomial $f(x) = -6x^4 + 5x^3 + 2x + 6$ at $x=3$, denoted as $v_3$. | -115 | 0 | 3,438.6875 | -1 | 3,438.6875 | |
When two numbers are sequentially and randomly picked from the set {1, 2, 3, 4}, what is the probability that the product of the two picked numbers is even? | \frac{5}{6} | 0.9375 | 4,735.0625 | 4,504.6 | 8,192 | |
A designer has 3 fabric colors he may use for a dress: red, green, and blue. Four different patterns are available for the dress. If each dress design requires exactly one color and one pattern, how many different dress designs are possible? | 12 | 1 | 1,051.5625 | 1,051.5625 | -1 | |
Find the minimum value of $n (n > 0)$ such that the function \\(f(x)= \begin{vmatrix} \sqrt {3} & \sin x \\\\ 1 & \cos x\\end{vmatrix} \\) when shifted $n$ units to the left becomes an even function. | \frac{5\pi}{6} | 0.375 | 7,853.75 | 7,290 | 8,192 | |
In the diagram below, points $A$, $B$, $C$, and $P$ are situated so that $PA=2$, $PB=3$, $PC=4$, and $BC=5$. What is the maximum possible area of $\triangle ABC$? [asy]
defaultpen(linewidth(0.8)); size(150);
pair B = (0,0), C = (5,0), A = (2,3), P = (2.2,2);
draw(A--B--C--cycle^^B--P^^C--P^^A--P);
label("$A$",A,N); lab... | 11 | 0.8125 | 6,100.4375 | 5,617.769231 | 8,192 | |
Let $ABCD$ be a convex quadrilateral with $AC=7$ and $BD=17$. Let $M, P, N, Q$ be the midpoints of sides $AB, BC, CD, DA$ respectively. Compute $MN^{2}+PQ^{2}$. | 169 | $MPNQ$ is a parallelogram whose side lengths are 3.5 and 8.5 so the sum of squares of its diagonals is $\frac{7^{2}+17^{2}}{2}=169$. | 0.5 | 6,059.375 | 3,926.75 | 8,192 |
Find the value of $h$ such that the following equation in base $h$ is true: $$\begin{array}{c@{}c@{}c@{}c@{}c@{}c} &&6&4&5&3_h\\ &+&7&5&1&2_h\\ \cline{2-6} &1&6&1&6&5_h.\\ \end{array}$$ | 8 | 0.5625 | 6,013.25 | 4,318.666667 | 8,192 | |
In the expansion of the binomial ${({(\frac{1}{x}}^{\frac{1}{4}}+{{x}^{2}}^{\frac{1}{3}})}^{n})$, the coefficient of the third last term is $45$. Find the coefficient of the term containing $x^{3}$. | 210 | 0.1875 | 7,349.875 | 3,700.666667 | 8,192 | |
Calculate the value of $1357 + 3571 + 5713 - 7135$. | 3506 | 0.5 | 5,824.625 | 3,457.25 | 8,192 | |
Point P is the intersection of the hyperbola $\frac{x^2}{a^2}-\frac{y^2}{b^2}=1$ ($a > 0, b > 0$) and the circle $x^2+y^2=a^2+b^2$ in the first quadrant. $F_1$ and $F_2$ are the left and right foci of the hyperbola, respectively, and $|PF_1|=3|PF_2|$. Calculate the eccentricity of the hyperbola. | \frac{\sqrt{10}}{2} | 0 | 7,132.4375 | -1 | 7,132.4375 | |
In the interval \\(\left[-\frac{\pi}{6}, \frac{\pi}{2}\right]\\), a number \\(x\\) is randomly selected. The probability that \\(\sin x + \cos x \in [1, \sqrt{2}]\\) is \_\_\_\_\_\_. | \frac{3}{4} | 0.4375 | 7,404.625 | 6,572.571429 | 8,051.777778 | |
If $a$ and $b$ are elements of the set ${ 1,2,3,4,5,6 }$ and $|a-b| \leqslant 1$, calculate the probability that any two people playing this game form a "friendly pair". | \dfrac{4}{9} | 0.0625 | 4,011.9375 | 2,838 | 4,090.2 | |
Determine the number of increasing sequences of positive integers $a_1 \le a_2 \le a_3 \le \cdots \le a_8 \le 1023$ such that $a_i-i$ is even for $1\le i \le 8$. The answer can be expressed as $\binom{m}{n}$ for some $m > n$. Compute the remainder when $m$ is divided by 1000. | 515 | 0.25 | 7,519.1875 | 5,500.75 | 8,192 | |
Out of 1200 people polled, $30\%$ do not like radio, and $10\%$ of the people who do not like radio also do not like music. How many people polled do not like both radio and music? | 36 | 1 | 1,444.125 | 1,444.125 | -1 | |
Jamar bought some pencils costing more than a penny each at the school bookstore and paid $1.43$. Sharona bought some of the same pencils and paid $1.87$. How many more pencils did Sharona buy than Jamar? | 4 | 1. **Calculate the difference in money spent by Sharona and Jamar:**
\[
1.87 - 1.43 = 0.44
\]
This means Sharona spent $\$0.44$ more than Jamar.
2. **Determine the possible number of extra pencils Sharona bought:**
Since the difference in their spending is $\$0.44$, the number of extra pencils bought by... | 1 | 1,698.3125 | 1,698.3125 | -1 |
How many times in a day is the angle between the hour and minute hands exactly $19^{\circ}$? | 44 | 0.25 | 7,777.875 | 6,537 | 8,191.5 | |
If $C_{n}^{2}A_{2}^{2} = 42$, find the value of $\dfrac{n!}{3!(n-3)!}$. | 35 | 0.8125 | 3,981.1875 | 3,374.692308 | 6,609.333333 | |
Consider the set of all triangles $OPQ$ where $O$ is the origin and $P$ and $Q$ are distinct points in the plane with nonnegative integer coordinates $(x,y)$ such that $29x + y = 2035$. Find the number of such distinct triangles whose area is a positive integer. | 1225 | 0.6875 | 6,112.375 | 5,377.181818 | 7,729.8 | |
Among the positive integers less than 1000, there are how many numbers that are perfect squares but not perfect cubes? | 28 | 0.875 | 3,615.5 | 2,961.714286 | 8,192 | |
For how many unordered sets $\{a, b, c, d\}$ of positive integers, none of which exceed 168, do there exist integers $w, x, y, z$ such that $(-1)^{w} a+(-1)^{x} b+(-1)^{y} c+(-1)^{z} d=168$? If your answer is $A$ and the correct answer is $C$, then your score on this problem will be $\left\lfloor 25 e^{\left.-3 \frac{|... | 761474 | As an approximation, we assume $a, b, c, d$ are ordered to begin with (so we have to divide by 24 later) and add to 168 with a unique choice of signs; then, it suffices to count $e+f+g+h=168$ with each $e, f, g, h$ in $[-168,168]$ and then divide by 24 (we drop the condition that none of them can be zero because it sho... | 0 | 8,192 | -1 | 8,192 |
How many $7$-digit palindromes (numbers that read the same backward as forward) can be formed using the digits $2$, $2$, $3$, $3$, $5$, $5$, $5$? | 6 | To solve this problem, we need to determine how many $7$-digit palindromes can be formed using the digits $2, 2, 3, 3, 5, 5, 5$. A $7$-digit palindrome has the form $\overline{abcdcba}$, where the digits are the same reading from left to right and right to left.
1. **Identify the middle digit**: Since the palindrome i... | 0.125 | 8,128.375 | 7,683 | 8,192 |
Calculate the winning rate per game;
List all possible outcomes;
Calculate the probability of satisfying the condition "$a+b+c+d \leqslant 2$". | \dfrac{11}{16} | 0.6875 | 6,329.4375 | 5,759.818182 | 7,582.6 | |
Points $A$ and $B$ are on parabola $y=4x^2+7x-1$, and the origin is the midpoint of $\overline{AB}$. Find the square of the length of $\overline{AB}$. | 50 | 0.9375 | 3,497.25 | 3,184.266667 | 8,192 | |
Find the sum of the distinct prime factors of $7^7 - 7^4$. | 24 | 0 | 2,740.625 | -1 | 2,740.625 | |
Evaluate the product $\frac{1}{3} \cdot \frac{9}{1} \cdot \frac{1}{27} \cdot \frac{81}{1} \dotsm \frac{1}{6561} \cdot \frac{19683}{1}$. | 729 | 0 | 7,604.5 | -1 | 7,604.5 | |
If Greg rolls six fair six-sided dice, what is the probability that he rolls more 2's than 5's? | \dfrac{16710}{46656} | 0 | 8,025.625 | -1 | 8,025.625 | |
How many lattice points lie on the hyperbola \( x^2 - y^2 = 1800^2 \)? | 150 | 0 | 8,192 | -1 | 8,192 | |
Adva is a regular tetrahedron with side length \( s \), and there are three spheres associated with it. The first sphere passes through the vertices of the tetrahedron, the second intersects the midpoints of the edges, and the third is inscribed such that it touches the faces of the tetrahedron. How do the surface area... | 9:3:1 | 0.4375 | 5,982.125 | 6,352 | 5,694.444444 | |
In triangle $ABC$, medians $AF$ and $BE$ intersect at angle $\theta = 60^\circ$, where $AF = 10$ and $BE = 15$. Calculate the area of triangle $ABC$.
A) $150\sqrt{3}$
B) $200\sqrt{3}$
C) $250\sqrt{3}$
D) $300\sqrt{3}$ | 200\sqrt{3} | 0 | 8,115.9375 | -1 | 8,115.9375 | |
There is only one value of $k$ for which the line $x=k$ intersects the graphs of $y=x^2+6x+5$ and $y=mx+b$ at two points which are exactly $5$ units apart. If the line $y=mx+b$ passes through the point $(1,6)$, and $b\neq 0$, find the equation of the line. Enter your answer in the form "$y = mx + b$". | y=10x-4 | 0.6875 | 6,212.4375 | 5,312.636364 | 8,192 | |
What is the sum of the greatest common divisor of 30 and 81 and the least common multiple of 36 and 12? | 39 | 1 | 2,148.9375 | 2,148.9375 | -1 | |
The number of integer solutions to the inequality $\log_{3}|x-2| < 2$. | 17 | 0.375 | 2,935.6875 | 2,482.333333 | 3,207.7 | |
Given a triangular prism $S-ABC$, where the base is an isosceles right triangle with $AB$ as the hypotenuse, $SA = SB = SC = 2$, and $AB = 2$, and points $S$, $A$, $B$, and $C$ all lie on a sphere centered at point $O$, find the distance from point $O$ to the plane $ABC$. | \frac{\sqrt{3}}{3} | 0 | 5,561.375 | -1 | 5,561.375 | |
Fill the numbers 1 to 16 into a $4 \times 4$ grid such that each number in a row is larger than the number to its left and each number in a column is larger than the number above it. Given that the numbers 4 and 13 are already placed in the grid, determine the number of different ways to fill the remaining 14 numbers. | 1120 | 0 | 8,192 | -1 | 8,192 | |
Rectangles \( A B C D, D E F G, C E I H \) have equal areas and integer sides. Find \( D G \) if \( B C = 19 \). | 380 | 0 | 8,100.75 | -1 | 8,100.75 | |
Given that $\log_{10}2 \approx 0.30103$ , find the smallest positive integer $n$ such that the decimal representation of $2^{10n}$ does not begin with the digit $1$ . | 30 | 0.3125 | 7,835.375 | 7,352.4 | 8,054.909091 | |
Given that $O$ is the coordinate origin, and vectors $\overrightarrow{OA}=(\sin α,1)$, $\overrightarrow{OB}=(\cos α,0)$, $\overrightarrow{OC}=(-\sin α,2)$, and point $P$ satisfies $\overrightarrow{AB}=\overrightarrow{BP}$.
(I) Denote function $f(α)=\overrightarrow{PB} \cdot \overrightarrow{CA}$, find the minimum positi... | \frac{\sqrt{74}}{5} | 0 | 3,921.625 | -1 | 3,921.625 | |
A seven-digit phone number \(d_{1} d_{2} d_{3}-d_{4} d_{5} d_{6} d_{7}\) is called "memorable" if the initial three digits \(d_{1} d_{2} d_{3}\) match either the middle three digits \(d_{4} d_{5} d_{6}\) or the last three digits \(d_{5} d_{6} d_{7}\) (it is possible for all three groups to be the same). Each digit can ... | 19990 | 0.25 | 7,471.125 | 6,843.25 | 7,680.416667 | |
Theo's watch is 10 minutes slow, but he believes it is 5 minutes fast. Leo's watch is 5 minutes fast, but he believes it is 10 minutes slow. At the same moment, each of them looks at his own watch. Theo thinks it is 12:00. What time does Leo think it is?
A) 11:30
B) 11:45
C) 12:00
D) 12:30
E) 12:45 | 12:30 | 0 | 7,254.5 | -1 | 7,254.5 | |
In trapezoid $ABCD$ with $\overline{BC}\parallel\overline{AD}$, let $BC = 1500$ and $AD = 3000$. Let $\angle A = 30^\circ$, $\angle D = 60^\circ$, and $P$ and $Q$ be the midpoints of $\overline{BC}$ and $\overline{AD}$, respectively. Determine the length $PQ$. | 750 | 0.9375 | 4,775.9375 | 4,659.533333 | 6,522 | |
Find all 4-digit numbers $n$ , such that $n=pqr$ , where $p<q<r$ are distinct primes, such that $p+q=r-q$ and $p+q+r=s^2$ , where $s$ is a prime number. | 2015 | 0.0625 | 8,049.4375 | 5,911 | 8,192 | |
An object is moving towards a converging lens with a focal length of \( f = 10 \ \mathrm{cm} \) along the line defined by the two focal points at a speed of \( 2 \ \mathrm{m/s} \). What is the relative speed between the object and its image when the object distance is \( t = 30 \ \mathrm{cm} \)? | 1.5 | 0 | 6,525.6875 | -1 | 6,525.6875 | |
When three standard dice are tossed, the numbers $a, b, c$ are obtained. Find the probability that $abc = 72$. | \frac{1}{24} | 0.125 | 8,192 | 8,192 | 8,192 | |
Two integers are relatively prime if they don't share any common factors, i.e. if their greatest common divisor is 1. Define $\varphi(n)$ as the number of positive integers that are less than $n$ and relatively prime to $n$. Define $\varphi_{d}(n)$ as the number of positive integers that are less than $d n$ and relativ... | 41 | For fixed $n$, the pattern of integers relatively prime to $n$ repeats every $n$ integers, so $\varphi_{d}(n)=d \varphi(n)$. Therefore the expression in the problem equals $\varphi(n)^{3}$. The cube root of 64000 is $40 . \varphi(p)=p-1$ for any prime $p$. Since 40 is one less than a prime, the least $n$ such that $\va... | 0.0625 | 7,972.75 | 4,684 | 8,192 |
Let $a_n$ be the number obtained by writing the integers 1 to $n$ from left to right. For instance, $a_4 = 1234$ and $a_{12} = 123456789101112$. For $1 \le k \le 150$, how many $a_k$ are divisible by both 3 and 5? | 10 | 0 | 8,192 | -1 | 8,192 | |
On a straight street, there are 5 buildings numbered from left to right as 1, 2, 3, 4, 5. The k-th building has exactly k (k=1, 2, 3, 4, 5) workers from Factory A, and the distance between two adjacent buildings is 50 meters. Factory A plans to build a station on this street. To minimize the total distance all workers ... | 150 | 0.1875 | 7,730.25 | 5,729.333333 | 8,192 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.