Difference between revisions of "1978 USAMO Problems"

m (Problem 1)
m (Problem 2)
Line 13: Line 13:
  
 
==Problem 2==
 
==Problem 2==
Two square maps cover exactly the same area of terrain on different scales. The smaller map is placed on top of the larger map and inside its borders. Show that there is a unique point on the top map which lies exactly above the corresponding point on the lower map. How can this point be constructed?
+
<math>ABCD</math> and <math>A'B'C'D'</math> are square maps of the same region, drawn to different scales and superimposed as shown in the figure. Prove that there is only one point <math>O</math> on the small map that lies directly over point <math>O'</math> of the large map such that <math>O</math> and <math>O'</math> each represent the same place of the country. Also, give a Euclidean construction (straight edge and compass) for <math>O</math>.
 +
 
 +
<asy>
 +
defaultpen(linewidth(0.7)+fontsize(10));
 +
real theta = -100, r = 0.3; pair D2 = (0.3,0.76);
 +
string[] lbl = {'A', 'B', 'C', 'D'}; draw(unitsquare); draw(shift(D2)*rotate(theta)*scale(r)*unitsquare);
 +
for(int i = 0; i < lbl.length; ++i) {
 +
pair Q = dir(135-90*i), P = (.5,.5)+Q/2^.5;
 +
label("$"+lbl[i]+"'$", P, Q);
 +
label("$"+lbl[i]+"$",D2+rotate(theta)*(r*P), rotate(theta)*Q);
 +
}</asy>
  
 
[[1978 USAMO Problems/Problem 2 | Solution]]
 
[[1978 USAMO Problems/Problem 2 | Solution]]

Revision as of 15:25, 17 September 2012

Problems from the 1978 USAMO.

Problem 1

Given that $a,b,c,d,e$ are real numbers such that

$a+b+c+d+e=8$,

$a^2+b^2+c^2+d^2+e^2=16$.

Determine the maximum value of $e$.

Solution

Problem 2

$ABCD$ and $A'B'C'D'$ are square maps of the same region, drawn to different scales and superimposed as shown in the figure. Prove that there is only one point $O$ on the small map that lies directly over point $O'$ of the large map such that $O$ and $O'$ each represent the same place of the country. Also, give a Euclidean construction (straight edge and compass) for $O$.

[asy] defaultpen(linewidth(0.7)+fontsize(10)); real theta = -100, r = 0.3; pair D2 = (0.3,0.76); string[] lbl = {'A', 'B', 'C', 'D'}; draw(unitsquare); draw(shift(D2)*rotate(theta)*scale(r)*unitsquare); for(int i = 0; i < lbl.length; ++i) { pair Q = dir(135-90*i), P = (.5,.5)+Q/2^.5; label("$"+lbl[i]+"'$", P, Q); label("$"+lbl[i]+"$",D2+rotate(theta)*(r*P), rotate(theta)*Q); }[/asy]

Solution

Problem 3

You are told that all integers from $33$ to $73$ inclusive can be expressed as a sum of positive integers whose reciprocals sum to 1. Show that the same is true for all integers greater than $73$.

Solution

Problem 4

Show that if the angle between each pair of faces of a tetrahedron is equal, then the tetrahedron is regular. Does a tetrahedron have to be regular if five of the angles are equal?

Solution

Problem 5

There are 9 delegates at a conference, each speaking at most three languages. Given any three delegates, at least 2 speak a common language. Show that there are three delegates with a common language.

Solution

See Also

1978 USAMO (ProblemsResources)
Preceded by
1977 USAMO
Followed by
1979 USAMO
1 2 3 4 5
All USAMO Problems and Solutions