Difference between revisions of "2024 AMC 12B Problems"
(→Problem 3) |
(→See also) |
||
(10 intermediate revisions by 2 users not shown) | |||
Line 60: | Line 60: | ||
In the figure below <math>WXYZ</math> is a rectangle with <math>WX=4</math> and <math>WZ=8</math>. Point <math>M</math> lies <math>\overline{XY}</math>, point <math>A</math> lies on <math>\overline{YZ}</math>, and <math>\angle WMA</math> is a right angle. The areas of <math>\triangle WXM</math> and <math>\triangle WAZ</math> are equal. What is the area of <math>\triangle WMA</math>? | In the figure below <math>WXYZ</math> is a rectangle with <math>WX=4</math> and <math>WZ=8</math>. Point <math>M</math> lies <math>\overline{XY}</math>, point <math>A</math> lies on <math>\overline{YZ}</math>, and <math>\angle WMA</math> is a right angle. The areas of <math>\triangle WXM</math> and <math>\triangle WAZ</math> are equal. What is the area of <math>\triangle WMA</math>? | ||
− | + | <asy> | |
pair X = (0, 0); | pair X = (0, 0); | ||
pair W = (0, 4); | pair W = (0, 4); | ||
pair Y = (8, 0); | pair Y = (8, 0); | ||
pair Z = (8, 4); | pair Z = (8, 4); | ||
− | label(" | + | label("$X$", X, dir(180)); |
− | label(" | + | label("$W$", W, dir(180)); |
− | label(" | + | label("$Y$", Y, dir(0)); |
− | label(" | + | label("$Z$", Z, dir(0)); |
draw(W--X--Y--Z--cycle); | draw(W--X--Y--Z--cycle); | ||
Line 77: | Line 77: | ||
pair M = (2, 0); | pair M = (2, 0); | ||
pair A = (8, 3); | pair A = (8, 3); | ||
− | label(" | + | label("$A$", A, dir(0)); |
dot(M); | dot(M); | ||
dot(A); | dot(A); | ||
Line 83: | Line 83: | ||
markscalefactor = 0.05; | markscalefactor = 0.05; | ||
draw(rightanglemark(W, M, A)); | draw(rightanglemark(W, M, A)); | ||
− | label(" | + | label("$M$", M, dir(-90)); |
− | + | </asy> | |
<math> | <math> | ||
Line 131: | Line 131: | ||
==Problem 11== | ==Problem 11== | ||
Let <math>x_{n} = \sin^2(n^\circ)</math>. What is the mean of <math>x_{1}, x_{2}, x_{3}, \cdots, x_{90}</math>? | Let <math>x_{n} = \sin^2(n^\circ)</math>. What is the mean of <math>x_{1}, x_{2}, x_{3}, \cdots, x_{90}</math>? | ||
− | |||
<math> | <math> | ||
Line 144: | Line 143: | ||
==Problem 12== | ==Problem 12== | ||
+ | Suppose <math>z</math> is a complex number with positive imaginary part, with real part greater than <math>1</math>, and with <math>|z| = 2</math>. In the complex plane, the four points <math>0</math>, <math>z</math>, <math>z^{2}</math>, and <math>z^{3}</math> are the vertices of a quadrilateral with area <math>15</math>. What is the imaginary part of <math>z</math>? | ||
+ | |||
+ | <math>\textbf{(A)}~\displaystyle\frac{3}{4}\qquad\textbf{(B)}~1\qquad\textbf{(C)}~\displaystyle\frac{4}{3}\qquad\textbf{(D)}~\displaystyle\frac{3}{2}\qquad\textbf{(E)}~\displaystyle\frac{5}{3}</math> | ||
+ | |||
[[2024 AMC 12B Problems/Problem 12|Solution]] | [[2024 AMC 12B Problems/Problem 12|Solution]] | ||
Line 182: | Line 185: | ||
A group of <math>16</math> people will be partitioned into <math>4</math> indistinguishable <math>4</math>-person committees. Each committee will have one chairperson and one secretary. The number of different ways to make these assignments can be written as <math>3^{r}M</math>, where <math>r</math> and <math>M</math> are positive integers and <math>M</math> is not divisible by <math>3</math>. What is <math>r</math>? | A group of <math>16</math> people will be partitioned into <math>4</math> indistinguishable <math>4</math>-person committees. Each committee will have one chairperson and one secretary. The number of different ways to make these assignments can be written as <math>3^{r}M</math>, where <math>r</math> and <math>M</math> are positive integers and <math>M</math> is not divisible by <math>3</math>. What is <math>r</math>? | ||
− | |||
<math> | <math> | ||
Line 192: | Line 194: | ||
[[2024 AMC 12B Problems/Problem 16|Solution]] | [[2024 AMC 12B Problems/Problem 16|Solution]] | ||
− | |||
==Problem 17== | ==Problem 17== | ||
Integers <math>a</math> and <math>b</math> are randomly chosen without replacement from the set of integers with absolute value not exceeding <math>10</math>. What is the probability that the polynomial <math>x^3 + ax^2 + bx + 6</math> has <math>3</math> distinct integer roots? | Integers <math>a</math> and <math>b</math> are randomly chosen without replacement from the set of integers with absolute value not exceeding <math>10</math>. What is the probability that the polynomial <math>x^3 + ax^2 + bx + 6</math> has <math>3</math> distinct integer roots? | ||
Line 208: | Line 209: | ||
==Problem 19== | ==Problem 19== | ||
Equilateral <math>\triangle ABC</math> with side length <math>14</math> is rotated about its center by angle <math>\theta</math>, where <math>0 < \theta < 60^{\circ}</math>, to form <math>\triangle DEF</math>. See the figure. The area of hexagon <math>ADBECF</math> is <math>91\sqrt{3}</math>. What is <math>\tan\theta</math>? | Equilateral <math>\triangle ABC</math> with side length <math>14</math> is rotated about its center by angle <math>\theta</math>, where <math>0 < \theta < 60^{\circ}</math>, to form <math>\triangle DEF</math>. See the figure. The area of hexagon <math>ADBECF</math> is <math>91\sqrt{3}</math>. What is <math>\tan\theta</math>? | ||
+ | <asy> | ||
+ | // Credit to shihan for this diagram. | ||
+ | |||
+ | defaultpen(fontsize(13)); size(200); | ||
+ | pair O=(0,0),A=dir(225),B=dir(-15),C=dir(105),D=rotate(38.21,O)*A,E=rotate(38.21,O)*B,F=rotate(38.21,O)*C; | ||
+ | draw(A--B--C--A,gray+0.4);draw(D--E--F--D,gray+0.4); draw(A--D--B--E--C--F--A,black+0.9); dot(O); dot("$A$",A,dir(A)); dot("$B$",B,dir(B)); dot("$C$",C,dir(C)); dot("$D$",D,dir(D)); dot("$E$",E,dir(E)); dot("$F$",F,dir(F)); | ||
+ | </asy> | ||
+ | |||
+ | <math>\textbf{(A)}~\frac{3}{4}\qquad\textbf{(B)}~\frac{5\sqrt{3}}{11}\qquad\textbf{(C)}~\frac{4}{5}\qquad\textbf{(D)}~\frac{11}{13}\qquad\textbf{(E)}~\frac{7\sqrt{3}}{13}</math> | ||
[[2024 AMC 12B Problems/Problem 19|Solution]] | [[2024 AMC 12B Problems/Problem 19|Solution]] |
Latest revision as of 01:01, 14 November 2024
2024 AMC 12B (Answer Key) Printable versions: • AoPS Resources • PDF | ||
Instructions
| ||
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 |
Contents
- 1 Problem 1
- 2 Problem 2
- 3 Problem 3
- 4 Problem 4
- 5 Problem 5
- 6 Problem 6
- 7 Problem 7
- 8 Problem 8
- 9 Problem 9
- 10 Problem 10
- 11 Problem 11
- 12 Problem 12
- 13 Problem 13
- 14 Problem 14
- 15 Problem 15
- 16 Problem 16
- 17 Problem 17
- 18 Problem 18
- 19 Problem 19
- 20 Problem 20
- 21 Problem 21
- 22 Problem 22
- 23 Problem 23
- 24 Problem 24
- 25 Problem 25
- 26 See also
Problem 1
In a long line of people arranged left to right, the 1013th person from the left is also the 1010th person from the right. How many people are in line?
Problem 2
What is ?
Problem 3
For how many integer values of is
Problem 4
Balls numbered are deposited in bins, labeled and , using the following procedure. Ball is deposited in bin , and balls and are deposited in . The next three balls are deposited in bin , the next in bin , and so on, cycling back to bin after balls are deposited in bin . (For example, are deposited in bin at step 7 of this process.) In which bin is ball deposited?
Problem 5
In the following expression, Melanie changed some of the plus signs to minus signs:When the new expression was evaluated, it was negative. What is the least number of plus signs that Melanie could have changed to minus signs?
Problem 6
The national debt of the United States is on track to reach dollars by . How many digits does this number of dollars have when written as a numeral in base ? (The approximation of as is sufficient for this problem.)
Problem 7
In the figure below is a rectangle with and . Point lies , point lies on , and is a right angle. The areas of and are equal. What is the area of ?
Problem 8
What value of satisfies
Problem 9
A dartboard is the region B in the coordinate plane consisting of points such that . A target T is the region where . A dart is thrown at a random point in B. The probability that the dart lands in T can be expressed as , where and are relatively prime positive integers. What is ?
Problem 10
A list of 9 real numbers consists of , , , , , , as well as with . The range of the list is , and the mean and median are both positive integers. How many ordered triples are possible?
Problem 11
Let . What is the mean of ?
Problem 12
Suppose is a complex number with positive imaginary part, with real part greater than , and with . In the complex plane, the four points , , , and are the vertices of a quadrilateral with area . What is the imaginary part of ?
Problem 13
There are real numbers and that satisfy the system of equationsWhat is the minimum possible value of ?
Problem 14
How many different remainders can result when the th power of an integer is divided by ?
Problem 15
A triangle in the coordinate plane has vertices , , and . What is the area of ?
Problem 16
A group of people will be partitioned into indistinguishable -person committees. Each committee will have one chairperson and one secretary. The number of different ways to make these assignments can be written as , where and are positive integers and is not divisible by . What is ?
Problem 17
Integers and are randomly chosen without replacement from the set of integers with absolute value not exceeding . What is the probability that the polynomial has distinct integer roots?
.
Problem 18
The Fibonacci numbers are defined by and for What is
Problem 19
Equilateral with side length is rotated about its center by angle , where , to form . See the figure. The area of hexagon is . What is ?
Problem 20
Suppose , , and are points in the plane with and , and let be the length of the line segment from to the midpoint of . Define a function by letting be the area of . Then the domain of is an open interval , and the maximum value of occurs at . What is ?
Problem 21
The measures of the smallest angles of three different right triangles sum to . All three triangles have side lengths that are primitive Pythagorean triples. Two of them are and . What is the perimeter of the third triangle?
Problem 22
Let be a triangle with integer side lengths and the property that . What is the least possible perimeter of such a triangle?
Problem 23
A right pyramid has regular octagon with side length as its base and apex Segments and are perpendicular. What is the square of the height of the pyramid?
Problem 24
What is the number of ordered triples of positive integers, with , such that there exists a (non-degenerate) triangle with an integer inradius for which , , and are the lengths of the altitudes from to , to , and to , respectively? (Recall that the inradius of a triangle is the radius of the largest possible circle that can be inscribed in the triangle.)
Problem 25
Pablo will decorate each of identical white balls with either a striped or a dotted pattern, using either red or blue paint. He will decide on the color and pattern for each ball by flipping a fair coin for each of the decisions he must make. After the paint dries, he will place the balls in an urn. Frida will randomly select one ball from the urn and note its color and pattern. The events "the ball Frida selects is red" and "the ball Frida selects is striped" may or may not be independent, depending on the outcome of Pablo's coin flips. The probability that these two events are independent can be written as where and are relatively prime positive integers. What is (Recall that two events and are independent if )
See also
2024 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by 2024 AMC 12A Problems |
Followed by 2025 AMC 12A Problems |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | |
All AMC 12 Problems and Solutions |