Difference between revisions of "2009 AMC 12B Problems"
(create) |
m (+) |
||
Line 76: | Line 76: | ||
== Problem 20 == | == Problem 20 == | ||
+ | A convex polyhedron <math>Q</math> has vertices <math>V_1,V_2,\ldots,V_n</math>, and <math>100</math> edges. The polyhedron is cut by planes <math>P_1,P_2,\ldots,P_n</math> in such a way that plane <math>P_k</math> cuts only those edges that meet at vertex <math>V_k</math>. In addition, no two planes intersect inside or on <math>Q</math>. The cuts produce <math>n</math> pyramids and a new polyhedron <math>R</math>. How many edges does <math>R</math> have? | ||
+ | |||
+ | <math>\textbf{(A)}\ 200\qquad \textbf{(B)}\ 2n\qquad \textbf{(C)}\ 300\qquad \textbf{(D)}\ 400\qquad \textbf{(E)}\ 4n</math> | ||
[[2009 AMC 12B Problems/Problem 20|Solution]] | [[2009 AMC 12B Problems/Problem 20|Solution]] | ||
== Problem 21 == | == Problem 21 == | ||
+ | Ten women sit in <math>10</math> seats in a line. All of the <math>10</math> get up and then reseat themselves using all <math>10</math> seats, each sitting in the seat she was in before or a seat next to the one she occupied before. In how many ways can the women be reseated? | ||
+ | |||
+ | <math>\textbf{(A)}\ 89\qquad \textbf{(B)}\ 90\qquad \textbf{(C)}\ 120\qquad \textbf{(D)}\ 2^{10}\qquad \textbf{(E)}\ 2^2 3^8</math> | ||
[[2009 AMC 12B Problems/Problem 21|Solution]] | [[2009 AMC 12B Problems/Problem 21|Solution]] | ||
== Problem 22 == | == Problem 22 == | ||
+ | Parallelogram <math>ABCD</math> has area <math>1,\!000,\!000</math>. Vertex <math>A</math> is at <math>(0,0)</math> and all other vertices are in the first quadrant. Vertices <math>B</math> and <math>D</math> are lattice points on the lines <math>y = x</math> and <math>y = kx</math> for some integer <math>k > 1</math>, respectively. How many such parallelograms are there? | ||
+ | |||
+ | <math>\textbf{(A)}\ 49\qquad \textbf{(B)}\ 720\qquad \textbf{(C)}\ 784\qquad \textbf{(D)}\ 2009\qquad \textbf{(E)}\ 2048</math> | ||
[[2009 AMC 12B Problems/Problem 22|Solution]] | [[2009 AMC 12B Problems/Problem 22|Solution]] | ||
== Problem 23 == | == Problem 23 == | ||
+ | A region <math>S</math> in the complex plane is defined by | ||
+ | <cmath> | ||
+ | S = \{x + iy: - 1\le x\le1, - 1\le y\le1\}. | ||
+ | </cmath> | ||
+ | A complex number <math>z = x + iy</math> is chosen uniformly at random form <math>S</math>. What is the probability that <math>\left(\frac34 + \frac34i\right)z</math> is also in <math>S</math>? | ||
+ | |||
+ | <math>\textbf{(A)}\ \frac12\qquad \textbf{(B)}\ \frac23\qquad \textbf{(C)}\ \frac34\qquad \textbf{(D)}\ \frac79\qquad \textbf{(E)}\ \frac78</math> | ||
[[2009 AMC 12B Problems/Problem 23|Solution]] | [[2009 AMC 12B Problems/Problem 23|Solution]] | ||
== Problem 24 == | == Problem 24 == | ||
+ | For how many values of <math>x</math> in <math>[0,\pi]</math> is <math>\sin^{ - 1}(\sin 6x) = \cos^{ - 1}(\cos x)</math>? | ||
+ | Note: The functions <math>\sin^{ - 1} = \arcsin</math> and <math>\cos^{ - 1} = \arccos</math> denote inverse trigonometric functions. | ||
+ | |||
+ | <math>\textbf{(A)}\ 3\qquad \textbf{(B)}\ 4\qquad \textbf{(C)}\ 5\qquad \textbf{(D)}\ 6\qquad \textbf{(E)}\ 7</math> | ||
[[2009 AMC 12B Problems/Problem 24|Solution]] | [[2009 AMC 12B Problems/Problem 24|Solution]] | ||
== Problem 25 == | == Problem 25 == | ||
+ | The set <math>G</math> is defined by the points <math>(x,y)</math> with integer coordinates, <math>3\le|x|\le7</math>, <math>3\le|y|\le7</math>. How many squares of side at least <math>6</math> have their four vertices in <math>G</math>? | ||
+ | <asy> | ||
+ | defaultpen(black+0.75bp+fontsize(8pt)); | ||
+ | size(5cm); | ||
+ | path p = scale(.15)*unitcircle; | ||
+ | draw((-8,0)--(8.5,0),Arrow(HookHead,1mm)); | ||
+ | draw((0,-8)--(0,8.5),Arrow(HookHead,1mm)); | ||
+ | int i,j; | ||
+ | for (i=-7;i<8;++i) { | ||
+ | for (j=-7;j<8;++j) { | ||
+ | if (((-7 <= i) && (i <= -3)) || ((3 <= i) && (i<= 7))) { if (((-7 <= j) && (j <= -3)) || ((3 <= j) && (j<= 7))) { fill(shift(i,j)*p,black); }}}} draw((-7,-.2)--(-7,.2),black+0.5bp); | ||
+ | draw((-3,-.2)--(-3,.2),black+0.5bp); | ||
+ | draw((3,-.2)--(3,.2),black+0.5bp); | ||
+ | draw((7,-.2)--(7,.2),black+0.5bp); | ||
+ | draw((-.2,-7)--(.2,-7),black+0.5bp); | ||
+ | draw((-.2,-3)--(.2,-3),black+0.5bp); | ||
+ | draw((-.2,3)--(.2,3),black+0.5bp); | ||
+ | draw((-.2,7)--(.2,7),black+0.5bp); | ||
+ | label("$-7$",(-7,0),S); | ||
+ | label("$-3$",(-3,0),S); | ||
+ | label("$3$",(3,0),S); | ||
+ | label("$7$",(7,0),S); | ||
+ | label("$-7$",(0,-7),W); | ||
+ | label("$-3$",(0,-3),W); | ||
+ | label("$3$",(0,3),W); | ||
+ | label("$7$",(0,7),W); | ||
+ | </asy><math>\textbf{(A)}\ 125\qquad \textbf{(B)}\ 150\qquad \textbf{(C)}\ 175\qquad \textbf{(D)}\ 200\qquad \textbf{(E)}\ 225</math> | ||
[[2009 AMC 12B Problems/Problem 25|Solution]] | [[2009 AMC 12B Problems/Problem 25|Solution]] |
Revision as of 19:17, 26 February 2009
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
Problem 1
Problem 2
Problem 3
Problem 4
Problem 5
Problem 6
Problem 7
Problem 8
Problem 9
Problem 10
Problem 11
Problem 12
Problem 13
Problem 14
Problem 15
Problem 16
Problem 17
Problem 18
Problem 19
Problem 20
A convex polyhedron has vertices , and edges. The polyhedron is cut by planes in such a way that plane cuts only those edges that meet at vertex . In addition, no two planes intersect inside or on . The cuts produce pyramids and a new polyhedron . How many edges does have?
Problem 21
Ten women sit in seats in a line. All of the get up and then reseat themselves using all seats, each sitting in the seat she was in before or a seat next to the one she occupied before. In how many ways can the women be reseated?
Problem 22
Parallelogram has area . Vertex is at and all other vertices are in the first quadrant. Vertices and are lattice points on the lines and for some integer , respectively. How many such parallelograms are there?
Problem 23
A region in the complex plane is defined by A complex number is chosen uniformly at random form . What is the probability that is also in ?
Problem 24
For how many values of in is ? Note: The functions and denote inverse trigonometric functions.
Problem 25
The set is defined by the points with integer coordinates, , . How many squares of side at least have their four vertices in ?