Difference between revisions of "1986 AJHSME Problems"
5849206328x (talk | contribs) (→Problem 15) |
5849206328x (talk | contribs) (→Problem 16) |
||
Line 154: | Line 154: | ||
== Problem 16 == | == Problem 16 == | ||
+ | |||
+ | A bar graph shows the number of hamburgers sold by a fast food chain each season. However, the bar indicating the number sold during the winter is covered by a smudge. If exactly <math>25\% </math> of the chain's hamburgers are sold in the fall, how many million hamburgers are sold in the winter? | ||
+ | |||
+ | <asy> | ||
+ | size(250); | ||
+ | |||
+ | void bargraph(real X, real Y, real ymin, real ymax, real ystep, real tickwidth, | ||
+ | string yformat, Label LX, Label LY, Label[] LLX, real[] height,pen p=nullpen) | ||
+ | { | ||
+ | draw((0,0)--(0,Y),EndArrow); | ||
+ | draw((0,0)--(X,0),EndArrow); | ||
+ | label(LX,(X,0),plain.SE,fontsize(9)); | ||
+ | label(LY,(0,Y),plain.NW,fontsize(9)); | ||
+ | real yscale=Y/(ymax+ystep); | ||
+ | |||
+ | for(real y=ymin; y<ymax; y+=ystep) | ||
+ | { | ||
+ | draw((-tickwidth,yscale*y)--(0,yscale*y)); | ||
+ | label(format(yformat,y),(-tickwidth,yscale*y),plain.W,fontsize(9)); | ||
+ | } | ||
+ | |||
+ | int n=LLX.length; | ||
+ | real xscale=X/(2*n+2); | ||
+ | for(int i=0;i<n;++i) | ||
+ | { | ||
+ | real x=xscale*(2*i+1); | ||
+ | path P=(x,0)--(x,height[i]*yscale)--(x+xscale,height[i]*yscale)--(x+xscale,0)--cycle; | ||
+ | fill(P,p); | ||
+ | draw(P); | ||
+ | label(LLX[i],(x+xscale/2),plain.S,fontsize(10)); | ||
+ | } | ||
+ | for(int i=0;i<n;++i) draw((0,height[i]*yscale)--(X,height[i]*yscale),dashed); | ||
+ | } | ||
+ | |||
+ | string yf="%#.1f"; | ||
+ | Label[] LX={"Spring","Summer","Fall","Winter"}; | ||
+ | for(int i=0;i<LX.length;++i) LX[i]=rotate(90)*LX[i]; | ||
+ | real[] H={4.5,5,4,4}; | ||
+ | |||
+ | bargraph(60,50,1,5.1,0.5,2,yf,"season","hamburgers (millions)",LX,H,yellow); | ||
+ | fill(ellipse((45,30),7,10),brown); | ||
+ | </asy> | ||
+ | |||
+ | <math>\text{(A)}\ 2.5 \qquad \text{(B)}\ 3 \qquad \text{(C)}\ 3.5 \qquad \text{(D)}\ 4 \qquad \text{(E)}\ 4.5</math> | ||
[[1986 AJHSME Problems/Problem 16|Solution]] | [[1986 AJHSME Problems/Problem 16|Solution]] |
Revision as of 18:03, 20 January 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
- 26 See also
Problem 1
In July 1861, inches of rain fell in Cherrapunji, India. What was the average rainfall in inches per hour during that month?
Problem 2
Which of the following numbers has the largest reciprocal?
Problem 3
The smallest sum one could get by adding three different numbers from the set is
Problem 4
The product is closest to
Problem 5
A contest began at noon one day and ended minutes later. At what time did the contest end?
Problem 6
Problem 7
How many whole numbers are between and ?
Problem 8
Problem 9
Using only the paths and the directions shown, how many different routes are there from to ?
Problem 10
A picture feet across is hung in the center of a wall that is feet wall. How many feet from the end of the wall is the nearest edge of the picture?
Problem 11
If means , then is
Problem 12
Problem 13
The perimeter of the polygon shown is
Problem 14
If and , then the largest value of the quotient is
Problem 15
Sale prices at the Ajax Outlet Store are below original prices. On Saturdays an additional discount of off the sale price is given. What is the Saturday price of a coat whose original price is <dollar/>?
<dollar/>
<dollar/>
<dollar/>
<dollar/>
<dollar/>
Problem 16
A bar graph shows the number of hamburgers sold by a fast food chain each season. However, the bar indicating the number sold during the winter is covered by a smudge. If exactly of the chain's hamburgers are sold in the fall, how many million hamburgers are sold in the winter?