Dataset Viewer
	| domain
				 list | difficulty
				 float64 | problem
				 string | solution
				 string | answer
				 string | source
				 string | 
|---|---|---|---|---|---|
| 
	[
  "Mathematics -> Number Theory -> Other",
  "Mathematics -> Algebra -> Other"
] | 2 | 
	Let $s(n)$ denote the number of 1's in the binary representation of $n$. Compute $$\frac{1}{255} \sum_{0 \leq n<16} 2^{n}(-1)^{s(n)}$$ | 
	Notice that if $n<8,(-1)^{s(n)}=(-1) \cdot(-1)^{s(n+8)}$ so the sum becomes $\frac{1}{255}\left(1-2^{8}\right) \sum_{0 \leq n<8} 2^{n}(-1)^{s(n)}=$ 45 . | 
	45 | 
	HMMT_2 | 
| 
	[
  "Mathematics -> Discrete Mathematics -> Combinatorics"
] | 2 | 
	A dot is marked at each vertex of a triangle $A B C$. Then, 2,3 , and 7 more dots are marked on the sides $A B, B C$, and $C A$, respectively. How many triangles have their vertices at these dots? | 
	Altogether there are $3+2+3+7=15$ dots, and thus $\binom{15}{3}=455$ combinations of 3 dots. Of these combinations, $\binom{2+2}{3}+\binom{2+3}{3}+\binom{2+7}{3}=4+10+84=98$ do not give triangles because they are collinear (the rest do give triangles). Thus $455-98=357$ different triangles can be formed. | 
	357 | 
	HMMT_2 | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	Find the sum of every even positive integer less than 233 not divisible by 10. | 
	We find the sum of all positive even integers less than 233 and then subtract all the positive integers less than 233 that are divisible by 10. $2 + 4 + \ldots + 232 = 2(1 + 2 + \ldots + 116) = 116 \cdot 117 = 13572$. The sum of all positive integers less than 233 that are divisible by 10 is $10 + 20 + \ldots + 230 = 10(1 + 2 + \ldots + 23) = 2760$. Then our answer is $13572 - 2760 = 10812$. | 
	10812 | 
	HMMT_2 | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	You plan to open your own Tmall.com store, called 'Store B,' selling the same headphones and speaker set at the same list prices as Store A does. Your store sells only these two models. You plan to issue 'x RMB off 99 RMB' coupons, limited to one per order, where x is an integer greater than 0 and smaller than 99. (For example, the discount for an order of 250 RMB is x RMB, not 2x RMB). The Tmall.com '60 RMB off 299 RMB' coupon can be applied to purchases at store B and can be stacked with your 'x RMB off 99 RMB' coupon. What is the minimal number x such that Xiao Ming can spend at least 1 RMB less on either the 250 RMB pair of the headphones or the 600 RMB speakers set in your Store B than in Store A? What is the minimal number x such that Xiao Ming can spend at least 1 RMB less for buying both the 250 RMB pair of the headphones and the 600 RMB speakers set in your Store B than in Store A? | 
	For the headphones, Xiao Ming pays 250 - x + 49 - 60 = 239 - x RMB. For the speakers, he pays 600 - x - 60 = 540 - x RMB. To spend less on the headphones, x must satisfy 239 - x <= 219, i.e., x >= 21. To spend less on the speakers, x must satisfy 540 - x <= 490 - 1, i.e., x >= 51. For both items, the total cost is (239 - x) + (540 - x) <= 709 - 1, i.e., x >= 36. Thus, x = 21 for the headphones, and x = 36 for both items. | 
	21 for headphones, 36 for both items | 
	alibaba_global_contest | 
| 
	[
  "Mathematics -> Algebra -> Intermediate Algebra -> Exponential Functions"
] | 2 | 
	If $x$ and $y$ are positive integers with $xy = 6$, what is the sum of all possible values of $\frac{2^{x+y}}{2^{x-y}}$? | 
	Using exponent laws, the expression $\frac{2^{x+y}}{2^{x-y}} = 2^{(x+y)-(x-y)} = 2^{2y}$. Since $x$ and $y$ are positive integers with $xy = 6$, then the possible values of $y$ are the positive divisors of 6, namely $1, 2, 3$, or 6. (These correspond to $x = 6, 3, 2, 1$.) The corresponding values of $2^{2y}$ are $2^{2} = 4, 2^{4} = 16, 2^{6} = 64$, and $2^{12} = 4096$. Therefore, the sum of the possible values of $\frac{2^{x+y}}{2^{x-y}}$ is $4 + 16 + 64 + 4096 = 4180$. | 
	4180 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	Carl and André are running a race. Carl runs at a constant speed of $x \mathrm{~m} / \mathrm{s}$. André runs at a constant speed of $y \mathrm{~m} / \mathrm{s}$. Carl starts running, and then André starts running 20 s later. After André has been running for 10 s, he catches up to Carl. What is the ratio $y: x$? | 
	André runs for 10 seconds at a speed of $y \mathrm{~m} / \mathrm{s}$. Therefore, André runs $10y \mathrm{~m}$. Carl runs for 20 seconds before André starts to run and then 10 seconds while André is running. Thus, Carl runs for 30 seconds. Since Carl runs at a speed of $x \mathrm{~m} / \mathrm{s}$, then Carl runs $30x \mathrm{~m}$. Since André and Carl run the same distance, then $30x \mathrm{~m} = 10y \mathrm{~m}$, which means that $\frac{y}{x} = 3$. Thus, $y: x = 3: 1$. | 
	3:1 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Abigail chooses an integer at random from the set $\{2,4,6,8,10\}$. Bill chooses an integer at random from the set $\{2,4,6,8,10\}$. Charlie chooses an integer at random from the set $\{2,4,6,8,10\}$. What is the probability that the product of their three integers is not a power of 2? | 
	For the product of the three integers to be a power of 2, it can have no prime factors other than 2. In each of the three sets, there are 3 powers of 2 (namely, 2,4 and 8) and 2 integers that are not a power of 2 (namely, 6 and 10). The probability that each chooses a power of 2 is $\left(\frac{3}{5}\right)^{3}=\frac{27}{125}$. Therefore, the probability that the product is not a power of 2 is $1-\frac{27}{125}=\frac{98}{125}$. | 
	\frac{98}{125} | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	Six consecutive integers are written on a blackboard. When one of them is erased, the sum of the remaining five integers is 2012. What is the sum of the digits of the integer that was erased? | 
	Suppose that the original six integers are \(x, x+1, x+2, x+3, x+4\), and \(x+5\). Suppose also that the integer that was erased is \(x+a\), where \(a\) is \(0,1,2,3,4\), or 5. The sum of the integers left is \((x+(x+1)+(x+2)+(x+3)+(x+4)+(x+5))-(x+a)\). Therefore, \(5(x+3)=2012+a\). Since the left side is an integer that is divisible by 5, then the right side is an integer that is divisible by 5. Since \(a\) is \(0,1,2,3,4\), or 5 and \(2012+a\) is divisible by 5, then \(a\) must equal 3. Thus, \(5(x+3)=2015\) or \(x+3=403\) and so \(x=400\). Finally, the integer that was erased is \(x+a=400+3=403\). The sum of its digits is \(4+0+3=7\). | 
	7 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	If $x$ and $y$ are positive integers with $x+y=31$, what is the largest possible value of $x y$? | 
	First, we note that the values of $x$ and $y$ cannot be equal since they are integers and $x+y$ is odd. Next, we look at the case when $x>y$. We list the fifteen possible pairs of values for $x$ and $y$ and the corresponding values of $x y$. Therefore, the largest possible value for $x y$ is 240. Note that the largest value occurs when $x$ and $y$ are as close together as possible. | 
	240 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	If a line segment joins the points $(-9,-2)$ and $(6,8)$, how many points on the line segment have coordinates that are both integers? | 
	The line segment with endpoints $(-9,-2)$ and $(6,8)$ has slope $\frac{8-(-2)}{6-(-9)}=\frac{10}{15}=\frac{2}{3}$. This means that starting at $(-9,-2)$ and moving 'up 2 and right 3' repeatedly will give other points on the line that have coordinates which are both integers. These points are $(-9,-2),(-6,0),(-3,2),(0,4),(3,6),(6,8)$. Therefore, there are 6 such points. | 
	6 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	What is the largest positive integer $n$ that satisfies $n^{200}<3^{500}$? | 
	Note that $n^{200}=(n^{2})^{100}$ and $3^{500}=(3^{5})^{100}$. Since $n$ is a positive integer, then $n^{200}<3^{500}$ is equivalent to $n^{2}<3^{5}=243$. Note that $15^{2}=225,16^{2}=256$ and if $n \geq 16$, then $n^{2} \geq 256$. Therefore, the largest possible value of $n$ is 15. | 
	15 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Connie has a number of gold bars, all of different weights. She gives the 24 lightest bars, which weigh $45 \%$ of the total weight, to Brennan. She gives the 13 heaviest bars, which weigh $26 \%$ of the total weight, to Maya. How many bars did Blair receive? | 
	Connie gives 24 bars that account for $45 \%$ of the total weight to Brennan. Thus, each of these 24 bars accounts for an average of $\frac{45}{24} \%=\frac{15}{8} \%=1.875 \%$ of the total weight. Connie gives 13 bars that account for $26 \%$ of the total weight to Maya. Thus, each of these 13 bars accounts for an average of $\frac{26}{13} \%=2 \%$ of the total weight. Since each of the bars that she gives to Blair is heavier than each of the bars given to Brennan (which were the 24 lightest bars) and is lighter than each of the bars given to Maya (which were the 13 heaviest bars), then the average weight of the bars given to Blair must be larger than $1.875 \%$ and smaller than $2 \%$. Note that the bars given to Blair account for $100 \%-45 \%-26 \%=29 \%$ of the total weight. If there were 14 bars accounting for $29 \%$ of the total weight, the average weight would be $\frac{29}{14} \% \approx 2.07 \%$, which is too large. Thus, there must be more than 14 bars accounting for $29 \%$ of the total weight. If there were 15 bars accounting for $29 \%$ of the total weight, the average weight would be $\frac{29}{15} \% \approx 1.93 \%$, which is in the correct range. If there were 16 bars accounting for $29 \%$ of the total weight, the average weight would be $\frac{29}{16} \% \approx 1.81 \%$, which is too small. The same would be true if there were 17 or 18 bars. Therefore, Blair must have received 15 bars. | 
	15 | 
	cayley | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	A two-digit positive integer $x$ has the property that when 109 is divided by $x$, the remainder is 4. What is the sum of all such two-digit positive integers $x$? | 
	Suppose that the quotient of the division of 109 by $x$ is $q$. Since the remainder is 4, this is equivalent to $109=q x+4$ or $q x=105$. Put another way, $x$ must be a positive integer divisor of 105. Since $105=5 	imes 21=5 	imes 3 	imes 7$, its positive integer divisors are $1,3,5,7,15,21,35,105$. Of these, 15,21 and 35 are two-digit positive integers so are the possible values of $x$. The sum of these values is $15+21+35=71$. | 
	71 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	Integers greater than 1000 are created using the digits $2,0,1,3$ exactly once in each integer. What is the difference between the largest and the smallest integers that can be created in this way? | 
	With a given set of four digits, the largest possible integer that can be formed puts the largest digit in the thousands place, the second largest digit in the hundreds place, the third largest digit in the tens place, and the smallest digit in the units place. Thus, the largest integer that can be formed with the digits $2,0,1,3$ is 3210. The smallest integer of this type that can be made uses a thousands digit of 1, and then lists the remaining digits in increasing order; this integer is 1023. The difference between these integers is $3210-1023=2187$. | 
	2187 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	One bag contains 2 red marbles and 2 blue marbles. A second bag contains 2 red marbles, 2 blue marbles, and $g$ green marbles, with $g>0$. For each bag, Maria calculates the probability of randomly drawing two marbles of the same colour in two draws from that bag, without replacement. If these two probabilities are equal, what is the value of $g$? | 
	First, we consider the first bag, which contains a total of $2+2=4$ marbles. There are 4 possible marbles that can be drawn first, leaving 3 possible marbles that can be drawn second. This gives a total of $4 \times 3=12$ ways of drawing two marbles. For both marbles to be red, there are 2 possible marbles (either red marble) that can be drawn first, and 1 marble that must be drawn second (the remaining red marble). This gives a total of $2 \times 1=2$ ways of drawing two red marbles. For both marbles to be blue, there are 2 possible marbles that can be drawn first, and 1 marble that must be drawn second. This gives a total of $2 \times 1=2$ ways of drawing two blue marbles. Therefore, the probability of drawing two marbles of the same colour from the first bag is the total number of ways of drawing two marbles of the same colour $(2+2=4)$ divided by the total number of ways of drawing two marbles (12), or $\frac{4}{12}=\frac{1}{3}$. Second, we consider the second bag, which contains a total of $2+2+g=g+4$ marbles. There are $g+4$ possible marbles that can be drawn first, leaving $g+3$ possible marbles that can be drawn second. This gives a total of $(g+4)(g+3)$ ways of drawing two marbles. As with the first bag, there are $2 \times 1=2$ ways of drawing two red marbles. As with the first bag, there are $2 \times 1=2$ ways of drawing two blue marbles. For both marbles to be green, there are $g$ possible marbles that can be drawn first, and $g-1$ marbles that must be drawn second. This gives a total of $g(g-1)$ ways of drawing two green marbles. Therefore, the probability of drawing two marbles of the same colour from the second bag is the total number of ways of drawing two marbles of the same colour $\left(2+2+g(g-1)=g^{2}-g+4\right)$ divided by the total number of ways of drawing two marbles $((g+4)(g+3))$, or $\frac{g^{2}-g+4}{(g+4)(g+3)}$. Since the two probabilities that we have calculated are to be equal and $g \neq 0$, then $\frac{1}{3} =\frac{g^{2}-g+4}{(g+4)(g+3)}$. Solving for $g$, we find $g=5$. | 
	5 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	The odd numbers from 5 to 21 are used to build a 3 by 3 magic square. If 5, 9 and 17 are placed as shown, what is the value of $x$? | 
	The sum of the odd numbers from 5 to 21 is $5+7+9+11+13+15+17+19+21=117$. Therefore, the sum of the numbers in any row is one-third of this total, or 39. This means as well that the sum of the numbers in any column or diagonal is also 39. Since the numbers in the middle row add to 39, then the number in the centre square is $39-9-17=13$. Since the numbers in the middle column add to 39, then the number in the middle square in the bottom row is $39-5-13=21$. Since the numbers in the bottom row add to 39, then the number in the bottom right square is $39-21-x=18-x$. Since the numbers in the bottom left to top right diagonal add to 39, then the number in the top right square is $39-13-x=26-x$. Since the numbers in the rightmost column add to 39, then $(26-x)+17+(18-x)=39$ or $61-2x=39$ or $2x=22$, and so $x=11$. | 
	11 | 
	cayley | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> Surface Area"
] | 2 | 
	A solid rectangular prism has dimensions 4 by 2 by 2. A 1 by 1 by 1 cube is cut out of the corner creating the new solid shown. What is the surface area of the new solid? | 
	The original prism has four faces that are 4 by 2 rectangles, and two faces that are 2 by 2 rectangles. Thus, the surface area of the original prism is \( 4(4 \cdot 2)+2(2 \cdot 2)=32+8=40 \). When a 1 by 1 by cube is cut out, a 1 by 1 square is removed from each of three faces of the prism, but three new 1 by 1 squares become part of the surface area. In other words, there is no change to the total surface area. Therefore, the surface area of the new solid is also 40. | 
	40 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	If \( x \) and \( y \) are positive integers with \( x>y \) and \( x+x y=391 \), what is the value of \( x+y \)? | 
	Since \( x+x y=391 \), then \( x(1+y)=391 \). We note that \( 391=17 \cdot 23 \). Since 17 and 23 are both prime, then if 391 is written as the product of two positive integers, it must be \( 1 \times 391 \) or \( 17 \times 23 \) or \( 23 \times 17 \) or \( 391 \times 1 \). Matching \( x \) and \( 1+y \) to these possible factors, we obtain \((x, y)=(1,390)\) or \((17,22)\) or \((23,16)\) or \((391,0)\). Since \( y \) is a positive integer, the fourth pair is not possible. Since \( x>y \), the first two pairs are not possible. Therefore, \((x, y)=(23,16)\) and so \( x+y=39 \). | 
	39 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers",
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Each of the four digits of the integer 2024 is even. How many integers between 1000 and 9999, inclusive, have the property that all four of their digits are even? | 
	The integers between 1000 and 9999, inclusive, are all four-digit positive integers of the form $abcd$. We want each of $a, b, c$, and $d$ to be even. There are 4 choices for $a$, namely $2, 4, 6, 8$. ($a$ cannot equal 0.) There are 5 choices for each of $b, c$ and $d$, namely $0, 2, 4, 6, 8$. The choice of each digit is independent, and so the total number of such integers is $4 \times 5 \times 5 \times 5$ or 500. | 
	500 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	If \( N \) is the smallest positive integer whose digits have a product of 1728, what is the sum of the digits of \( N \)? | 
	Since the product of the digits of \( N \) is 1728, we find the prime factorization of 1728 to help us determine what the digits are: \( 1728=9 \times 192=3^{2} \times 3 \times 64=3^{3} \times 2^{6} \). We must try to find a combination of the smallest number of possible digits whose product is 1728. Note that we cannot have 3 digits with a product of 1728 since the maximum possible product of 3 digits is \( 9 \times 9 \times 9=729 \). Let us suppose that we can have 4 digits with a product of 1728. In order for \( N \) to be as small as possible, its leading digit (that is, its thousands digit) must be as small as possible. From above, this digit cannot be 1. This digit also cannot be 2, since otherwise the product of the remaining 3 digits would be 864 which is larger than the product of 3 digits can be. Can the thousands digit be 3? If so, the remaining 3 digits have a product of 576. Can 3 digits have a product of 576? If one of these 3 digits were 7 or less, then the product of the 3 digits would be at most \( 7 \times 9 \times 9=567 \), which is too small. Therefore, if we have 3 digits with a product of 576, then each digit is 8 or 9. Since the product is even, then at least one of the digits would have to be 8, leaving the remaining two digits to have a product of \( 576 \div 8=72 \). These two digits would then have to be 8 and 9. Thus, we can have 3 digits with a product of 576, and so we can have 4 digits with a product of 1728 with smallest digit 3. Therefore, the digits of \( N \) must be \( 3,8,8,9 \). The smallest possible number formed by these digits is when the digits are placed in increasing order, and so \( N=3889 \). The sum of the digits of \( N \) is \( 3+8+8+9=28 \). | 
	28 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	The sum of five consecutive odd integers is 125. What is the smallest of these integers? | 
	Suppose that the smallest of the five odd integers is $x$. Since consecutive odd integers differ by 2, the other four odd integers are $x+2, x+4, x+6$, and $x+8$. Therefore, $x + (x+2) + (x+4) + (x+6) + (x+8) = 125$. From this, we obtain $5x + 20 = 125$ and so $5x = 105$, which gives $x = 21$. Thus, the smallest of the five integers is 21. | 
	21 | 
	cayley | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	There is one odd integer \(N\) between 400 and 600 that is divisible by both 5 and 11. What is the sum of the digits of \(N\)? | 
	If \(N\) is divisible by both 5 and 11, then \(N\) is divisible by \(5 \times 11=55\). This is because 5 and 11 have no common divisor larger than 1. Therefore, we are looking for a multiple of 55 between 400 and 600 that is odd. One way to find such a multiple is to start with a known multiple of 55, such as 550, which is even. We can add or subtract 55 from this multiple and still obtain multiples of 55. Note that \(550+55=605\), which is too large. Now \(550-55=495\) which is in the correct range and is odd. Since we are told that there is only such such integer, then it must be the case that \(N=495\). The sum of the digits of \(N\) is \(4+9+5=18\). | 
	18 | 
	cayley | 
