Subcontests
(15)Area of Quadrilateral in Triangle
In the diagram below, angle ABC is a right angle. Point D is on BC, and AD bisects angle CAB. Points E and F are on AB and AC, respectively, so that AE=3 and AF=10. Given that EB=9 and FC=27, find the integer closest to the area of quadrilateral DCFG.[asy]
size(250);
pair A=(0,12), E=(0,8), B=origin, C=(24*sqrt(2),0), D=(6*sqrt(2),0), F=A+10*dir(A--C), G=intersectionpoint(E--F, A--D);
draw(A--B--C--A--D^^E--F);
pair point=G+1*dir(250);
label("A", A, dir(point--A));
label("B", B, dir(point--B));
label("C", C, dir(point--C));
label("D", D, dir(point--D));
label("E", E, dir(point--E));
label("F", F, dir(point--F));
label("G", G, dir(point--G));
markscalefactor=0.1;
draw(rightanglemark(A,B,C));
label("10", A--F, dir(90)*dir(A--F));
label("27", F--C, dir(90)*dir(F--C));
label("3", (0,10), W);
label("9", (0,4), W);[/asy] Absent-Minded Professor
While finding the sine of a certain angle, an absent-minded professor failed to notice that his calculator was not in the correct angular mode. He was lucky to get the right answer. The two least positive real values of x for which the sine of x degrees is the same as the sine of x radians are n−πmπ and q+πpπ, where m, n, p and q are positive integers. Find m+n+p+q. Circle Packing
The diagram shows twenty congruent circles arranged in three rows and enclosed in a rectangle. The circles are tangent to one another and to the sides of the rectangle as shown in the diagram. The ratio of the longer dimension of the rectangle to the shorter dimension can be written as 21(p−q), where p and q are positive integers. Find p+q.[asy]
size(250);real x=sqrt(3);
int i;
draw(origin--(14,0)--(14,2+2x)--(0,2+2x)--cycle);
for(i=0; i<7; i=i+1) {
draw(Circle((2*i+1,1), 1)^^Circle((2*i+1,1+2x), 1));
}
for(i=0; i<6; i=i+1) {
draw(Circle((2*i+2,1+x), 1));
}[/asy] Surface Area of Cube
Three vertices of a cube are P=(7,12,10), Q=(8,8,1), and R=(11,3,9). What is the surface area of the cube? Polyhedron
Polyhedron ABCDEFG has six faces. Face ABCD is a square with AB=12; face ABFG is a trapezoid with AB parallel to GF, BF=AG=8, and GF=6; and face CDE has CE=DE=14. The other three faces are ADEG,BCEF, and EFG. The distance from E to face ABCD is 12. Given that EG2=p−qr, where p,q, and r are positive integers and r is not divisible by the square of any prime, find p+q+r. Intersecting Circles
Circles C1 and C2 intersect at two points, one of which is (9,6), and the product of the radii is 68. The x-axis and the line y=mx, where m>0, are tangent to both circles. It is given that m can be written in the form ab/c, where a, b, and c are positive integers, b is not divisible by the square of any prime, and a and c are relatively prime. Find a+b+c. Basketball Probability
A basketball player has a constant probability of .4 of making any given shot, independent of previous shots. Let an be the ratio of shots made to shots attempted after n shots. The probability that a10=.4 and an≤.4 for all n such that 1≤n≤9 is given to be paqbr/(sc), where p, q, r, and s are primes, and a, b, and c are positive integers. Find (p+q+r+s)(a+b+c). Two Infinite Geometric Series
Two distinct, real, infinite geometric series each have a sum of 1 and have the same second term. The third term of one of the series is 1/8, and the second term of both series can be written in the form pm−n, where m, n, and p are positive integers and m is not divisible by the square of any prime. Find 100m+10n+p. Counting Disjoint Subsets
Let S be the set {1,2,3,…,10}. Let n be the number of sets of two non-empty disjoint subsets of S. (Disjoint sets are defined as sets that have no common elements.) Find the remainder obtained when n is divided by 1000. Binomial fun.
The Binomial Expansion is valid for exponents that are not integers. That is, for all real numbers x,y, and r with ∣x∣>∣y∣,
(x \plus{} y)^r \equal{} x^r \plus{} rx^{r \minus{} 1}y \plus{} \frac {r(r \minus{} 1)}2x^{r \minus{} 2}y^2 \plus{} \frac {r(r \minus{} 1)(r \minus{} 2)}{3!}x^{r \minus{} 3}y^3 \plus{} \cdots
What are the first three digits to the right of the decimal point in the decimal representation of \left(10^{2002} \plus{} 1\right)^{10/7}? Dodecagon
Let A1,A2,A3,…,A12 be the vertices of a regular dodecagon. How many distinct squares in the plane of the dodecagon have at least two vertices in the set {A1,A2,A3,…,A12}? Area Ratio in Triangle
In triangle ABC, point D is on BC with CD=2 and DB=5, point E is on AC with CE=1 and EA=3, AB=8, and AD and BE intersect at P. Points Q and R lie on AB so that PQ is parallel to CA and PR is parallel to CB. It is given that the ratio of the area of triangle PQR to the area of triangle ABC is m/n, where m and n are relatively prime positive integers. Find m+n.