2013年 AMC12 A卷

2013 AMC 12A Problems

Problem 1

Square ABCD has side length 10. Point E is on img1, and the area of ABE is 40. What is BE ?

[asy] pair A,B,C,D,E; A=(0,0); B=(0,50); C=(50,50); D=(50,0); E = (30,50);    draw(A--B);    draw(B--E);    draw(E--C); draw(C--D); draw(D--A); draw(A--E); dot(A); dot(B); dot(C); dot(D); dot(E); label("A",A,SW); label("B",B,NW); label("C",C,NE); label("D",D,SE); label("E",E,N);  [/asy]

$\textbf{(A)} \ 4 \qquad \textbf{(B)} \ 5 \qquad \textbf{(C)} \ 6 \qquad \textbf{(D)} \ 7 \qquad \textbf{(E)} \ 8 \qquad$

 

Problem 2

A softball team played ten games, scoring 1, 2, 3, 4, 5, 6,7, 8, 9, and 10 runs. They lost by one run in exactly five games. In each of the other games, they scored twice as many runs as their opponent. How many total runs did their opponents score? 

$\textbf {(A) } 35 \qquad \textbf {(B) } 40 \qquad \textbf {(C) } 45 \qquad \textbf {(D) } 50 \qquad \textbf {(E) } 55$

 

Problem 3

A flower bouquet contains pink roses, red roses, pink carnations, and red carnations. One third of the pink flowers are roses, three fourths of the red flowers are carnations, and six tenths of the flowers are pink. What percent of the flowers are carnations?

$\textbf{(A)}\ 15\qquad\textbf{(B)}\ 30\qquad\textbf{(C)}\ 40\qquad\textbf{(D)}\ 60\qquad\textbf{(E)}\ 70$

 

Problem 4

What is the value of img6 ?

$\textbf{(A)}\ -1\qquad\textbf{(B)}\ 1\qquad\textbf{(C)}\ \frac{5}{3}\qquad\textbf{(D)}\ 2013\qquad\textbf{(E)}\ 2^{4024}$

 

Problem 5

Tom, Dorothy, and Sammy went on a vacation and agreed to split the costs evenly. During their trip Tom paid $105, Dorothy paid $125, and Sammy paid $175. In order to share the costs equally, Tom gave Sammy t dollars, and Dorothy gave Sammy d dollars. What is t - d ?

$\textbf{(A)}\ 15\qquad\textbf{(B)}\ 20\qquad\textbf{(C)}\ 25\qquad\textbf{(D)}\ 30\qquad\textbf{(E)}\ 35$

 

Problem 6

In a recent basketball game, Shenille attempted only three-point shots and two-point shots. She was successful on 20% of her three-point shots and 30% of her two-point shots. Shenille attempted 30 shots. How many points did she score?

$\textbf{(A)}\ 12\qquad\textbf{(B)}\ 18\qquad\textbf{(C)}\ 24\qquad\textbf{(D)}\ 30\qquad\textbf{(E)}\ 36$

 

Problem 7

The sequence S1, S2, S3, ... , S10 has the property that every term beginning with the third is the sum of the previous two. That is, Sn = Sn - 2 + Sn - 1 for n  3 Suppose that S9 = 110 and S7 = 42 . What is S4?

$\textbf{(A)}\ 4\qquad\textbf{(B)}\ 6\qquad\textbf{(C)}\ 10\qquad\textbf{(D)}\ 12\qquad\textbf{(E)}\ 16\qquad$

 

Problem 8

Given that x and y are distinct nonzero real numbers such that img11 , what is xy?

$\textbf{(A)}\ \frac{1}{4}\qquad\textbf{(B)}\ \frac{1}{2}\qquad\textbf{(C)}\ 1\qquad\textbf{(D)}\ 2\qquad\textbf{(E)}\ 4\qquad$

 

Problem 9

In ∆ABC, AB = AC = 28 and BC = 20 . Points D, E and F are on sides img13 , img14 , and img15, respectively, such that img16 and img17 are parallel to img18 and img19, respectively. What is the perimeter of parallelogram ADEF ?

[asy] size(180); pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); real r=5/7; pair A=(10,sqrt(28^2-100)),B=origin,C=(20,0),D=(A.x*r,A.y*r); pair bottom=(C.x+(D.x-A.x),C.y+(D.y-A.y)); pair E=extension(D,bottom,B,C); pair top=(E.x+D.x,E.y+D.y); pair F=extension(E,top,A,C); draw(A--B--C--cycle^^D--E--F); dot(A^^B^^C^^D^^E^^F); label("$A$",A,NW); label("$B$",B,SW); label("$C$",C,SE); label("$D$",D,W); label("$E$",E,S); label("$F$",F,dir(0)); [/asy]