| 
	[
  "Mathematics -> Number Theory -> Factorization",
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	If \( N \) is the smallest positive integer whose digits have a product of 2700, what is the sum of the digits of \( N \)? | 
	In order to find \( N \), which is the smallest possible integer whose digits have a fixed product, we must first find the minimum possible number of digits with this product. Once we have determined the digits that form \( N \), then the integer \( N \) itself is formed by writing the digits in increasing order. Note that the digits of \( N \) cannot include 0, or else the product of its digits would be 0. Also, the digits of \( N \) cannot include 1, otherwise we could remove the 1s and obtain an integer with fewer digits (thus, a smaller integer) with the same product of digits. Since the product of the digits of \( N \) is 2700, we find the prime factorization of 2700 to help us determine what the digits are: \( 2700=27 \times 100=3^{3} \times 10^{2}=3^{3} \times 2^{2} \times 5^{2} \). In order for a non-zero digit to have a factor of 5, then the digit must equal 5. Since 2700 has two factors of 5, then the digits of \( N \) includes two 5s. The remaining digits have a product of \( 3^{3} \times 2^{2}=108 \). Therefore, we must try to find a combination of the smallest number of possible digits whose product is 108. We cannot have 1 digit with a product of 108. We also cannot have a 2 digits with a product of 108, as the product of 2 digits is at most \( 9 \times 9=81 \). We can have a product of 3 digits with a product of 108 (for example, \( 2 \times 6 \times 9 \) or \( 3 \times 6 \times 6 \) ). Therefore, the number \( N \) has 5 digits (two 5s and three other digits with a product of 108). In order for \( N \) to be as small as possible, its leading digit (that is, its ten thousands digit) must be as small as possible. Recall that \( N \) cannot include the digit 1. The next smallest possible leading digit is 2. In this case, 2 must be one of the three digits whose product is 108. Thus, the remaining two of these three digits have a product of \( 108 \div 2=54 \), and so must be 6 and 9. Therefore, the digits of \( N \) must be \( 2,6,9,5,5 \). The smallest possible number formed by these digits is when the digits are placed in increasing order, and so \( N=25569 \). The sum of the digits of \( N \) is \( 2+5+5+6+9=27 \). | 
	27 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	There are 30 people in a room, 60\% of whom are men. If no men enter or leave the room, how many women must enter the room so that 40\% of the total number of people in the room are men? | 
	Since there are 30 people in a room and 60\% of them are men, then there are \( \frac{6}{10} \times 30=18 \) men in the room and 12 women. Since no men enter or leave the room, then these 18 men represent 40\% of the final number in the room. Thus, 9 men represent 20\% of the the final number in the room, and so the final number of people is \( 5 \times 9=45 \). Since 18 of these are men and 12 of these are the women originally in the room, then \( 45-18-12=15 \) women entered the room. | 
	15 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	What is the 7th oblong number? | 
	The 7th oblong number is the number of dots in a rectangular grid of dots with 7 columns and 8 rows. Thus, the 7th oblong number is $7 \times 8=56$. | 
	56 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Barry has three sisters. The average age of the three sisters is 27. The average age of Barry and his three sisters is 28. What is Barry's age? | 
	Since the average age of the three sisters is 27, then the sum of their ages is $3 	imes 27=81$. When Barry is included the average age of the four people is 28, so the sum of the ages of the four people is $4 	imes 28=112$. Barry's age is the difference between the sum of the ages of all four people and the sum of the ages of the three sisters, which equals $112-81$ or 31. | 
	31 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	At Barker High School, a total of 36 students are on either the baseball team, the hockey team, or both. If there are 25 students on the baseball team and 19 students on the hockey team, how many students play both sports? | 
	The two teams include a total of $25+19=44$ players. There are exactly 36 students who are on at least one team. Thus, there are $44-36=8$ students who are counted twice. Therefore, there are 8 students who play both baseball and hockey. | 
	8 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Kamile turned her computer off at 5 p.m. Friday, at which point it had been on for exactly 100 hours. At what time had Kamile turned her computer on? | 
	We need to determine the time 100 hours before 5 p.m. Friday. Since there are 24 hours in 1 day and since $100 = 4(24) + 4$, then 100 hours is equal to 4 days plus 4 hours. Starting at 5 p.m. Friday, we move 4 hours back in time to 1 p.m. Friday and then an additional 4 days back in time to 1 p.m. Monday. Thus, Kamile turned her computer on at 1 p.m. Monday. | 
	1 	ext{ p.m. Monday} | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	Three different numbers from the list $2, 3, 4, 6$ have a sum of 11. What is the product of these numbers? | 
	The sum of 2, 3 and 6 is $2 + 3 + 6 = 11$. Their product is $2 \cdot 3 \cdot 6 = 36$. | 
	36 | 
	fermat | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> Surface Area",
  "Mathematics -> Geometry -> Solid Geometry -> Volume"
] | 2 | 
	The surface area of a cube is 24. What is the volume of the cube? | 
	A cube has six identical faces. If the surface area of a cube is 24, the area of each face is $\frac{24}{6}=4$. Since each face of this cube is a square with area 4, the edge length of the cube is $\sqrt{4}=2$. Thus, the volume of the cube is $2^{3}$ which equals 8. | 
	8 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Last Thursday, each of the students in M. Fermat's class brought one piece of fruit to school. Each brought an apple, a banana, or an orange. In total, $20\%$ of the students brought an apple and $35\%$ brought a banana. If 9 students brought oranges, how many students were in the class? | 
	Each student brought exactly one of an apple, a banana, and an orange. Since $20\%$ of the students brought an apple and $35\%$ brought a banana, then the percentage of students who brought an orange is $100\% - 20\% - 35\% = 45\%$. Therefore, the 9 students who brought an orange represent $45\%$ of the class. This means that 1 student represents $45\% \div 9 = 5\%$ of the class. Thus, the class has $100\% \div 5\% = 20$ students in it. | 
	20 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Algebra -> Equations and Inequalities"
] | 2 | 
	A line has equation $y=mx-50$ for some positive integer $m$. The line passes through the point $(a, 0)$ for some positive integer $a$. What is the sum of all possible values of $m$? | 
	Since the line with equation $y=mx-50$ passes through the point $(a, 0)$, then $0=ma-50$ or $ma=50$. Since $m$ and $a$ are positive integers whose product is 50, then $m$ and $a$ are divisor pair of 50. Therefore, the possible values of $m$ are the positive divisors of 50, which are $1,2,5,10,25,50$. The sum of the possible values of $m$ is thus $1+2+5+10+25+50=93$. | 
	93 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	If $\sqrt{25-\sqrt{n}}=3$, what is the value of $n$? | 
	Since $\sqrt{25-\sqrt{n}}=3$, then $25-\sqrt{n}=9$. Thus, $\sqrt{n}=16$ and so $n=16^{2}=256$. | 
	256 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Digits are placed in the two boxes of $2 \square \square$, with one digit in each box, to create a three-digit positive integer. In how many ways can this be done so that the three-digit positive integer is larger than 217? | 
	The question is equivalent to asking how many three-digit positive integers beginning with 2 are larger than 217. These integers are 218 through 299 inclusive. There are $299 - 217 = 82$ such integers. | 
	82 | 
	fermat | 
