text stringlengths 1 5.21k |
|---|
A regular hexagon has side length 6. Congruent arcs with radius 3 are drawn with the center at each of the vertices, creating circular sectors as shown. The region inside the hexagon but outside the sectors is shaded as shown. What is the area of the shaded region?[asy] size(125); defaultpen(linewidth(0.8)); path hexagon=(2*dir(0))--(2*dir(60))--(2*dir(120))--(2*dir(180))--(2*dir(240))--(2*dir(300))--cycle; fill(hexagon,lightgrey); for(int i=0;i<=5;i=i+1) { path arc=2*dir(60*i)--arc(2*dir(60*i),1120+60*i,240+60*i)--cycle; unfill(arc); draw(arc); } draw(hexagon,linewidth(1.8));[/asy] |
C |
Equilateral $\triangle ABC$ has side length $1$, and squares $ABDE$, $BCHI$, $CAFG$ lie outside the triangle. What is the area of hexagon $DEFGHI$?[asy] import graph; size(6cm); pen dps = linewidth(0.7) + fontsize(8); defaultpen(dps); pair B = (0,0); pair C = (1,0); pair A = rotate(60,B)*C; pair E = rotate(270,A)*B; pair D = rotate(270,E)*A; pair F = rotate(90,A)*C; pair G = rotate(90,F)*A; pair I = rotate(270,B)*C; pair H = rotate(270,I)*B; draw(A--B--C--cycle); draw(A--E--D--B); draw(A--F--G--C); draw(B--I--H--C); draw(E--F); draw(D--I); draw(I--H); draw(H--G); label("$A$",A,N); label("$B$",B,SW); label("$C$",C,SE); label("$D$",D,W); label("$E$",E,W); label("$F$",F,E); label("$G$",G,E); label("$H$",H,SE); label("$I$",I,SW); [/asy] |
C |
The $y$-intercepts, $P$ and $Q$, of two perpendicular lines intersecting at the point $A(6,8)$ have a sum of zero. What is the area of $\triangle APQ$?$\textbf{(A)}\ 45\qquad\textbf{(B)}\ 48\qquad\textbf{(C)}\ 54\qquad\textbf{(D)}\ 60\qquad\textbf{(E)}\ 72$ |
D |
David drives from his home to the airport to catch a flight. He drives $35$ miles in the first hour, but realizes that he will be $1$ hour late if he continues at this speed. He increases his speed by $15$ miles per hour for the rest of the way to the airport and arrives $30$ minutes early. How many miles is the airport from his home?$\textbf{(A) }140\qquad \textbf{(B) }175\qquad \textbf{(C) }210\qquad \textbf{(D) }245\qquad \textbf{(E) }280\qquad$ |
C |
In rectangle $ABCD$, $AB=1$, $BC=2$, and points $E$, $F$, and $G$ are midpoints of $\overline{BC}$, $\overline{CD}$, and $\overline{AD}$, respectively. Point $H$ is the midpoint of $\overline{GE}$. What is the area of the shaded region?[asy] import graph; size(9cm); pen dps = fontsize(10); defaultpen(dps); pair D = (0,0); pair F = (1/2,0); pair C = (1,0); pair G = (0,1); pair E = (1,1); pair A = (0,2); pair B = (1,2); pair H = (1/2,1); // do not look pair X = (1/3,2/3); pair Y = (2/3,2/3); draw(A--B--C--D--cycle); draw(G--E); draw(A--F--B); draw(D--H--C); filldraw(H--X--F--Y--cycle,grey); label("$A$",A,NW); label("$B$",B,NE); label("$C$",C,SE); label("$D$",D,SW); label("$E$",E,E); label("$F$",F,S); label("$G$",G,W); label("$H$",H,N); label("$\frac12$",(0.25,0),S); label("$\frac12$",(0.75,0),S); label("$1$",(1,0.5),E); label("$1$",(1,1.5),E); [/asy] |
E |
Three fair six-sided dice are rolled. What is the probability that the values shown on two of the dice sum to the value shown on the remaining die?$\textbf{(A)}\ \dfrac16\qquad\textbf{(B)}\ \dfrac{13}{72}\qquad\textbf{(C)}\ \dfrac7{36}\qquad\textbf{(D)}\ \dfrac5{24}\qquad\textbf{(E)}\ \dfrac29$ |
D |
A square in the coordinate plane has vertices whose $y$-coordinates are $0$, $1$, $4$, and $5$. What is the area of the square?$\textbf{(A)}\ 16\qquad\textbf{(B)}\ 17\qquad\textbf{(C)}\ 25\qquad\textbf{(D)}\ 26\qquad\textbf{(E)}\ 27$ |
B |
Four cubes with edge lengths $1$, $2$, $3$, and $4$ are stacked as shown. What is the length of the portion of $\overline{XY}$ contained in the cube with edge length $3$?$\textbf{(A)}\ \dfrac{3\sqrt{33}}5\qquad\textbf{(B)}\ 2\sqrt3\qquad\textbf{(C)}\ \dfrac{2\sqrt{33}}3\qquad\textbf{(D)}\ 4\qquad\textbf{(E)}\ 3\sqrt2$ |
A |
The product $(8)(888\dots8)$, where the second factor has $k$ digits, is an integer whose digits have a sum of $1000$. What is $k$?$\textbf{(A)}\ 901\qquad\textbf{(B)}\ 911\qquad\textbf{(C)}\ 919\qquad\textbf{(D)}\ 991\qquad\textbf{(E)}\ 999$ |
D |
Positive integers $a$ and $b$ are such that the graphs of $y=ax+5$ and $y=3x+b$ intersect the $x$-axis at the same point. What is the sum of all possible $x$-coordinates of these points of intersection?$\textbf{(A)}\ {-20}\qquad\textbf{(B)}\ {-18}\qquad\textbf{(C)}\ {-15}\qquad\textbf{(D)}\ {-12}\qquad\textbf{(E)}\ {-8}$ |
E |
In rectangle $ABCD$, $AB=20$ and $BC=10$. Let $E$ be a point on $\overline{CD}$ such that $\angle CBE=15^\circ$. What is $AE$?$\textbf{(A)}\ \dfrac{20\sqrt3}3\qquad\textbf{(B)}\ 10\sqrt3\qquad\textbf{(C)}\ 18\qquad\textbf{(D)}\ 11\sqrt3\qquad\textbf{(E)}\ 20$ |
E |
A rectangular piece of paper whose length is $\sqrt3$ times the width has area $A$. The paper is divided into three 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] |
C |
A sequence of natural numbers is constructed by listing the first $4$, then skipping one, listing the next $5$, skipping $2$, listing $6$, skipping $3$, and, on the $n$th iteration, listing $n+3$ and skipping $n$. The sequence begins $1,2,3,4,6,7,8,9,10,13$. What is the $500000^{\text{th}}$ number in the sequence?$\textbf{(A)}\ 996506\qquad\textbf{(B)}\ 996507\qquad\textbf{(C)}\ 996508\qquad\textbf{(D)}\ 996509\qquad\textbf{(E)}\ 996510$ |
A |
The number $5^{867}$ is between $2^{2013}$ and $2^{2014}$. How many pairs of integers $(m,n)$ are there such that $1\leq m\leq 2012$ and \[5^n<2^m<2^{m+2}<5^{n+1}?\]$\textbf{(A) }278\qquad\textbf{(B) }279\qquad\textbf{(C) }280\qquad\textbf{(D) }281\qquad\textbf{(E) }282\qquad$ |
B |
What is the value of $(2^0-1+5^2+0)^{-1}\times5?$$\textbf{(A)}\ -125\qquad\textbf{(B)}\ -120\qquad\textbf{(C)}\ \frac{1}{5}\qquad\textbf{(D)}\ \frac{5}{24}\qquad\textbf{(E)}\ 25$ |
C |
A box contains a collection of triangular and square tiles. There are $25$ tiles in the box, containing $84$ edges total. How many square tiles are there in the box?$\textbf{(A)}\ 3\qquad\textbf{(B)}\ 5\qquad\textbf{(C)}\ 7\qquad\textbf{(D)}\ 9\qquad\textbf{(E)}\ 11$ |
D |
Ann made a 3-step staircase using 18 toothpicks as shown in the figure. How many toothpicks does she need to add to complete a 5-step staircase?[asy] unitsize(40); for(int i=0; i<3; i+=1) { draw((0,i+0.05)--(0,i+0.95)); draw((i+0.05,0)--(i+0.95,0)); for(int j=0; j<3-i; j+=1) { draw((i+1,j+0.05)--(i+1,j+0.95)); draw((i+0.05,j+1)--(i+0.95,j+1)); } } [/asy] |
D |
Pablo, Sofia, and Mia got some candy eggs at a party. Pablo had three times as many eggs as Sofia, and Sofia had twice as many eggs as Mia. Pablo decides to give some of his eggs to Sofia and Mia so that all three will have the same number of eggs. What fraction of his eggs should Pablo give to Sofia?$\textbf{(A)}\ \frac{1}{12}\qquad\textbf{(B)}\ \frac{1}{6}\qquad\textbf{(C)}\ \frac{1}{4}\qquad\textbf{(D)}\ \frac{1}{3}\qquad\textbf{(E)}\ \frac{1}{2}$ |
B |
Mr. Patrick teaches math to $15$ students. He was grading tests and found that when he graded everyone's test except Payton's, the average grade for the class was $80$. After he graded Payton's test, the test average became $81$. What was Payton's score on the test?$\textbf{(A)}\ 81\qquad\textbf{(B)}\ 85\qquad\textbf{(C)}\ 91\qquad\textbf{(D)}\ 94\qquad\textbf{(E)}\ 95$ |
E |
The sum of two positive numbers is $5$ times their difference. What is the ratio of the larger number to the smaller number?$\textbf{(A)}\ \frac{5}{4}\qquad\textbf{(B)}\ \frac{3}{2}\qquad\textbf{(C)}\ \frac{9}{5}\qquad\textbf{(D)}\ 2 \qquad\textbf{(E)}\ \frac{5}{2}$ |
B |
How many terms are there in the arithmetic sequence $13$, $16$, $19$, . . ., $70$, $73$?$\textbf{(A)}\ 20\qquad\textbf{(B)}\ 21\qquad\textbf{(C)}\ 24\qquad\textbf{(D)}\ 60\qquad\textbf{(E)}\ 61$ |
B |
Two years ago Pete was three times as old as his cousin Claire. 2 years before that, Pete was four times as old as Claire. In how many years will the ratio of their ages be $2$ : $1$?$\textbf{(A)}\ 2\qquad\textbf{(B)}\ 4\qquad\textbf{(C)}\ 5\qquad\textbf{(D)}\ 6\qquad\textbf{(E)}\ 8$ |
B |
Two right circular cylinders have the same volume. The radius of the second cylinder is $10\%$ more than the radius of the first. What is the relationship between the heights of the two cylinders?$\textbf{(A)}\ \text{The second height is } 10\% \text{ less than the first.} \\ \textbf{(B)}\ \text{The first height is } 10\% \text{ more than the second.}\\ \textbf{(C)}\ \text{The second height is } 21\% \text{ less than the first.} \\ \textbf{(D)}\ \text{The first height is } 21\% \text{ more than the second.}\\ \textbf{(E)}\ \text{The second height is } 80\% \text{ of the first.}$ |
D |
How many rearrangements of $abcd$ are there in which no two adjacent letters are also adjacent letters in the alphabet? For example, no such rearrangements could include either $ab$ or $ba$.$\textbf{(A)}\ 0\qquad\textbf{(B)}\ 1\qquad\textbf{(C)}\ 2\qquad\textbf{(D)}\ 3\qquad\textbf{(E)}\ 4$ |
C |
The ratio of the length to the width of a rectangle is $4$ : $3$. If the rectangle has diagonal of length $d$, then the area may be expressed as $kd^2$ for some constant $k$. What is $k$?$\textbf{(A)}\ \frac{2}{7}\qquad\textbf{(B)}\ \frac{3}{7}\qquad\textbf{(C)}\ \frac{12}{25}\qquad\textbf{(D)}\ \frac{16}{25}\qquad\textbf{(E)}\ \frac{3}{4}$ |
C |
Points $(\sqrt{\pi}, a)$ and $(\sqrt{\pi}, b)$ are distinct points on the graph of $y^2+x^4=2x^2y+1$. What is $|a-b|$?$\textbf{(A) }1\qquad\textbf{(B) }\dfrac{\pi}{2}\qquad\textbf{(C) }2\qquad\textbf{(D) }\sqrt{1+\pi}\qquad\textbf{(E) }1+\sqrt{\pi}$ |
C |
Claudia has 12 coins, each of which is a 5-cent coin or a 10-cent coin. There are exactly 17 different values that can be obtained as combinations of one or more of her coins. How many 10-cent coins does Claudia have?$\textbf{(A) }3\qquad\textbf{(B) }4\qquad\textbf{(C) }5\qquad\textbf{(D) }6\qquad\textbf{(E) }7$ |
C |
The diagram below shows the circular face of a clock with radius $20$ cm and a circular disk with radius $10$ cm externally tangent to the clock face at $12$ o'clock. The disk has an arrow painted on it, initially pointing in the upward vertical direction. Let the disk roll clockwise around the clock face. At what point on the clock face will the disk be tangent when the arrow is next pointing in the upward vertical direction?[asy] size(170); defaultpen(linewidth(0.9)+fontsize(13pt)); draw(unitcircle^^circle((0,1.5),0.5)); path arrow = origin--(-0.13,-0.35)--(-0.06,-0.35)--(-0.06,-0.7)--(0.06,-0.7)--(0.06,-0.35)--(0.13,-0.35)--cycle; for(int i=1;i<=12;i=i+1) { draw(0.9*dir(90-30*i)--dir(90-30*i)); label("$"+(string) i+"$",0.78*dir(90-30*i)); } dot(origin); draw(shift((0,1.87))*arrow); draw(arc(origin,1.5,68,30),EndArrow(size=12)); [/asy] |
C |
Consider the set of all fractions $\tfrac{x}{y},$ where $x$ and $y$ are relatively prime positive integers. How many of these fractions have the property that if both numerator and denominator are increased by $1$, the value of the fraction is increased by $10\%$?$\textbf{(A) }0\qquad\textbf{(B) }1\qquad\textbf{(C) }2\qquad\textbf{(D) }3\qquad\textbf{(E) }\text{infinitely many}$ |
B |
If $y+4 = (x-2)^2, x+4 = (y-2)^2$, and $x \neq y$, what is the value of $x^2+y^2$?$\textbf{(A) }10\qquad\textbf{(B) }15\qquad\textbf{(C) }20\qquad\textbf{(D) }25\qquad\textbf{(E) }\text{30}$ |
B |
A line that passes through the origin intersects both the line $x=1$ and the line $y=1+\frac{\sqrt{3}}{3}x$. The three lines create an equilateral triangle. What is the perimeter of the triangle?$\textbf{(A) }2\sqrt{6}\qquad\textbf{(B) }2+2\sqrt{3}\qquad\textbf{(C) }6\qquad\textbf{(D) }3+2\sqrt{3}\qquad\textbf{(E) }6+\frac{\sqrt{3}}{3}$ |
D |
Hexadecimal (base-16) numbers are written using numeric digits $0$ through $9$ as well as the letters $A$ through $F$ to represent $10$ through $15$. Among the first $1000$ positive integers, there are $n$ whose hexadecimal representation contains only numeric digits. What is the sum of the digits of $n$?$\textbf{(A) }17\qquad\textbf{(B) }18\qquad\textbf{(C) }19\qquad\textbf{(D) }20\qquad\textbf{(E) }21$ |
E |
The isosceles right triangle $ABC$ has right angle at $C$ and area $12.5$. The rays trisecting $\angle ACB$ intersect $AB$ at $D$ and $E$. What is the area of $\bigtriangleup CDE$?$\textbf{(A) }\dfrac{5\sqrt{2}}{3}\qquad\textbf{(B) }\dfrac{50\sqrt{3}-75}{4}\qquad\textbf{(C) }\dfrac{15\sqrt{3}}{8}\qquad\textbf{(D) }\dfrac{50-25\sqrt{3}}{2}\qquad\textbf{(E) }\dfrac{25}{6}$ |
D |
A rectangle with positive integer side lengths in $\text{cm}$ has area $A$ $\text{cm}^2$ and perimeter $P$ $\text{cm}$. Which of the following numbers cannot equal $A+P$?$\textbf{(A) }100\qquad\textbf{(B) }102\qquad\textbf{(C) }104\qquad\textbf{(D) }106\qquad\textbf{(E) }108$ |
B (Note: This problem was originally stated incorrectly, and all contestants received full credit regardless of their answer.) |
Tetrahedron $ABCD$ has $AB=5$, $AC=3$, $BC=4$, $BD=4$, $AD=3$, and $CD=\tfrac{12}5\sqrt2$. What is the volume of the tetrahedron?$\textbf{(A) }3\sqrt2\qquad\textbf{(B) }2\sqrt5\qquad\textbf{(C) }\dfrac{24}5\qquad\textbf{(D) }3\sqrt3\qquad\textbf{(E) }\dfrac{24}5\sqrt2$ |
C |
Eight people are sitting around a circular table, each holding a fair coin. All eight people flip their coins and those who flip heads stand while those who flip tails remain seated. What is the probability that no two adjacent people will stand?$\textbf{(A)}\dfrac{47}{256}\qquad\textbf{(B)}\dfrac{3}{16}\qquad\textbf{(C) }\dfrac{49}{256}\qquad\textbf{(D) }\dfrac{25}{128}\qquad\textbf{(E) }\dfrac{51}{256}$ |
A |
The zeroes of the function $f(x)=x^2-ax+2a$ are integers. What is the sum of the possible values of $a$?$\textbf{(A) }7\qquad\textbf{(B) }8\qquad\textbf{(C) }16\qquad\textbf{(D) }17\qquad\textbf{(E) }18$ |
C |
For some positive integers $p$, there is a quadrilateral $ABCD$ with positive integer side lengths, perimeter $p$, right angles at $B$ and $C$, $AB=2$, and $CD=AD$. How many different values of $p<2015$ are possible?$\textbf{(A) }30\qquad\textbf{(B) }31\qquad\textbf{(C) }61\qquad\textbf{(D) }62\qquad\textbf{(E) }63$ |
B |
Let $S$ be a square of side length $1$. Two points are chosen at random on the sides of $S$. The probability that the straight-line distance between the points is at least $\tfrac12$ is $\tfrac{a-b\pi}c$, where $a$, $b$, and $c$ are positive integers with $\gcd(a,b,c)=1$. What is $a+b+c$?$\textbf{(A) }59\qquad\textbf{(B) }60\qquad\textbf{(C) }61\qquad\textbf{(D) }62\qquad\textbf{(E) }63$ |
A |
A cell phone plan costs $\textdollar 20$ each month, plus $5$¢ per text message sent, plus $10$¢ for each minute used over $30$ hours. In January Juan sent $100$ text messages and talked for $30.5$ hours. How much did he have to pay?$\textbf{(A)}\ \textdollar 24.00 \qquad\textbf{(B)}\ \textdollar 24.50 \qquad\textbf{(C)}\ \textdollar 25.50\qquad\textbf{(D)}\ \textdollar 28.00\qquad\textbf{(E)}\ \textdollar 30.00$ |
D |
A small bottle of shampoo can hold 35 milliliters of shampoo, whereas a large bottle can hold 500 milliliters of shampoo. Jasmine wants to buy the minimum number of small bottles necessary to completely fill a large bottle. How many bottles must she buy?$\textbf{(A)}\ 11 \qquad\textbf{(B)}\ 12 \qquad\textbf{(C)}\ 13\qquad\textbf{(D)}\ 14\qquad\textbf{(E)}\ 15$ |
E |
Suppose $[a\ b]$ denotes the average of $a$ and $b$, and $\{a\ b\ c\}$ denotes the average of $a, b$, and $c$. What is $\{\{1\ 1\ 0\}\ [0\ 1]\ 0\}$?$\textbf{(A)}\ \frac{2}{9} \qquad\textbf{(B)}\ \frac{5}{18} \qquad\textbf{(C)}\ \frac{1}{3} \qquad\textbf{(D)}\ \frac{7}{18} \qquad\textbf{(E)}\ \frac{2}{3}$ |
D |
Let $X$ and $Y$ be the following sums of arithmetic sequences: \begin{eqnarray*} X &=& 10 + 12 + 14 + \cdots + 100, \\ Y &=& 12 + 14 + 16 + \cdots + 102. \end{eqnarray*} What is the value of $Y - X$?$\textbf{(A)}\ 92\qquad\textbf{(B)}\ 98\qquad\textbf{(C)}\ 100\qquad\textbf{(D)}\ 102\qquad\textbf{(E)}\ 112$ |
A |
At an elementary school, the students in third grade, fourth grade, and fifth grade run an average of $12$, $15$, and $10$ minutes per day, respectively. There are twice as many third graders as fourth graders, and twice as many fourth graders as fifth graders. What is the average number of minutes run per day by these students?$\textbf{(A)}\ 12 \qquad\textbf{(B)}\ \frac{37}{3} \qquad\textbf{(C)}\ \frac{88}{7} \qquad\textbf{(D)}\ 13\qquad\textbf{(E)}\ 14$ |
C |
Set $A$ has 20 elements, and set $B$ has 15 elements. What is the smallest possible number of elements in $A \cup B$, the union of $A$ and $B$?$\textbf{(A)}\ 5 \qquad\textbf{(B)}\ 15 \qquad\textbf{(C)}\ 20\qquad\textbf{(D)}\ 35\qquad\textbf{(E)}\ 300$ |
C |
Which of the following equations does NOT have a solution?$\textbf{(A)}\:(x+7)^2=0$ |
B |
Last summer 30% of the birds living on Town Lake were geese, 25% were swans, 10% were herons, and 35% were ducks. What percent of the birds that were not swans were geese?$\textbf{(A)}\ 20 \qquad\textbf{(B)}\ 30 \qquad\textbf{(C)}\ 40\qquad\textbf{(D)}\ 50\qquad\textbf{(E)}\ 60$ |
C |
A rectangular region is bounded by the graphs of the equations $y=a, y=-b, x=-c,$ and $x=d$, where $a,b,c,$ and $d$ are all positive numbers. Which of the following represents the area of this region?$\textbf{(A)}\ ac+ad+bc+bd\qquad\textbf{(B)}\ ac-ad$ $+bc-bd\qquad\textbf{(C)}\ ac+ad$ $-bc-bd \quad\quad\qquad\textbf{(D)}\ -ac-ad$ $+bc+bd\qquad\textbf{(E)}\ ac-ad$ $-bc+bd$ |
A |
A majority of the 30 students in Ms. Deameanor's class bought pencils at the school bookstore. Each of these students bought the same number of pencils, and this number was greater than 1. The cost of a pencil in cents was greater than the number of pencils each student bought, and the total cost of all the pencils was $\textdollar 17.71$. What was the cost of a pencil in cents?$\textbf{(A)}\,7 \qquad\textbf{(B)}\,11 \qquad\textbf{(C)}\,17 \qquad\textbf{(D)}\,23 \qquad\textbf{(E)}\,77$ |
B |
Square $EFGH$ has one vertex on each side of square $ABCD$. Point $E$ is on $\overline{AB}$ with $AE=7\cdot EB$. What is the ratio of the area of $EFGH$ to the area of $ABCD$?$\textbf{(A)}\,\frac{49}{64} \qquad\textbf{(B)}\,\frac{25}{32} \qquad\textbf{(C)}\,\frac78 \qquad\textbf{(D)}\,\frac{5\sqrt{2}}{8} \qquad\textbf{(E)}\,\frac{\sqrt{14}}{4}$ |
B |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.