$\textbf{(A) }48\qquad \textbf{(B) }52\qquad \textbf{(C) }56\qquad \textbf{(D) }60\qquad \textbf{(E) }72\qquad$

 

Problem 10

Let S be the set of positive integers n for which img22 has the repeating decimal representationimg23, with a and b different digits. What is the sum of the elements of S ?

$\textbf{(A)}\ 11\qquad\textbf{(B)}\ 44\qquad\textbf{(C)}\ 110\qquad\textbf{(D)}\ 143\qquad\textbf{(E)}\ 155\qquad$

 

Problem 11

Triangle ABC is equilateral with AB = 1. Points E and G are on $\overline{AC}$ and points D and F are on $\overline{AB}$such that both $\overline{DE}$ and img28 are parallel to $\overline{BC}$. Furthermore, triangle ADE and trapezoids DFGE and FBCG all have the same perimeter. What is DE + FG ?

[asy] size(180); pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); real s=1/2,m=5/6,l=1; pair A=origin,B=(l,0),C=rotate(60)*l,D=(s,0),E=rotate(60)*s,F=m,G=rotate(60)*m; draw(A--B--C--cycle^^D--E^^F--G); dot(A^^B^^C^^D^^E^^F^^G); label("$A$",A,SW); label("$B$",B,SE); label("$C$",C,N); label("$D$",D,S); label("$E$",E,NW); label("$F$",F,S); label("$G$",G,NW); [/asy]

$\textbf{(A) }1\qquad \textbf{(B) }\dfrac{3}{2}\qquad \textbf{(C) }\dfrac{21}{13}\qquad \textbf{(D) }\dfrac{13}{8}\qquad \textbf{(E) }\dfrac{5}{3}\qquad$

 

Problem 12

The angles in a particular triangle are in arithmetic progression, and the side lengths are 4, 5, x. The sum of the possible values of x equals $a+\sqrt{b}+\sqrt{c}$ where a, b, and c are positive integers. What is a + b + c ?

$\textbf{(A)}\ 36\qquad\textbf{(B)}\ 38\qquad\textbf{(C)}\ 40\qquad\textbf{(D)}\ 42\qquad\textbf{(E)}\ 44$

 

Problem 13

Let points A = (0, 0), B = (1, 2), C = (3, 3) and D = (4, 0). Quadrilateral ABCD is cut into equal area pieces by a line passing through A. This line intersects $\overline{CD}$ at point img35, where these fractions are in lowest terms. What is p + q + r + s?

$\textbf{(A)} \ 54 \qquad \textbf{(B)} \ 58 \qquad  \textbf{(C)} \ 62 \qquad \textbf{(D)} \ 70 \qquad \textbf{(E)} \ 75$

 

Problem 14

The sequence log12 162, log12 x, log12 y, log12 z, log12 1250

is an arithmetic progression. What is x?

$\textbf{(A)} \ 125\sqrt{3} \qquad \textbf{(B)} \ 270 \qquad \textbf{(C)} \ 162\sqrt{5} \qquad \textbf{(D)} \ 434 \qquad \textbf{(E)} \ 225\sqrt{6}$

 

Problem 15

Rabbits Peter and Pauline have three offspring—Flopsie, Mopsie, and Cotton-tail. These five rabbits are to be distributed to four different pet stores so that no store gets both a parent and a child. It is not required that every store gets a rabbit. In how many different ways can this be done?

$\textbf{(A)} \ 96 \qquad  \textbf{(B)} \ 108 \qquad  \textbf{(C)} \ 156 \qquad  \textbf{(D)} \ 204 \qquad  \textbf{(E)} \ 372$

 

Problem 16

ABC are three piles of rocks. The mean weight of the rocks in A is 40 pounds, the mean weight of the rocks in B is 50 pounds, the mean weight of the rocks in the combined piles A and B is 43 pounds, and the mean weight of the rocks in the combined piles A and C is 44 pounds. What is the greatest possible integer value for the mean in pounds of the rocks in the combined piles B and C?

$\textbf{(A)} \ 55 \qquad \textbf{(B)} \ 56 \qquad \textbf{(C)} \ 57 \qquad \textbf{(D)} \ 58 \qquad \textbf{(E)} \ 59$

Problem 17