| 
	[
  "Mathematics -> Number Theory -> Congruences",
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	The remainder when 111 is divided by 10 is 1. The remainder when 111 is divided by the positive integer $n$ is 6. How many possible values of $n$ are there? | 
	Since the remainder when 111 is divided by $n$ is 6, then $111-6=105$ is a multiple of $n$ and $n>6$ (since, by definition, the remainder must be less than the divisor). Since $105=3 \cdot 5 \cdot 7$, the positive divisors of 105 are $1,3,5,7,15,21,35,105$. Therefore, the possible values of $n$ are $7,15,21,35,105$, of which there are 5. | 
	5 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Other"
] | 2 | 
	One integer is selected at random from the following list of 15 integers: $1,2,2,3,3,3,4,4,4,4,5,5,5,5,5$. The probability that the selected integer is equal to $n$ is $\frac{1}{3}$. What is the value of $n$? | 
	Since the list includes 15 integers, then an integer has a probability of $\frac{1}{3}$ of being selected if it occurs $\frac{1}{3} \cdot 15=5$ times in the list. The integer 5 occurs 5 times in the list and no other integer occurs 5 times, so $n=5$. | 
	5 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Intermediate Algebra -> Exponential Functions"
] | 2 | 
	If $10^n = 1000^{20}$, what is the value of $n$? | 
	Using exponent laws, $1000^{20}=\left(10^{3}\right)^{20}=10^{60}$ and so $n=60$. | 
	60 | 
	fermat | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Angles"
] | 2 | 
	The line with equation $y=3x+6$ is reflected in the $y$-axis. What is the $x$-intercept of the new line? | 
	When a line is reflected in the $y$-axis, its $y$-intercept does not change (since it is on the line of reflection) and its slope is multiplied by -1 . Therefore, the new line has slope -3 and $y$-intercept 6 , which means that its equation is $y=-3 x+6$. The $x$-intercept of this new line is found by setting $y=0$ and solving for $x$ which gives $0=-3 x+6$ or $3 x=6$ or $x=2$. | 
	2 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Six soccer teams are competing in a tournament in Waterloo. Every team is to play three games, each against a different team. How many different schedules are possible? | 
	Before we answer the given question, we determine the number of ways of choosing 3 objects from 5 objects and the number of ways of choosing 2 objects from 5 objects. Consider 5 objects labelled B, C, D, E, F. The possible pairs are: BC, BD, BE, BF, CD, CE, CF, DE, DF, EF. There are 10 such pairs. The possible triples are: DEF, CEF, CDF, CDE, BEF, BDF, BDE, BCF, BCE, BCD. There are 10 such triples. Label the six teams A, B, C, D, E, F. We start by considering team A. Team A plays 3 games, so we must choose 3 of the remaining 5 teams for A to play. As we saw above, there are 10 ways to do this. Without loss of generality, we pick one of these sets of 3 teams for A to play, say A plays B, C and D. There are two possible cases now - either none of B, C and D play each other, or at least one pair of B, C, D plays each other. Case 1: None of the teams that play A play each other. In the configuration above, each of B, C and D play two more games. They already play A and cannot play each other, so they must each play E and F. No further choices are possible. There are 10 possible schedules in this type of configuration. These 10 combinations come from choosing the 3 teams that play A. Case 2: Some of the teams that play A play each other. Here, at least one pair of the teams that play A play each other. Given the teams B, C and D playing A, there are 3 possible pairs (BC, BD, CD). We pick one of these pairs, say BC. It is now not possible for B or C to also play D. If it was the case that C, say, played D, then we would have the configuration. Here, A and C have each played 3 games and B and D have each played 2 games. Teams E and F are unaccounted for thus far. They cannot both play 3 games in this configuration as the possible opponents for E are B, D and F, and the possible opponents for F are B, D and E, with the 'B' and 'D' possibilities only to be used once. A similar argument shows that B cannot play D. Thus, B or C cannot also play D. Here, A has played 3 games, B and C have each played 2 games, and D has played 1 game. B and C must play 1 more game and cannot play D or A. They must play E and F in some order. There are 2 possible ways to assign these games (BE and CF, or BF and CE.) This gives 30 x 2 = 60 configurations so far. Suppose that B plays E and C plays F. So far, A, B and C each play 3 games and E, F and D each play 1 game. The only way to complete the configuration is to join D, E and F. Therefore, there are 60 possible schedules in this case. In total, there are 10 + 60 = 70 possible schedules. | 
	70 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	Sergio recently opened a store. One day, he determined that the average number of items sold per employee to date was 75. The next day, one employee sold 6 items, one employee sold 5 items, and one employee sold 4 items. The remaining employees each sold 3 items. This made the new average number of items sold per employee to date equal to 78.3. How many employees are there at the store? | 
	Suppose that there are \( n \) employees at Sergio's store. After his first average calculation, his \( n \) employees had sold an average of 75 items each, which means that a total of \( 75n \) items had been sold. The next day, one employee sold 6 items, one sold 5, one sold 4, and the remaining \( (n-3) \) employees each sold 3 items. After this day, the total number of items sold to date was \( 75n+(6+5+4+(n-3)3) \) or \( 75n+15+3n-9 \) or \( 78n+6 \). Since the new average number of items sold per employee was 78.3, then \( \frac{78n+6}{n}=78.3 \) or \( 78n+6=78.3n \). Therefore, \( 0.3n=6 \) or \( n=20 \). Thus, there are 20 employees in the store. | 
	20 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	How many integers are greater than $rac{5}{7}$ and less than $rac{28}{3}$? | 
	The fraction $rac{5}{7}$ is between 0 and 1. The fraction $rac{28}{3}$ is equivalent to $9 rac{1}{3}$ and so is between 9 and 10. Therefore, the integers between these two fractions are $1, 2, 3, 4, 5, 6, 7, 8, 9$, of which there are 9. | 
	9 | 
	fermat | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	The product of $N$ consecutive four-digit positive integers is divisible by $2010^{2}$. What is the least possible value of $N$? | 
	First, we note that $2010=10(201)=2(5)(3)(67)$ and so $2010^{2}=2^{2} 3^{2} 5^{2} 67^{2}$. Consider $N$ consecutive four-digit positive integers. For the product of these $N$ integers to be divisible by $2010^{2}$, it must be the case that two different integers are divisible by 67 (which would mean that there are at least 68 integers in the list) or one of the integers is divisible by $67^{2}$. Since we want to minimize $N$ (and indeed because none of the answer choices is at least 68), we look for a list of integers in which one is divisible by $67^{2}=4489$. Since the integers must all be four-digit integers, then the only multiples of 4489 the we must consider are 4489 and 8978. First, we consider a list of $N$ consecutive integers including 4489. Since the product of these integers must have 2 factors of 5 and no single integer within 10 of 4489 has a factor of 25 , then the list must include two integers that are multiples of 5 . To minimize the number of integers in the list, we try to include 4485 and 4490. Thus our candidate list is $4485,4486,4487,4488,4489,4490$. The product of these integers includes 2 factors of 67 (in 4489), 2 factors of 5 (in 4485 and 4490), 2 factors of 2 (in 4486 and 4488), and 2 factors of 3 (since each of 4485 and 4488 is divisible by 3). Thus, the product of these 6 integers is divisible by $2010^{2}$. Therefore, the shortest possible list including 4489 has length 6. Next, we consider a list of $N$ consecutive integers including 8978. Here, there is a nearby integer containing 2 factors of 5, namely 8975. So we start with the list $8975,8976,8977,8978$ and check to see if it has the required property. The product of these integers includes 2 factors of 67 (in 8978), 2 factors of 5 (in 8975), and 2 factors of 2 (in 8976). However, the only integer in this list divisible by 3 is 8976 , which has only 1 factor of 3 . To include a second factor of 3 , we must include a second multiple of 3 in the list. Thus, we extend the list by one number to 8979 . Therefore, the product of the numbers in the list $8975,8976,8977,8978,8979$ is a multiple of $2010^{2}$. The length of this list is 5 . Thus, the smallest possible value of $N$ is 5 . | 
	5 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	If $a(x+2)+b(x+2)=60$ and $a+b=12$, what is the value of $x$? | 
	The equation $a(x+2)+b(x+2)=60$ has a common factor of $x+2$ on the left side. Thus, we can re-write the equation as $(a+b)(x+2)=60$. When $a+b=12$, we obtain $12 \cdot(x+2)=60$ and so $x+2=5$ which gives $x=3$. | 
	3 | 
	fermat | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> 3D Shapes"
] | 2 | 
	How many edges does a square-based pyramid have? | 
	A square-based pyramid has 8 edges: 4 edges that form the square base and 1 edge that joins each of the four vertices of the square base to the top vertex. | 
	8 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	The integers $a, b$ and $c$ satisfy the equations $a+5=b$, $5+b=c$, and $b+c=a$. What is the value of $b$? | 
	Since $a+5=b$, then $a=b-5$. Since $a=b-5$ and $c=5+b$ and $b+c=a$, then $b+(5+b)=b-5$, $2b+5=b-5$, $b=-10$. (If $b=-10$, then $a=b-5=-15$ and $c=5+b=-5$ and $b+c=(-10)+(-5)=(-15)=a$, as required.) | 
	-10 | 
	cayley | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Polygons"
] | 2 | 
	The area of the triangular region bounded by the $x$-axis, the $y$-axis and the line with equation $y=2x-6$ is one-quarter of the area of the triangular region bounded by the $x$-axis, the line with equation $y=2x-6$ and the line with equation $x=d$, where $d>0$. What is the value of $d$? | 
	The line with equation $y=2x-6$ has $y$-intercept -6. Also, the $x$-intercept of $y=2x-6$ occurs when $y=0$, which gives $0=2x-6$ or $2x=6$ which gives $x=3$. Therefore, the triangle bounded by the $x$-axis, the $y$-axis, and the line with equation $y=2x-6$ has base of length 3 and height of length 6, and so has area $\frac{1}{2} \times 3 \times 6=9$. We want the area of the triangle bounded by the $x$-axis, the vertical line with equation $x=d$, and the line with equation $y=2x-6$ to be 4 times this area, or 36. This means that $x=d$ is to the right of the point $(3,0)$, because the new area is larger. In other words, $d>3$. The base of this triangle has length $d-3$, and its height is $2d-6$, since the height is measured along the vertical line with equation $x=d$. Thus, we want $\frac{1}{2}(d-3)(2d-6)=36$ or $(d-3)(d-3)=36$ which means $(d-3)^{2}=36$. Since $d-3>0$, then $d-3=6$ which gives $d=9$. Alternatively, we could note that if similar triangles have areas in the ratio $4:1$ then their corresponding lengths are in the ratio $\sqrt{4}:1$ or $2:1$. Since the two triangles in question are similar (both are right-angled and they have equal angles at the point $(3,0)$), the larger triangle has base of length $2 \times 3=6$ and so $d=3+6=9$. | 
	9 | 
	cayley | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Angles"
] | 2 | 
	Points $A, B, C$, and $D$ are on a line in that order. The distance from $A$ to $D$ is 24. The distance from $B$ to $D$ is 3 times the distance from $A$ to $B$. Point $C$ is halfway between $B$ and $D$. What is the distance from $A$ to $C$? | 
	Since $B$ is between $A$ and $D$ and $B D=3 A B$, then $B$ splits $A D$ in the ratio $1: 3$. Since $A D=24$, then $A B=6$ and $B D=18$. Since $C$ is halfway between $B$ and $D$, then $B C=rac{1}{2} B D=9$. Thus, $A C=A B+B C=6+9=15$. | 
	15 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	At the beginning of the first day, a box contains 1 black ball, 1 gold ball, and no other balls. At the end of each day, for each gold ball in the box, 2 black balls and 1 gold ball are added to the box. If no balls are removed from the box, how many balls are in the box at the end of the seventh day? | 
	At the beginning of the first day, the box contains 1 black ball and 1 gold ball. At the end of the first day, 2 black balls and 1 gold ball are added, so the box contains 3 black balls and 2 gold balls. At the end of the second day, $2 \times 2=4$ black balls and $2 \times 1=2$ gold balls are added, so the box contains 7 black balls and 4 gold balls. Continuing in this way, we find the following numbers of balls: End of Day 2: 7 black balls, 4 gold balls; End of Day 3: 15 black balls, 8 gold balls; End of Day 4: 31 black balls, 16 gold balls; End of Day 5: 63 black balls, 32 gold balls; End of Day 6: 127 black balls, 64 gold balls; End of Day 7: 255 black balls, 128 gold balls. At the end of the 7th day, there are thus 255+128=383 balls in the box. | 
	383 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Ratios -> Other"
] | 2 | 
	Points A, B, C, and D lie along a line, in that order. If $AB:AC=1:5$, and $BC:CD=2:1$, what is the ratio $AB:CD$? | 
	Suppose that $AB=x$ for some $x>0$. Since $AB:AC=1:5$, then $AC=5x$. This means that $BC=AC-AB=5x-x=4x$. Since $BC:CD=2:1$ and $BC=4x$, then $CD=2x$. Therefore, $AB:CD=x:2x=1:2$. | 
	1:2 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	The integer 48178 includes the block of digits 178. How many integers between 10000 and 100000 include the block of digits 178? | 
	Since 100000 does not include the block of digits 178, each integer between 10000 and 100000 that includes the block of digits 178 has five digits. Such an integer can be of the form $178 x y$ or of the form $x 178 y$ or of the form $x y 178$ for some digits $x$ and $y$. The leading digit of a five-digit integer has 9 possible values (any digit from 1 to 9, inclusive) while a later digit in a five-digit integer has 10 possible values (0 or any digit from 1 to 9, inclusive). This means that there are 100 integers of the form $178 x y$ (10 choices for each of $x$ and $y$, and $10 \times 10=100$), there are 90 integers of the form $x 178 y$ (9 choices for $x$ and 10 choices for $y$, and $9 \times 10=90$), and there are 90 integers of the form $x y 178$ (9 choices for $x$ and 10 choices for $y$, and $9 \times 10=90$). In total, there are thus $100+90+90=280$ integers between 10000 and 100000 that include the block of digits 178. | 
	280 | 
	cayley | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations",
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	An ordered list of four numbers is called a quadruple. A quadruple $(p, q, r, s)$ of integers with $p, q, r, s \geq 0$ is chosen at random such that $2 p+q+r+s=4$. What is the probability that $p+q+r+s=3$? | 
	First, we count the number of quadruples $(p, q, r, s)$ of non-negative integer solutions to the equation $2 p+q+r+s=4$. Then, we determine which of these satisfies $p+q+r+s=3$. This will allow us to calculate the desired probability. Since each of $p, q, r$, and $s$ is a non-negative integer and $2 p+q+r+s=4$, then there are three possible values for $p: p=2, p=1$, and $p=0$. Note that, in each case, $q+r+s=4-2 p$. Case 1: $p=2$ Here, $q+r+s=4-2(2)=0$. Since each of $q, r$ and $s$ is non-negative, then $q=r=s=0$, so $(p, q, r, s)=(2,0,0,0)$. There is 1 solution in this case. Since each of $q, r$ and $s$ is non-negative, then the three numbers $q, r$ and $s$ must be 0,0 and 2 in some order, or 1,1 and 0 in some order. There are three ways to arrange a list of three numbers, two of which are the same. (With $a, a, b$, the arrangements are $a a b$ and $a b a$ and baa.) Therefore, the possible quadruples here are $(p, q, r, s)=(1,2,0,0),(1,0,2,0),(1,0,0,2),(1,1,1,0),(1,1,0,1),(1,0,1,1)$. There are 6 solutions in this case. We will look for non-negative integer solutions to this equation with $q \geq r \geq s$. Once we have found these solutions, all solutions can be found be re-arranging these initial solutions. If $q=4$, then $r+s=0$, so $r=s=0$. If $q=3$, then $r+s=1$, so $r=1$ and $s=0$. If $q=2$, then $r+s=2$, so $r=2$ and $s=0$, or $r=s=1$. The value of $q$ cannot be 1 or 0, because if it was, then $r+s$ would be at least 3 and so $r$ or $s$ would be at least 2. (We are assuming that $r \leq q$ so this cannot be the case.) Therefore, the solutions to $q+r+s=4$ must be the three numbers 4,0 and 0 in some order, 3,1 and 0 in some order, 2,2 and 0 in some order, or 2,1 and 1 in some order. In Case 2, we saw that there are three ways to arrange three numbers, two of which are equal. In addition, there are six ways to arrange a list of three different numbers. (With $a, b, c$, the arrangements are $a b c, a c b, b a c, b c a, c a b, c b a$.) The solution $(p, q, r, s)=(0,4,0,0)$ has 3 arrangements. The solution $(p, q, r, s)=(0,3,1,0)$ has 6 arrangements. The solution $(p, q, r, s)=(0,2,2,0)$ has 3 arrangements. The solution $(p, q, r, s)=(0,2,1,1)$ has 3 arrangements. (In each of these cases, we know that $p=0$ so the different arrangements come from switching $q, r$ and $s$.) There are 15 solutions in this case. Overall, there are $1+6+15=22$ solutions to $2 p+q+r+s=4$. We can go through each of these quadruples to check which satisfy $p+q+r+s=3$. The quadruples that satisfy this equation are exactly those from Case 2. We could also note that $2 p+q+r+s=4$ and $p+q+r+s=3$ means that $p=(2 p+q+r+s)-(p+q+r+s)=4-3=1$. Therefore, of the 22 solutions to $2 p+q+r+s=4$, there are 6 that satisfy $p+q+r+s=3$, so the desired probability is $\frac{6}{22}=\frac{3}{11}$. | 
	\frac{3}{11} | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Vivek is painting three doors numbered 1, 2, and 3. Each door is to be painted either black or gold. How many different ways can the three doors be painted? | 
	Since there are 3 doors and 2 colour choices for each door, there are $2^{3}=8$ ways of painting the three doors. Using 'B' to represent black and 'G' to represent gold, these ways are BBB, BBG, BGB, BGG, GBB, GBG, GGB, and GGG. | 
	8 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	The first four terms of a sequence are $1,4,2$, and 3. Beginning with the fifth term in the sequence, each term is the sum of the previous four terms. What is the eighth term? | 
	The first four terms of the sequence are $1,4,2,3$. Since each term starting with the fifth is the sum of the previous four terms, then the fifth term is $1+4+2+3=10$. Also, the sixth term is $4+2+3+10=19$, the seventh term is $2+3+10+19=34$, and the eighth term is $3+10+19+34=66$. | 
	66 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	What is the sum of the positive divisors of 1184? | 
	We start by finding the prime factors of 1184: $1184=2 \cdot 592=2^{2} \cdot 296=2^{3} \cdot 148=2^{4} \cdot 74=2^{5} \cdot 37$. The positive divisors of 1184 cannot contain prime factors other than 2 and 37, and cannot contain more than 5 factors of 2 or 1 factor of 37. Thus, the positive divisors are $1,2,4,8,16,32,37,74,148,296,592,1184$. The sum, $S$, of these divisors is $S = 1+2+4+8+16+32+37+74+148+296+592+1184 = (1+2+4+8+16+32)+37 \cdot(1+2+4+8+16+32) = (1+2+4+8+16+32) \cdot(1+37) = 63 \cdot 38 = 2394$. | 
	2394 | 
	fermat | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations",
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Chris received a mark of $50 \%$ on a recent test. Chris answered 13 of the first 20 questions correctly. Chris also answered $25 \%$ of the remaining questions on the test correctly. If each question on the test was worth one mark, how many questions in total were on the test? | 
	Suppose that there were $n$ questions on the test. Since Chris received a mark of $50 \%$ on the test, then he answered $\frac{1}{2} n$ of the questions correctly. We know that Chris answered 13 of the first 20 questions correctly and then $25 \%$ of the remaining questions. Since the test has $n$ questions, then after the first 20 questions, there are $n-20$ questions. Since Chris answered $25 \%$ of these $n-20$ questions correctly, then Chris answered $\frac{1}{4}(n-20)$ of these questions correctly. The total number of questions that Chris answered correctly can be expressed as $\frac{1}{2} n$ and also as $13+\frac{1}{4}(n-20)$. Therefore, $\frac{1}{2} n=13+\frac{1}{4}(n-20)$ and so $2 n=52+(n-20)$, which gives $n=32$. (We can check that if $n=32$, then Chris answers 13 of the first 20 and 3 of the remaining 12 questions correctly, for a total of 16 correct out of 32.) | 
	32 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> 3D Shapes"
] | 2 | 
	The entire exterior of a solid $6 \times 6 \times 3$ rectangular prism is painted. Then, the prism is cut into $1 \times 1 \times 1$ cubes. How many of these cubes have no painted faces? | 
	We visualize the solid as a rectangular prism with length 6, width 6 and height 3. In other words, we can picture the solid as three $6 \times 6$ squares stacked on top of each other. Since the entire exterior of the solid is painted, then each cube in the top layer and each cube in the bottom layer has paint on it, so we can remove these. This leaves the middle $6 \times 6$ layer of cubes. Each cube around the perimeter of this square has paint on it, so it is only the 'middle' cubes from this layer that have no paint on them. These middle cubes form a $4 \times 4$ square, and so there are 16 cubes with no paint on them. | 
	16 | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Dolly, Molly and Polly each can walk at $6 \mathrm{~km} / \mathrm{h}$. Their one motorcycle, which travels at $90 \mathrm{~km} / \mathrm{h}$, can accommodate at most two of them at once (and cannot drive by itself!). Let $t$ hours be the time taken for all three of them to reach a point 135 km away. Ignoring the time required to start, stop or change directions, what is true about the smallest possible value of $t$? | 
	First, we note that the three people are interchangeable in this problem, so it does not matter who rides and who walks at any given moment. We abbreviate the three people as D, M and P. We call their starting point $A$ and their ending point $B$. Here is a strategy where all three people are moving at all times and all three arrive at $B$ at the same time: D and M get on the motorcycle while P walks. D and M ride the motorcycle to a point $Y$ before $B$. D drops off M and rides back while P and M walk toward $B$. D meets $P$ at point $X$. D picks up P and they drive back to $B$ meeting M at $B$. Point $Y$ is chosen so that $\mathrm{D}, \mathrm{M}$ and P arrive at $B$ at the same time. Suppose that the distance from $A$ to $X$ is $a \mathrm{~km}$, from $X$ to $Y$ is $d \mathrm{~km}$, and the distance from $Y$ to $B$ is $b \mathrm{~km}$. In the time that it takes P to walk from $A$ to $X$ at $6 \mathrm{~km} / \mathrm{h}, \mathrm{D}$ rides from $A$ to $Y$ and back to $X$ at $90 \mathrm{~km} / \mathrm{h}$. The distance from $A$ to $X$ is $a \mathrm{~km}$. The distance from $A$ to $Y$ and back to $X$ is $a+d+d=a+2 d \mathrm{~km}$. Since the time taken by P and by D is equal, then $\frac{a}{6}=\frac{a+2 d}{90}$ or $15 a=a+2 d$ or $7 a=d$. In the time that it takes M to walk from $Y$ to $B$ at $6 \mathrm{~km} / \mathrm{h}, \mathrm{D}$ rides from $Y$ to $X$ and back to $B$ at $90 \mathrm{~km} / \mathrm{h}$. The distance from $Y$ to $B$ is $b \mathrm{~km}$, and the distance from $Y$ to $X$ and back to $B$ is $d+d+b=b+2 d$ km. Since the time taken by M and by D is equal, then $\frac{b}{6}=\frac{b+2 d}{90}$ or $15 b=b+2 d$ or $7 b=d$. Therefore, $d=7 a=7 b$, and so we can write $d=7 a$ and $b=a$. Thus, the total distance from $A$ to $B$ is $a+d+b=a+7 a+a=9 a \mathrm{~km}$. However, we know that this total distance is 135 km, so $9 a=135$ or $a=15$. Finally, D rides from $A$ to $Y$ to $X$ to $B$, a total distance of $(a+7 a)+7 a+(7 a+a)=23 a \mathrm{~km}$. Since $a=15 \mathrm{~km}$ and D rides at $90 \mathrm{~km} / \mathrm{h}$, then the total time taken for this strategy is $\frac{23 \times 15}{90}=\frac{23}{6} \approx 3.83 \mathrm{~h}$. Since we have a strategy that takes 3.83 h, then the smallest possible time is no more than 3.83 h. Can you explain why this is actually the smallest possible time? If we didn't think of this strategy, another strategy that we might try would be: D and M get on the motorcycle while P walks. D and M ride the motorcycle to $B$. D drops off M at $B$ and rides back to meet P, who is still walking. D picks up P and they drive back to $B$. (M rests at $B$.) This strategy actually takes 4.125 h, which is longer than the strategy shown above, since M is actually sitting still for some of the time. | 
	t<3.9 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	Suppose that $d$ is an odd integer and $e$ is an even integer. How many of the following expressions are equal to an odd integer? $d+d, (e+e) 	imes d, d 	imes d, d 	imes(e+d)$ | 
	Since $d$ is an odd integer, then $d+d$ is even and $d 	imes d$ is odd. Since $e$ is an even integer, then $e+e$ is even, which means that $(e+e) 	imes d$ is even. Also, $e+d$ is odd, which means that $d 	imes(e+d)$ is odd. Thus, 2 of the 4 expressions are equal to an odd integer. | 
	2 | 
	fermat | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Polygons"
] | 2 | 
	In a rectangle, the perimeter of quadrilateral $PQRS$ is given. If the horizontal distance between adjacent dots in the same row is 1 and the vertical distance between adjacent dots in the same column is 1, what is the perimeter of quadrilateral $PQRS$? | 
	The perimeter of quadrilateral $PQRS$ equals $PQ+QR+RS+SP$. Since the dots are spaced 1 unit apart horizontally and vertically, then $PQ=4, QR=4$, and $PS=1$. Thus, the perimeter equals $4+4+RS+1$ which equals $RS+9$. We need to determine the length of $RS$. If we draw a horizontal line from $S$ to point $T$ on $QR$, we create a right-angled triangle $STR$ with $ST=4$ and $TR=3$. By the Pythagorean Theorem, $RS^{2}=ST^{2}+TR^{2}=4^{2}+3^{2}=25$. Since $RS>0$, then $RS=\sqrt{25}=5$. Thus, the perimeter of quadrilateral $PQRS$ is $5+9=14$. | 
	14 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> Volume"
] | 2 | 
	Mike has two containers. One container is a rectangular prism with width 2 cm, length 4 cm, and height 10 cm. The other is a right cylinder with radius 1 cm and height 10 cm. Both containers sit on a flat surface. Water has been poured into the two containers so that the height of the water in both containers is the same. If the combined volume of the water in the two containers is $80 \mathrm{~cm}^{3}$, what is the height of the water in each container? | 
	Suppose that the height of the water in each container is $h \mathrm{~cm}$. Since the first container is a rectangular prism with a base that is 2 cm by 4 cm, then the volume of the water that it contains, in $\mathrm{cm}^{3}$, is $2 \times 4 \times h=8h$. Since the second container is a right cylinder with a radius of 1 cm, then the volume of the water that it contains, in $\mathrm{cm}^{3}$, is $\pi \times 1^{2} \times h=\pi h$. Since the combined volume of the water is $80 \mathrm{~cm}^{3}$, then $8h+\pi h=80$. Thus, $h(8+\pi)=80$ or $h=\frac{80}{8+\pi} \approx 7.18$. Of the given answers, this is closest to 7.2 (that is, the height of the water is closest to 7.2 cm). | 
	7.2 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Polygons"
] | 2 | 
	In rectangle $PQRS$, $PS=6$ and $SR=3$. Point $U$ is on $QR$ with $QU=2$. Point $T$ is on $PS$ with $\angle TUR=90^{\circ}$. What is the length of $TR$? | 
	Since $PQRS$ is a rectangle, then $QR=PS=6$. Therefore, $UR=QR-QU=6-2=4$. Since $PQRS$ is a rectangle and $TU$ is perpendicular to $QR$, then $TU$ is parallel to and equal to $SR$, so $TU=3$. By the Pythagorean Theorem, since $TR>0$, then $TR=\sqrt{TU^{2}+UR^{2}}=\sqrt{3^{2}+4^{2}}=\sqrt{25}=5$. Thus, $TR=5$. | 
	5 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers",
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	The integers $1,2,4,5,6,9,10,11,13$ are to be placed in the circles and squares below with one number in each shape. Each integer must be used exactly once and the integer in each circle must be equal to the sum of the integers in the two neighbouring squares. If the integer $x$ is placed in the leftmost square and the integer $y$ is placed in the rightmost square, what is the largest possible value of $x+y$? | 
	From the given information, if $a$ and $b$ are in two consecutive squares, then $a+b$ goes in the circle between them. Since all of the numbers that we can use are positive, then $a+b$ is larger than both $a$ and $b$. This means that the largest integer in the list, which is 13, cannot be either $x$ or $y$ (and in fact cannot be placed in any square). This is because the number in the circle next to it must be smaller than 13 (because 13 is the largest number in the list) and so cannot be the sum of 13 and another positive number from the list. Thus, for $x+y$ to be as large as possible, we would have $x$ and $y$ equal to 10 and 11 in some order. But here we have the same problem: there is only one larger number from the list (namely 13) that can go in the circles next to 10 and 11, and so we could not fill in the circle next to both 10 and 11. Therefore, the next largest possible value for $x+y$ is when $x=9$ and $y=11$. (We could also swap $x$ and $y$.) Here, we could have $13=11+2$ and $10=9+1$, giving the following partial list: The remaining integers $(4,5$ and 6) can be put in the shapes in the following way that satisfies the requirements. This tells us that the largest possible value of $x+y$ is 20. | 
	20 | 
	cayley | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> 3D Shapes"
] | 2 | 
	Two identical smaller cubes are stacked next to a larger cube. Each of the two smaller cubes has a volume of 8. What is the volume of the larger cube? | 
	Since $2 \times 2 \times 2=8$, a cube with edge length 2 has volume 8. Therefore, each of the cubes with volume 8 have a height of 2. This means that the larger cube has a height of $2+2=4$, which means that its volume is $4^{3}=4 \times 4 \times 4=64$. | 
	64 | 
	cayley | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	In a magic square, the numbers in each row, the numbers in each column, and the numbers on each diagonal have the same sum. In the magic square shown, what is the value of $x$? | 
	Using the second row, we see that the sum of the numbers in each row, column and diagonal must be $3.6 + 3 + 2.4 = 9$. Since the sum of the numbers in the first column must be 9, then the bottom left number must be $9 - 2.3 - 3.6 = 9 - 5.9 = 3.1$. Since the sum of the numbers in the top left to bottom right diagonal must be 9, then the bottom right number must be $9 - 2.3 - 3 = 9 - 5.3 = 3.7$. Since the sum of the numbers in the bottom row must be 9, then $3.1 + x + 3.7 = 9$ and so $x + 6.8 = 9$ or $x = 9 - 6.8 = 2.2$. We can complete the magic square as shown: \begin{tabular}{|c|c|c|} \hline 2.3 & 3.8 & 2.9 \\ \hline 3.6 & 3 & 2.4 \\ \hline 3.1 & 2.2 & 3.7 \\ \hline \end{tabular} | 
	2.2 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Angles"
] | 2 | 
	In a number line, point $P$ is at 3 and $V$ is at 33. The number line between 3 and 33 is divided into six equal parts by the points $Q, R, S, T, U$. What is the sum of the lengths of $PS$ and $TV$? | 
	The segment of the number line between 3 and 33 has length $33 - 3 = 30$. Since this segment is divided into six equal parts, then each part has length $30 \div 6 = 5$. The segment $PS$ is made up of 3 of these equal parts, and so has length $3 \times 5 = 15$. The segment $TV$ is made up of 2 of these equal parts, and so has length $2 \times 5 = 10$. Thus, the sum of the lengths of $PS$ and $TV$ is $15 + 10$ or 25. | 
	25 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Least Common Multiples (LCM)"
] | 2 | 
	What is the tens digit of the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14$, and 15? | 
	Among the list $10,11,12,13,14,15$, the integers 11 and 13 are prime. Also, $10=2 \times 5$ and $12=2 \times 2 \times 3$ and $14=2 \times 7$ and $15=3 \times 5$. For an integer $N$ to be divisible by each of these six integers, $N$ must include at least two factors of 2 and one factor each of $3,5,7,11,13$. Note that $2^{2} \times 3 \times 5 \times 7 \times 11 \times 13=60060$. (This is the least common multiple of $10,11,12,13,14,15$.) To find the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14,15$, we can find the smallest six-digit positive integer that is a multiple of 60060. Note that $1 \times 60060=60060$ and that $2 \times 60060=120120$. Therefore, the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14,15$ is 120120. The tens digit of this number is 2. | 
	2 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Area"
] | 2 | 
	What is the area of rectangle \( PQRS \) if the perimeter of rectangle \( TVWY \) is 60? | 
	The perimeter of \( TVWY \) is 60, so \( 12r = 60 \) or \( r = 5 \). The area of \( PQRS \) is \( 30 \times 20 = 600 \). | 
	600 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	What is the tens digit of the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14$, and 15? | 
	Among the list $10,11,12,13,14,15$, the integers 11 and 13 are prime. Also, $10=2 \times 5$ and $12=2 \times 2 \times 3$ and $14=2 \times 7$ and $15=3 \times 5$. For an integer $N$ to be divisible by each of these six integers, $N$ must include at least two factors of 2 and one factor each of $3,5,7,11,13$. Note that $2^{2} \times 3 \times 5 \times 7 \times 11 \times 13=60060$. (This is the least common multiple of $10,11,12,13,14,15$.) To find the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14,15$, we can find the smallest six-digit positive integer that is a multiple of 60060. Note that $1 \times 60060=60060$ and that $2 \times 60060=120120$. Therefore, the smallest six-digit positive integer that is divisible by each of $10,11,12,13,14,15$ is 120120. The tens digit of this number is 2. | 
	2 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	The integer 636405 may be written as the product of three 2-digit positive integers. What is the sum of these three integers? | 
	We begin by factoring the given integer into prime factors. Since 636405 ends in a 5, it is divisible by 5, so $636405=5 \times 127281$. Since the sum of the digits of 127281 is a multiple of 3, then it is a multiple of 3, so $636405=5 \times 3 \times 42427$. The new quotient (42427) is divisible by 7, which gives $636405=5 \times 3 \times 7 \times 6061$. We can proceed by systematic trial and error to see if 6061 is divisible by $11,13,17,19$, and so on. After some work, we can see that $6061=11 \times 551=11 \times 19 \times 29$. Therefore, $636405=3 \times 5 \times 7 \times 11 \times 19 \times 29$. We want to rewrite this as the product of three 2-digit numbers. Since $3 \times 5 \times 7=105$ which has three digits, and the product of any three of the six prime factors of 636405 is at least as large as this, then we cannot take the product of three of these prime factors to form a two-digit number. Thus, we have to combine the six prime factors in pairs. The prime factor 29 cannot be multiplied by any prime factor larger than 3, since $29 \times 3=87$ which has two digits, but $29 \times 5=145$, which has too many digits. This gives us $636405=87 \times 5 \times 7 \times 11 \times 19$. The prime factor 19 can be multiplied by 5 (since $19 \times 5=95$ which has two digits) but cannot be multiplied by any prime factor larger than 5, since $19 \times 7=133$, which has too many digits. This gives us $636405=87 \times 95 \times 7 \times 11=87 \times 95 \times 77$. The sum of these three 2-digit divisors is $87+95+77=259$. | 
	259 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> Surface Area"
] | 2 | 
	A cube has an edge length of 30. A rectangular solid has edge lengths 20, 30, and $L$. If the cube and the rectangular solid have equal surface areas, what is the value of $L$? | 
	The cube has six identical square faces, each of which is 30 by 30. Therefore, the surface area of the cube is $6(30^{2})=5400$. The rectangular solid has two faces that are 20 by 30, two faces that are 20 by $L$, and two faces that are 30 by $L$. Thus, the surface area of the rectangular solid is $2(20)(30)+2(20L)+2(30L)=100L+1200$. Since the surface areas of the two solids are equal, then $100L+1200=5400$ or $100L=4200$, and so $L=42$. | 
	42 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Arithmetic -> Other"
] | 2 | 
	In a magic square, the numbers in each row, the numbers in each column, and the numbers on each diagonal have the same sum. In the magic square shown, what is the value of $x$? | 
	Using the second row, we see that the sum of the numbers in each row, column and diagonal must be $3.6 + 3 + 2.4 = 9$. Since the sum of the numbers in the first column must be 9, then the bottom left number must be $9 - 2.3 - 3.6 = 9 - 5.9 = 3.1$. Since the sum of the numbers in the top left to bottom right diagonal must be 9, then the bottom right number must be $9 - 2.3 - 3 = 9 - 5.3 = 3.7$. Since the sum of the numbers in the bottom row must be 9, then $3.1 + x + 3.7 = 9$ and so $x + 6.8 = 9$ or $x = 9 - 6.8 = 2.2$. We can complete the magic square as shown: \begin{tabular}{|c|c|c|} \hline 2.3 & 3.8 & 2.9 \\ \hline 3.6 & 3 & 2.4 \\ \hline 3.1 & 2.2 & 3.7 \\ \hline \end{tabular} | 
	2.2 | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	A digital clock shows the time 4:56. How many minutes will pass until the clock next shows a time in which all of the digits are consecutive and are in increasing order? | 
	We would like to find the first time after 4:56 where the digits are consecutive digits in increasing order. It would make sense to try 5:67, but this is not a valid time. Similarly, the time cannot start with 6, 7, 8, or 9. No time starting with 10 or 11 starts with consecutive increasing digits. Starting with 12, we obtain the time 12:34. This is the first such time. We need to determine the length of time between 4:56 and 12:34. From 4:56 to 11:56 is 7 hours, or \(7 \times 60 = 420\) minutes. From 11:56 to 12:00 is 4 minutes. From 12:00 to 12:34 is 34 minutes. Therefore, from 4:56 to 12:34 is \(420 + 4 + 34 = 458\) minutes. | 
	458 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Prime Numbers"
] | 2 | 
	Suppose that \(p\) and \(q\) are two different prime numbers and that \(n=p^{2} q^{2}\). What is the number of possible values of \(n\) with \(n<1000\)? | 
	We note that \(n=p^{2} q^{2}=(p q)^{2}\). Since \(n<1000\), then \((p q)^{2}<1000\) and so \(p q<\sqrt{1000} \approx 31.6\). Finding the number of possible values of \(n\) is thus equivalent to finding the number of positive integers \(m\) with \(1 \leq m \leq 31<\sqrt{1000}\) that are the product of two prime numbers. The prime numbers that are at most 31 are \(2,3,5,7,11,13,17,19,23,29,31\). The distinct products of pairs of these that are at most 31 are: \(2 \times 3=6, 2 \times 5=10, 2 \times 7=14, 2 \times 11=22, 2 \times 13=26, 3 \times 5=15, 3 \times 7=21\). Any other product either duplicates one that we have counted already, or is larger than 31. Therefore, there are 7 such values of \(n\). | 
	7 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations",
  "Mathematics -> Geometry -> Plane Geometry -> Angles"
] | 2 | 
	The line with equation $y = x$ is translated 3 units to the right and 2 units down. What is the $y$-intercept of the resulting line? | 
	The line with equation $y = x$ has slope 1 and passes through $(0,0)$. When this line is translated, its slope does not change. When this line is translated 3 units to the right and 2 units down, every point on the line is translated 3 units to the right and 2 units down. Thus, the point $(0,0)$ moves to $(3,-2)$. Therefore, the new line has slope 1 and passes through $(3,-2)$. Thus, its equation is $y - (-2) = 1(x - 3)$ or $y + 2 = x - 3$ or $y = x - 5$. The $y$-intercept of this line is -5. | 
	-5 | 
	fermat | 
| 
	[
  "Mathematics -> Discrete Mathematics -> Graph Theory"
] | 2 | 
	For how many of the given drawings can the six dots be labelled to represent the links between suspects? | 
	Two of the five drawings can be labelled to represent the given data. | 
	2 | 
	pascal | 
| 
	[
  "Mathematics -> Discrete Mathematics -> Combinatorics"
] | 2 | 
	Joshua chooses five distinct numbers. In how many different ways can he assign these numbers to the variables $p, q, r, s$, and $t$ so that $p<s, q<s, r<t$, and $s<t$? | 
	Suppose that the five distinct numbers that Joshua chooses are $V, W, X, Y, Z$, and that $V<W<X<Y<Z$. We want to assign these to $p, q, r, s, t$ so that $p<s$ and $q<s$ and $r<t$ and $s<t$. First, we note that $t$ must be the largest of $p, q, r, s, t$. This is because $r<t$ and $s<t$, and because $p<s$ and $q<s$, we get $p<s<t$ and $q<s<t$, so $p<t$ and $q<t$. Since $t$ is the largest, then $Z$ must be $t$. Now neither $p$ nor $q$ can be the second largest of the numbers (which is $Y$), since $p$ and $q$ are both smaller than $s$ and $t$. Therefore, there are two cases: $Y=r$ or $Y=s$. Case 1: $Y=r$ We have $Y=r$ and $Z=t$. This leaves $V, W, X$ (which satisfy $V<W<X$) to be assigned to $p, q$, s (which satisfy $p<s$ and $q<s$). Since $X$ is the largest of $V, W, X$ and $s$ is the largest of $p, q, s$, then $X=s$. This leaves $V, W$ to be assigned to $p, q$. Since there is no known relationship between $p$ and $q$, then there are 2 possibilities: either $V=p$ and $W=q$, or $V=q$ and $W=p$. Therefore, if $Y=r$, there are 2 possible ways to assign the numbers. Case 2: $Y=s$ We have $Y=s$ and $Z=t$. This leaves $V, W, X$ (which satisfy $V<W<X$) to be assigned to $p, q, r$. There is no known relationship between $p, q, r$. Therefore, there are 3 ways to assign one of $V, W, X$ to $p$. For each of these 3 ways, there are 2 ways of assigning one of the two remaining numbers to $q$. For each of these $3 \times 2$ ways, there is only 1 choice for the number assigned to $r$. Overall, this gives $3 \times 2 \times 1=6$ ways to do this assignment. Therefore, if $Y=s$, there are 6 possible ways to assign the numbers. Having examined the two possibilities, there are $2+6=8$ different ways to assign the numbers. | 
	8 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Intermediate Algebra -> Inequalities"
] | 2 | 
	What is the median of the numbers in the list $19^{20}, \frac{20}{19}, 20^{19}, 2019, 20 \times 19$? | 
	Since $\frac{20}{19}$ is larger than 1 and smaller than 2, and $20 \times 19 = 380$, then $\frac{20}{19} < 20 \times 19 < 2019$. We note that $19^{20} > 10^{20} > 10000$ and $20^{19} > 10^{19} > 10000$. This means that both $19^{20}$ and $20^{19}$ are greater than 2019. In other words, of the five numbers $19^{20}, \frac{20}{19}, 20^{19}, 2019, 20 \times 19$, the third largest is 2019. Since the list contains 5 numbers, then its median is the third largest number, which is 2019. | 
	2019 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Circles"
] | 2 | 
	Two circles with equal radii intersect as shown. The area of the shaded region equals the sum of the areas of the two unshaded regions. If the area of the shaded region is $216\pi$, what is the circumference of each circle? | 
	Suppose that the radius of each of the circles is $r$. Since the two circles are identical, then the two circles have equal area. Since the shaded area is common to the two circles, then the unshaded pieces of each circle have equal areas. Since the combined area of the unshaded regions equals that of the shaded region, or $216\pi$, then each of the unshaded regions have area $\frac{1}{2} \times 216\pi=108\pi$. The total area of one of the circles equals the sum of the areas of the shaded region and one unshaded region, or $216\pi+108\pi=324\pi$. Since the radius of the circle is $r$, then $\pi r^{2}=324\pi$ or $r^{2}=324$. Since $r>0$, then $r=\sqrt{324}=18$. Therefore, the circumference of each circle is $2\pi r=2\pi(18)=36\pi$. | 
	36\pi | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Sam rolls a fair four-sided die containing the numbers $1,2,3$, and 4. Tyler rolls a fair six-sided die containing the numbers $1,2,3,4,5$, and 6. What is the probability that Sam rolls a larger number than Tyler? | 
	We make a chart that shows the possible combinations of the number that Sam rolls and the number that Tyler rolls. Since Sam rolls a fair four-sided die and Tyler rolls a fair six-sided die, then there are 4 possible numbers that Sam can roll and 6 possible numbers that Tyler can roll and so there are $4 \times 6=24$ equally likely combinations in total. In the chart, we put a Y when Sam's roll is larger than Tyler's and an N otherwise. Since there are 24 equally likely possibilities and Sam's roll is larger in 6 of these, then the probability that Sam's roll is larger than Tyler's is $\frac{6}{24}=\frac{1}{4}$. | 
	\frac{1}{4} | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	What number is placed in the shaded circle if each of the numbers $1,5,6,7,13,14,17,22,26$ is placed in a different circle, the numbers 13 and 17 are placed as shown, and Jen calculates the average of the numbers in the first three circles, the average of the numbers in the middle three circles, and the average of the numbers in the last three circles, and these three averages are equal? | 
	The averages of groups of three numbers are equal if the sums of the numbers in each group are equal, because in each case the average equals the sum of the three numbers divided by 3. Therefore, the averages of three groups of three numbers are equal if the sum of each of the three groups are equal. 
 The original nine numbers have a sum of 
 $$ 1+5+6+7+13+14+17+22+26=111 $$ 
 and so if these are divided into three groups of equal sum, the sum of each group is $\frac{111}{3}=37$. Consider the middle three numbers. Since two of the numbers are 13 and 17, then the third number must be $37-13-17=7$. We note that the remaining six numbers can be split into the groups $5,6,26$ and $1,14,22$, each of which also has a sum of 37. 
 Therefore, the number that is placed in the shaded circle is 7. | 
	7 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	How many integers between 100 and 300 are multiples of both 5 and 7, but are not multiples of 10? | 
	The integers that are multiples of both 5 and 7 are the integers that are multiples of 35. The smallest multiple of 35 greater than 100 is $3 	imes 35=105$. Starting at 105 and counting by 35s, we obtain 105, 140, 175, 210, 245, 280, 315. The integers in this list that are between 100 and 300 and are not multiples of 10 (that is, whose units digit is not 0) are $105, 175, 245$, of which there are 3. | 
	3 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Sequences -> Other"
] | 2 | 
	Reading from left to right, a sequence consists of 6 X's, followed by 24 Y's, followed by 96 X's. After the first \(n\) letters, reading from left to right, one letter has occurred twice as many times as the other letter. What is the sum of the four possible values of \(n\)? | 
	First, we note that we cannot have \(n \leq 6\), since the first 6 letters are X's. After 6 X's and 3 Y's, there are twice as many X's as Y's. In this case, \(n=6+3=9\). After 6 X's and 12 Y's, there are twice as many Y's as X's. In this case, \(n=6+12=18\). The next letters are all Y's (with 24 Y's in total), so there are no additional values of \(n\) with \(n \leq 6+24=30\). At this point, there are 6 X's and 24 Y's. After 24 Y's and 12 X's (that is, 6 additional X's), there are twice as many Y's as X's. In this case, \(n=24+12=36\). After 24 Y's and 48 X's (that is, 42 additional X's), there are twice as many X's as Y's. In this case, \(n=24+48=72\). Since we are told that there are four values of \(n\), then we have found them all, and their sum is \(9+18+36+72=135\). | 
	135 | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Other"
] | 2 | 
	What is the probability that the arrow stops on a shaded region if a circular spinner is divided into six regions, four regions each have a central angle of $x^{\circ}$, and the remaining regions have central angles of $20^{\circ}$ and $140^{\circ}$? | 
	The six angles around the centre of the spinner add to $360^{\circ}$. 
 Thus, $140^{\circ}+20^{\circ}+4x^{\circ}=360^{\circ}$ or $4x=360-140-20=200$, and so $x=50$. 
 Therefore, the sum of the central angles of the shaded regions is $140^{\circ}+50^{\circ}+50^{\circ}=240^{\circ}$. 
 The probability that the spinner lands on a shaded region is the fraction of the entire central angle that is shaded, which equals the sum of the central angles of the shaded regions divided by the total central angle $\left(360^{\circ}\right)$, or $\frac{240^{\circ}}{360^{\circ}}=\frac{2}{3}$. | 
	\frac{2}{3} | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	How many of the integers from 1 to 100, inclusive, have at least one digit equal to 6? | 
	The integers between 1 and 100 that have a ones digit equal to 6 are \(6, 16, 26, 36, 46, 56, 66, 76, 86, 96\), of which there are 10. The additional integers between 1 and 100 that have a tens digit equal to 6 are \(60, 61, 62, 63, 64, 65, 67, 68, 69\), of which there are 9. Since the digit 6 must occur as either the ones digit or the tens digit, there are \(10 + 9 = 19\) integers between 1 and 100 with at least 1 digit equal to 6. | 
	19 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Solid Geometry -> 3D Shapes"
] | 2 | 
	A water tower in the shape of a cylinder has radius 10 m and height 30 m. A spiral staircase, with constant slope, circles once around the outside of the water tower. A vertical ladder of height 5 m then extends to the top of the tower. What is the total distance along the staircase and up the ladder to the top of the tower? | 
	To calculate the total distance, we add the length of the vertical ladder (5 m) to the length of the spiral staircase. The spiral staircase wraps once around the tower. Since the tower has radius 10 m, then its circumference is $2 \times \pi \times 10=20 \pi \mathrm{m}$. We can thus 'unwrap' the outside of the tower to form a rectangle of width $20 \pi \mathrm{m}$ and height 30 m. Since the staircase has a constant slope, then the staircase becomes a straight line on the unwrapped tower. Since the ladder accounts for the final 5 m of the height of the tower and the tower has total height 30 m, then the top of the spiral staircase is $30-5=25 \mathrm{~m}$ above its base. We can thus calculate the length of the staircase (which is positive), using the Pythagorean Theorem, to be $\sqrt{(20 \pi \mathrm{m})^{2}+(25 \mathrm{~m})^{2}} \approx 67.62 \mathrm{~m}$. The total distance along the staircase and up the ladder is approximately $5+67.62 \approx 72.62 \mathrm{~m}$. Of the given choices, this is closest to 72.6 m. | 
	72.6 \mathrm{~m} | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	If $a$ and $b$ are positive integers, the operation $