A group of 12 pirates agree to divide a treasure chest of gold coins among themselves as follows. The kth pirate to take a share takes img40 of the coins that remain in the chest. The number of coins initially in the chest is the smallest number for which this arrangement will allow each pirate to receive a positive whole number of coins. How many coins does the 12th  pirate receive?

$\textbf{(A)} \ 720 \qquad  \textbf{(B)} \ 1296 \qquad  \textbf{(C)} \ 1728 \qquad  \textbf{(D)} \ 1925 \qquad  \textbf{(E)} \ 3850$

 

Problem 18

Six spheres of radius 1 are positioned so that their centers are at the vertices of a regular hexagon of side length 2. The six spheres are internally tangent to a larger sphere whose center is the center of the hexagon. An eighth sphere is externally tangent to the six smaller spheres and internally tangent to the larger sphere. What is the radius of this eighth sphere?

$\textbf{(A)} \ \sqrt{2} \qquad \textbf{(B)} \ \frac{3}{2} \qquad \textbf{(C)} \ \frac{5}{3} \qquad \textbf{(D)} \ \sqrt{3} \qquad \textbf{(E)} \ 2$

 

Problem 19

In ABC, AB = 86, and AC = 97. A circle with center A and radius AB intersects $\overline{BC}$ at points B and X. Moreover img44 and img45 have integer lengths. What is BC?

$\textbf{(A)} \ 11 \qquad  \textbf{(B)} \ 28 \qquad  \textbf{(C)} \ 33 \qquad  \textbf{(D)} \ 61 \qquad  \textbf{(E)} \ 72$

 

Problem 20

Let S be the set {1, 2, 3, ..., 19}. For a, bS, define $a \succ b$ to mean that either 0 < a - b  9 or b - a > 9. How many ordered triples (x, y, z) of elements of S have the property that $x \succ y$$y \succ z$, and $z \succ x$?

$\textbf{(A)} \ 810 \qquad  \textbf{(B)} \ 855 \qquad  \textbf{(C)} \ 900 \qquad  \textbf{(D)} \ 950 \qquad  \textbf{(E)} \ 988$

Problem 21

Consider A = log(2013 + log (2012 + log(2011 + log(... + log(3 + log2) ...)))). Which of the following intervals contains A?

(A) (log 2016, log 2017)      (B) (log 2017, log 2018)

(C) (log 2018, log 2019)      (D) (log 2019, log 2020)

(E) (log 2020, log 2021)

 

Problem 22

A palindrome is a nonnegative integer number that reads the same forwards and backwards when written in base 10 with no leading zeros. A 6-digit palindrome n is chosen uniformly at random. What is the probability that img52 is also a palindrome?

$\textbf{(A)} \ \frac{8}{25} \qquad \textbf{(B)} \ \frac{33}{100} \qquad \textbf{(C)} \ \frac{7}{20} \qquad \textbf{(D)} \ \frac{9}{25} \qquad \textbf{(E)} \ \frac{11}{30}$

 

Problem 23

ABCD is a square of side length img54. Point P is on img55 such that img56. The square region bounded by ABCD is rotated 90° counterclockwise with center P, sweeping out a region whose area is img57, where ab, and c are positive integers and gcd(a,b,c) = 1. What is a + b + c ?

$\textbf{(A)} \ 15 \qquad \textbf{(B)} \ 17 \qquad \textbf{(C)} \ 19 \qquad \textbf{(D)} \ 21 \qquad \textbf{(E)} \ 23$

        

 

Problem 24

Three distinct segments are chosen at random among the segments whose end-points are the vertices of a regular 12-gon. What is the probability that the lengths of these three segments are the three side lengths of a triangle with positive area?

$\textbf{(A)} \ \frac{553}{715} \qquad \textbf{(B)} \ \frac{443}{572} \qquad \textbf{(C)} \ \frac{111}{143} \qquad \textbf{(D)} \ \frac{81}{104} \qquad \textbf{(E)} \ \frac{223}{286}$

 

Problem 25

Let $f : \mathbb{C} \to \mathbb{C}$ be defined by f(z) = z2 + iz + 1. How many complex numbers z are there such that Im(z) > 0 and both the real and the imaginary parts of f(z) are integers with absolute value at most 10 ?

$\textbf{(A)} \ 399 \qquad \textbf{(B)} \ 401 \qquad \textbf{(C)} \ 413 \qquad \textbf{(D)} \ 431 \qquad \textbf{(E)} \ 441$

 

 

答案及解析

扫描下方二维码

联系小助手领取更多资料

扫码关注【FamousEdu名学竞赛帮】公众号了解更多