abla$ is defined by $a 
abla b=a^{b} 	imes b^{a}$. What is the value of $2 
abla 3$? | 
	Since $a 
abla b=a^{b} 	imes b^{a}$, then $2 
abla 3=2^{3} 	imes 3^{2}=8 	imes 9=72$. | 
	72 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Prealgebra -> Integers"
] | 2 | 
	How many integers are greater than $\sqrt{15}$ and less than $\sqrt{50}$? | 
	Using a calculator, $\sqrt{15} \approx 3.87$ and $\sqrt{50} \approx 7.07$. The integers between these real numbers are $4,5,6,7$, of which there are 4 . Alternatively, we could note that integers between $\sqrt{15}$ and $\sqrt{50}$ correspond to values of $\sqrt{n}$ where $n$ is a perfect square and $n$ is between 15 and 50 . The perfect squares between 15 and 50 are $16,25,36,49$, of which there are 4. | 
	4 | 
	fermat | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Other",
  "Mathematics -> Discrete Mathematics -> Combinatorics"
] | 2 | 
	There are four people in a room. For every two people, there is a $50 \%$ chance that they are friends. Two people are connected if they are friends, or a third person is friends with both of them, or they have different friends who are friends of each other. What is the probability that every pair of people in this room is connected? | 
	We label the four people in the room $A, B, C$, and $D$. We represent each person by a point. There are six possible pairs of friends: $AB, AC, AD, BC, BD$, and $CD$. We represent a friendship by joining the corresponding pair of points and a non-friendship by not joining the pair of points. Since each pair of points is either joined or not joined and there are 6 possible pairs, then there are $2 \times 2 \times 2 \times 2 \times 2 \times 2=2^{6}=64$ possible configurations of line segments in the diagram. Since each pair of points has equal probability of being joined or not joined, then each of the 64 possible configurations is equally likely, so has probability $\frac{1}{64}$. Points $A$ and $B$, for example, are 'connected' according to the definition, if they are joined, or if they are both joined to $C$, or if they are both joined to $D$, or if one is joined to $C$, the other to $D$ and $C$ and $D$ are joined. In other words, points $A$ and $B$ are connected if we can pass from $A$ to $B$ along line segments, possibly through one or both of $C$ and $D$. If each pair of points is connected, we call the configuration fully connected. Thus, we need to count the number of configurations that are fully connected. First, we count the number of configurations including each possible number of line segments (0 through 6). After this, we will analyze each case to see which configurations are fully connected. - 0 line segments: There is 1 such configuration. - 6 line segments: There is 1 such configuration. - 1 line segment: There are 6 such configurations, because we can choose any one of the 6 possible segments. - 5 line segments: There are 6 such configurations, because we can start with all 6 line segments and remove any one of the 6 possible segments. - 2 line segments: There are 15 such configurations. This is because there are 6 possible choices for the first line segment to add, and then 5 possible choices for the second line segment. This looks like $6 \times 5$ configurations, but each configuration is counted twice here (as we could choose $AB$ and then $BD$ or $BD$ and then $AB$). Therefore, there are $\frac{1}{2} \times 6 \times 5=15$ configurations. - 4 line segments: There are 15 such configurations, because we can start with all 6 line segments and remove any of the 15 possible pairs of 2 line segments. - 3 line segments: There are 20 configurations, because there are 64 configurations in total and we have already accounted for $1+1+6+6+15+15=44$ configurations. Now we analyze each of the possible classes of configurations to see if the relevant configurations are fully connected or not: - 0 line segments: This configuration is not fully connected. - 6 line segments: This configuration is fully connected. - 1 line segment: Each of these 6 configurations is not fully connected, since it can only have 2 points joined. - 5 line segments: Each of these 6 configurations is fully connected, since only one pair of points is not joined. If this pair is $AB$, for instance, then $A$ and $B$ are each joined to $C$, so the configuration is fully connected. The same is true no matter which pair is not joined. - 2 line segments: Each of these 15 configurations is not fully connected, since the two line segments can only include 3 points with the fourth point not connected to any other point or two pairs of connected points. - 4 line segments: Each of these 15 configurations is fully connected. Consider starting with all 6 pairs of points joined, and then remove two line segments. There are two possibilities: either the two line segments share an endpoint, or they do not. An example of the first possibility is removing $AB$ and $BC$. This configuration is fully connected, and is representative of this subcase. An example of the second possibility is removing $AB$ and $CD$. This configuration is fully connected, and is representative of this subcase. Therefore, all 15 of these configurations are fully connected. - 3 line segments: There are 20 such configurations. Each of these configurations involve joining more than 2 points, since 2 points can only be joined by 1 line segment. There are several possibilities: * Some of these 20 configurations involve only 3 points. Since there are three line segments that join 3 points, these configurations look like a triangle and these are not fully connected. There are 4 such configurations, which we can see by choosing 1 of 4 points to not include. * Some of the remaining 16 configurations involve connecting 1 point to each of the other 3 points. Without loss of generality, suppose that $A$ is connected to each of the other points. This configuration is fully connected since $B$ and $C$ are connected through $A$, as are $B$ and $D, C$ and $D$, and is representative of this subcase. There are 4 such configurations, which we can see by choosing 1 of 4 points to be connected to each of the other points. * Consider the remaining $20-4-4=12$ configurations. Each of these involves all 4 points and cannot have 1 point connected to the other 3 points. Without loss of generality, we start by joining $AB$. If $CD$ is joined, then one of $AC, AD, BC$, and $BD$ is joined, which means that each of $A$ and $B$ is connected to each of $C$ and $D$. This type of configuration is fully connected. If $CD$ is not joined, then two of $AC, AD, BC$, and $BD$ are joined. We cannot have $AC$ and $AD$ both joined, or $BC$ and $BD$ both joined, since we cannot have 3 segments coming from the same point. Also, we cannot have $AC$ and $BC$ both joined, or $AD$ and $BD$ both joined, since we cannot include just 3 points. Therefore, we must have $AC$ and $BD$ joined, or $AD$ and $BC$ joined. This type of configuration is fully connected. Therefore, of the 64 possible configurations, $1+6+15+4+12=38$ are fully connected. Therefore, the probability that every pair of people in this room is connected is $\frac{38}{64}=\frac{19}{32}$. | 
	\frac{19}{32} | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Algebra -> Equations and Inequalities"
] | 2 | 
	On Monday, Mukesh travelled \(x \mathrm{~km}\) at a constant speed of \(90 \mathrm{~km} / \mathrm{h}\). On Tuesday, he travelled on the same route at a constant speed of \(120 \mathrm{~km} / \mathrm{h}\). His trip on Tuesday took 16 minutes less than his trip on Monday. What is the value of \(x\)? | 
	We recall that time \(=\frac{\text { distance }}{\text { speed }}\). Travelling \(x \mathrm{~km}\) at \(90 \mathrm{~km} / \mathrm{h}\) takes \(\frac{x}{90}\) hours. Travelling \(x \mathrm{~km}\) at \(120 \mathrm{~km} / \mathrm{h}\) takes \(\frac{x}{120}\) hours. We are told that the difference between these lengths of time is 16 minutes. Since there are 60 minutes in an hour, then 16 minutes is equivalent to \(\frac{16}{60}\) hours. Since the time at \(120 \mathrm{~km} / \mathrm{h}\) is 16 minutes less than the time at \(90 \mathrm{~km} / \mathrm{h}\), then \(\frac{x}{90}-\frac{x}{120}=\frac{16}{60}\). Combining the fractions on the left side using a common denominator of \(360=4 \times 90=3 \times 120\), we obtain \(\frac{x}{90}-\frac{x}{120}=\frac{4 x}{360}-\frac{3 x}{360}=\frac{x}{360}\). Thus, \(\frac{x}{360}=\frac{16}{60}\). Since \(360=6 \times 60\), then \(\frac{16}{60}=\frac{16 \times 6}{360}=\frac{96}{360}\). Thus, \(\frac{x}{360}=\frac{96}{360}\) which means that \(x=96\). | 
	96 | 
	pascal | 
| 
	[
  "Mathematics -> Geometry -> Plane Geometry -> Area"
] | 2 | 
	In square $PQRS$ with side length 2, each of $P, Q, R$, and $S$ is the centre of a circle with radius 1. What is the area of the shaded region? | 
	The area of the shaded region is equal to the area of square $PQRS$ minus the combined areas of the four unshaded regions inside the square. Since square $PQRS$ has side length 2, its area is $2^{2}=4$. Since $PQRS$ is a square, then the angle at each of $P, Q, R$, and $S$ is $90^{\circ}$. Since each of $P, Q, R$, and $S$ is the centre of a circle with radius 1, then each of the four unshaded regions inside the square is a quarter circle of radius 1. Thus, the combined areas of the four unshaded regions inside the square equals four quarters of a circle of radius 1, or the area of a whole circle of radius 1. This area equals $\pi(1)^{2}=\pi$. Therefore, the shaded region equals $4-\pi$. | 
	4-\pi | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations",
  "Mathematics -> Algebra -> Prealgebra -> Simple Equations"
] | 2 | 
	What is $x-y$ if a town has 2017 houses, 1820 have a dog, 1651 have a cat, 1182 have a turtle, $x$ is the largest possible number of houses that have a dog, a cat, and a turtle, and $y$ is the smallest possible number of houses that have a dog, a cat, and a turtle? | 
	Since there are 1182 houses that have a turtle, then there cannot be more than 1182 houses that have a dog, a cat, and a turtle. 
 Since there are more houses with dogs and more houses with cats than there are with turtles, it is possible that all 1182 houses that have a turtle also have a dog and a cat. 
 Therefore, the maximum possible number of houses that have all three animals is 1182, and so $x=1182$. 
 Since there are 1182 houses that have a turtle and there are 2017 houses in total, then there are $2017-1182=835$ houses that do not have a turtle. 
 Now, there are 1651 houses that have a cat. 
 Since there are 835 houses that do not have a turtle, then there are at most 835 houses that have a cat and do not have a turtle. In other words, not all of the houses that do not have a turtle necessarily have a cat. 
 This means that there are at least $1651-835=816$ houses that have both a cat and a turtle. 
 Lastly, there are 1820 houses that have a dog. 
 Since there are at least 816 houses that have both a cat and a turtle, then there are at most $2017-816=1201$ houses that either do not have a cat or do not have a turtle (or both). 
 Since there are 1820 houses that do have a dog, then there are at least $1820-1201=619$ houses that have a dog and have both a cat and a turtle as well. 
 In other words, the minimum possible number of houses that have all three animals is 619, and so $y=619$. 
 The two Venn diagrams below show that each of these situations is actually possible: 
  
 Since $x=1182$ and $y=619$, then $x-y=563$. | 
	563 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Greatest Common Divisors (GCD)"
] | 2 | 
	We call the pair $(m, n)$ of positive integers a happy pair if the greatest common divisor of $m$ and $n$ is a perfect square. For example, $(20, 24)$ is a happy pair because the greatest common divisor of 20 and 24 is 4. Suppose that $k$ is a positive integer such that $(205800, 35k)$ is a happy pair. What is the number of possible values of $k$ with $k \leq 2940$? | 
	Suppose that $(205800, 35k)$ is a happy pair. We find the prime factorization of 205800: $205800 = 2^3 \times 3^1 \times 5^2 \times 7^3$. Note also that $35k = 5^1 \times 7^1 \times k$. Let $d$ be the greatest common divisor of 205800 and $35k$. We want to find the number of possible values of $k \leq 2940$ for which $d$ is a perfect square. Since both 5 and 7 are prime divisors of 205800 and $35k$, then 5 and 7 are both prime divisors of $d$. For $d$ to be a perfect square, 5 and 7 must both divide $d$ an even number of times. Since the prime powers of 5 and 7 in the prime factorization of 205800 are $5^2$ and $7^3$, respectively, then for $d$ to be a perfect square, it must be the case that $5^2$ and $7^2$ are factors of $d$. Since $d = 5 \times 7 \times k$, then $k = 5 \times 7 \times j = 35j$ for some positive integer $j$. Since $k \leq 2940$, then $35j \leq 2940$ which gives $j \leq 84$. We now know that $d$ is the gcd of $2^3 \times 3^1 \times 5^2 \times 7^3$ and $5^2 \times 7^2 \times j$. What further information does this give us about $j$? - $j$ cannot be divisible by 3, otherwise $d$ would have a factor of $3^1$ and cannot have a factor of $3^2$ which would mean that $d$ is not a perfect square. - $j$ cannot be divisible by 7, otherwise $d$ has a factor of $7^3$ and no larger power of 7, in which case $d$ would not be a perfect square. - If $j$ is divisible by 2, then the prime factorization of $j$ must include $2^2$. In other words, the prime factorization of $j$ cannot include $2^1$ or $2^3$. - $j$ can be divisible by 5 since even if $j$ is divisible by 5, the power of 5 in $d$ is already limited by the power of 5 in 205800. - $j$ can be divisible by prime numbers other than $2, 3, 5$ or 7 since 205800 is not and so the gcd will not be affected. Finally, we consider two cases: $j$ is divisible by $2^2$ but not by a larger power of 2, and $j$ is not divisible by 2. Case 1: $j$ is divisible by $2^2$ but not by a larger power of 2 Here, $j = 2^2h = 4h$ for some odd positive integer $h$. Since $j \leq 84$, then $4h \leq 84$ which means that $h \leq 21$. Knowing that $j$ cannot be divisible by 3 or by 7, this means that the possible values of $h$ are $1, 5, 11, 13, 17, 19$. Each of these values of $h$ produces a value of $j$ that satisfies the conditions in the five bullets above. There are thus 6 values of $j$ in this case. Case 2: $j$ is not divisible by 2 Here, $j$ is odd. Knowing that $j$ cannot be divisible by 3 or by 7 and that $j \leq 84$, this means that the possible values of $j$ are: $1, 5, 11, 13, 17, 19, 23, 25, 29, 31, 37, 41, 43, 47, 53, 55, 59, 61, 65, 67, 71, 73, 79, 83$. There are thus 24 values of $j$ in this case. In total, there are 30 values of $j$ and so there are 30 possible values of $k \leq 2940$ for which $(205800, 35k)$ is a happy pair. | 
	30 | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Each of four doors is randomly either open or closed. What is the probability that exactly two of the four doors are open? | 
	There are 2 possible 'states' for each door: open or closed. Therefore, there are $2 	imes 2 	imes 2 	imes 2=2^{4}=16$ possible combinations of open and closed for the 4 doors. If exactly 2 of the 4 doors are open, these doors could be the 1st and 2nd, or 1st and 3rd, or 1st and 4th, or 2nd and 3rd, or 2nd and 4th, or 3rd and 4th. Thus, there are 6 ways in which 2 of the 4 doors can be open. Since each door is randomly open or closed, then the probability that exactly 2 doors are open is $rac{6}{16}$ which is equivalent to $rac{3}{8}$. | 
	rac{3}{8} | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Math Word Problems"
] | 2 | 
	Azmi has four blocks, each in the shape of a rectangular prism and each with dimensions $2 	imes 3 	imes 6$. She carefully stacks these four blocks on a flat table to form a tower that is four blocks high. What is the number of possible heights for this tower? | 
	The height of each block is 2, 3 or 6. Thus, the total height of the tower of four blocks is the sum of the four heights, each of which equals 2, 3 or 6. If 4 blocks have height 6, the total height equals $4 	imes 6=24$. If 3 blocks have height 6, the fourth block has height 3 or 2. Therefore, the possible heights are $3 	imes 6+3=21$ and $3 	imes 6+2=20$. If 2 blocks have height 6, the third and fourth blocks have height 3 or 2. Therefore, the possible heights are $2 	imes 6+3+3=18$ and $2 	imes 6+3+2=17$ and $2 	imes 6+2+2=16$. If 1 block has height 6, the second, third and fourth blocks have height 3 or 2. Therefore, the possible heights are $6+3+3+3=15$ and $6+3+3+2=14$ and $6+3+2+2=13$ and $6+2+2+2=12$. If no blocks have height 6, the possible heights are $3+3+3+3=12$ and $3+3+3+2=11$ and $3+3+2+2=10$ and $3+2+2+2=9$ and $2+2+2+2=8$. The possible heights are thus $24, 21, 20, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8$. There are 14 possible heights. | 
	14 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Prime Numbers"
] | 2 | 
	How many of the integers \(19, 21, 23, 25, 27\) can be expressed as the sum of two prime numbers? | 
	We note that all of the given possible sums are odd, and also that every prime number is odd with the exception of 2 (which is even). When two odd integers are added, their sum is even. When two even integers are added, their sum is even. When one even integer and one odd integer are added, their sum is odd. Therefore, if the sum of two integers is odd, it must be the sum of an even integer and an odd integer. Since the only even prime number is 2, then for an odd integer to be the sum of two prime numbers, it must be the sum of 2 and another prime number. Note that \(19 = 2 + 17\), \(21 = 2 + 19\), \(23 = 2 + 21\), \(25 = 2 + 23\), \(27 = 2 + 25\). Since 17, 19, and 23 are prime numbers and 21 and 25 are not prime numbers, then 3 of the given integers are the sum of two prime numbers. | 
	3 | 
	pascal | 
| 
	[
  "Mathematics -> Applied Mathematics -> Statistics -> Probability -> Counting Methods -> Combinations"
] | 2 | 
	Miyuki texted a six-digit integer to Greer. Two of the digits of the six-digit integer were 3s. Unfortunately, the two 3s that Miyuki texted did not appear and Greer instead received the four-digit integer 2022. How many possible six-digit integers could Miyuki have texted? | 
	The six-digit integer that Miyuki sent included the digits 2022 in that order along with two 3s. If the two 3s were consecutive digits, there are 5 possible integers: 332022, 233022, 203322, 202332, 202233. If the two 3s are not consecutive digits, there are 10 possible pairs of locations for the 3s: 1st/3rd, 1st/4th, 1st/5th, 1st/6th, 2nd/4th, 2nd/5th, 2nd/6th, 3rd/5th, 3rd/6th, 4th/6th. These give the following integers: 323022, 320322, 320232, 320223, 230322, 230232, 230223, 203232, 203223, 202323. In total, there are thus \(5 + 10 = 15\) possible six-digit integers that Miyuki could have texted. | 
	15 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Congruences"
] | 2 | 
	When the three-digit positive integer $N$ is divided by 10, 11, or 12, the remainder is 7. What is the sum of the digits of $N$? | 
	When $N$ is divided by 10, 11, or 12, the remainder is 7. This means that $M=N-7$ is divisible by each of 10, 11, and 12. Since $M$ is divisible by each of 10, 11, and 12, then $M$ is divisible by the least common multiple of 10, 11, and 12. Since $10=2 \times 5, 12=2 \times 2 \times 3$, and 11 is prime, then the least common multiple of 10, 11, and 12 is $2 \times 2 \times 3 \times 5 \times 11=660$. Since $M$ is divisible by 660 and $N=M+7$ is a three-digit positive integer, then $M$ must equal 660. Therefore, $N=M+7=667$, and so the sum of the digits of $N$ is $6+6+7=19$. | 
	19 | 
	pascal | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	How many of the 20 perfect squares $1^{2}, 2^{2}, 3^{2}, \ldots, 19^{2}, 20^{2}$ are divisible by 9? | 
	A perfect square is divisible by 9 exactly when its square root is divisible by 3. In other words, $n^{2}$ is divisible by 9 exactly when $n$ is divisible by 3. In the list $1,2,3, \ldots, 19,20$, there are 6 multiples of 3. Therefore, in the list $1^{2}, 2^{2}, 3^{2}, \ldots, 19^{2}, 20^{2}$, there are 6 multiples of 9. | 
	6 | 
	fermat | 
| 
	[
  "Mathematics -> Number Theory -> Factorization"
] | 2 | 
	What is the sum of the digits of $S$ if $S$ is the sum of all even Anderson numbers, where an Anderson number is a positive integer $k$ less than 10000 with the property that $k^{2}$ ends with the digit or digits of $k$? | 
	The squares of the one-digit positive integers $1,2,3,4,5,6,7,8,9$ are $1,4,9,16,25,36,49,64,81$, respectively. 
 Of these, the squares $1,25,36$ end with the digit of their square root. 
 In other words, $k=1,5,6$ are Anderson numbers. 
 Thus, $k=6$ is the only even one-digit Anderson number. 
 To find all even two-digit Anderson numbers, we note that any two-digit even Anderson number $k$ must have a units (ones) digit of 6. This is because the units digit of $k$ and the units digit of $k^{2}$ must match (by the definition of an Anderson number) and because the units digit of $k$ completely determines the units digit of $k^{2}$. (We can see this by doing "long multiplication".) So we need to look for two-digit Anderson numbers $k$ with digits $c 6$. 
 Another way of writing the number $c 6$ is $k=10 c+6$. (This form uses the place values associated with the digits.) 
 In this case, $k^{2}=(10 c+6)^{2}=(10 c+6)(10 c+6)=(10 c)^{2}+6(10 c)+10 c(6)+6^{2}=100 c^{2}+120 c+36$. Note that $k^{2}=100\left(c^{2}+c\right)+10(2 c+3)+6$ and so the units digit of $k^{2}$ is 6. 
 For $k$ to be an Anderson number, we need the tens digit of $k^{2}$ to be $c$, in which case the final two digits of $k^{2}$ will be $c 6$. 
 Thus, the tens digit of $k^{2}$ is equal to the units digit of $2 c+3$. 
 This means that $k=10 c+6$ is an Anderson number exactly when the units digit of $2 c+3$ is equal to the digit $c$. 
 When we check the nine possible values for $c$, we find that the only possibility is that $c=7$. 
 This means that $k=76$ is the only two-digit even Anderson number. 
 Note that $76^{2}=5776$, which ends with the digits 76. 
 Next, we look for three-digit even Anderson numbers $k$. 
 Using a similar argument to above, we see that $k$ must have digits $b 76$. 
 In other words, $k=100 b+76$ for some digit $b$. 
 In this case, $k^{2}=(100 b+76)^{2}=10000 b^{2}+15200 b+5776$. 
 We note that the tens and units digits of $k^{2}$ are 76, which means that, for $k$ to be an Anderson number, the hundreds digit of $k^{2}$ must be $b$. 
 Now $k^{2}=1000\left(10 b^{2}+15 b+5\right)+100(2 b+7)+76$. 
 Thus, $k$ is an Anderson number exactly when the units digit of $2 b+7$ is equal to the digit $b$. 
 Again, checking the nine possible values for $b$ shows us that $b=3$ is the only possibility. 
 This means that $k=376$ is the only three-digit even Anderson number. 
 Note that $376^{2}=141376$, which ends with the digits 376. 
 Since Anderson numbers are less than 10000, then we still need to look for four-digit even Anderson numbers. 
 Again, using a similar argument, we see that $k$ must have digits $a 376$. 
 In other words, $k=1000 a+376$ for some digit $a$. 
 In this case, $k^{2}=(1000 a+376)^{2}=1000000 a^{2}+752000 a+141376$. 
 We note that the hundreds, tens and units digits of $k^{2}$ are 376, which means that, for $k$ to be an Anderson number, the thousands digit of $k^{2}$ must be $a$. 
 Now $k^{2}=10000\left(100 a^{2}+75 a+14\right)+1000(2 a+1)+376$. 
 Thus, $k$ is an Anderson number exactly when the units digit of $2 a+1$ is equal to the digit $a$. Again, checking the nine possible values for $a$ shows us that $a=9$ is the only possibility. 
 This means that $k=9376$ is the only four-digit even Anderson number. 
 Note that $9376^{2}=87909376$, which ends with the digits 9376. 
 Thus, $S$, the sum of the even Anderson numbers, equals $6+76+376+9376=9834$. 
 The sum of the digits of $S$ is $9+8+3+4=24$. | 
	24 | 
	pascal | 
| 
	[
  "Mathematics -> Algebra -> Algebra -> Algebraic Expressions"
] | 2 | 
	The line with equation $y=2x-6$ is translated upwards by 4 units. What is the $x$-intercept of the resulting line? | 
	The line with equation $y=2 x-6$ has slope 2. When this line is translated, the slope does not change. The line with equation $y=2 x-6$ has $y$-intercept -6. When this line is translated upwards by 4 units, its $y$-intercept is translated upwards by 4 units and so becomes -2. This means that the new line has equation $y=2 x-2$. To find its $x$-intercept, we set $y=0$ to obtain $0=2 x-2$ and so $2 x=2$ or $x=1$. Thus, the $x$-intercept is 1. | 
	1 | 
	fermat | 
End of preview. Expand
						in Data Studio
					
README.md exists but content is empty.
								
- Downloads last month
- -