Subcontests
(15)Triangular Array
A triangular array of numbers has a first row consisting of the odd integers 1,3,5,…,99 in increasing order. Each row below the first has one fewer entry than the row above it, and the bottom row has a single entry. Each entry in any row after the top row equals the sum of the two entries diagonally above it in the row immediately above it. How many entries in the array are multiples of 67?
[asy]size(200);
defaultpen(fontsize(10));
label("1", origin);
label("3", (2,0));
label("5", (4,0));
label("⋯", (6,0));
label("97", (8,0));
label("99", (10,0));label("4", (1,-1));
label("8", (3,-1));
label("12", (5,-1));
label("196", (9,-1));
label(rotate(90)*"⋯", (6,-2));[/asy] Polynomial in Two Variables
Let
p(x,y) \equal{} a_0 \plus{} a_1x \plus{} a_2y \plus{} a_3x^2 \plus{} a_4xy \plus{} a_5y^2 \plus{} a_6x^3 \plus{} a_7x^2y \plus{} a_8xy^2 \plus{} a_9y^3.
Suppose that
\begin{align*}p(0,0) &\equal{} p(1,0) \equal{} p( \minus{} 1,0) \equal{} p(0,1) \equal{} p(0, \minus{} 1) \\&\equal{} p(1,1) \equal{} p(1, \minus{} 1) \equal{} p(2,2) \equal{} 0.\end{align*}
There is a point (ca,cb) for which p\left(\tfrac {a}{c},\tfrac {b}{c}\right) \equal{} 0 for all such polynomials, where a, b, and c are positive integers, a and c are relatively prime, and c>1. Find a \plus{} b \plus{} c. Square Paper Folding
A square piece of paper has sides of length 100. From each corner a wedge is cut in the following manner: at each corner, the two cuts for the wedge each start at distance 17 from the corner, and they meet on the diagonal at an angle of 60∘ (see the figure below). The paper is then folded up along the lines joining the vertices of adjacent cuts. When the two edges of a cut meet, they are taped together. The result is a paper tray whose sides are not at right angles to the base. The height of the tray, that is, the perpendicular distance between the plane of the base and the plane formed by the upper edges, can be written in the form nm, where m and n are positive integers, m<1000, and m is not divisible by the nth power of any prime. Find m \plus{} n.
[asy]import math;
unitsize(5mm);
defaultpen(fontsize(9pt)+Helvetica()+linewidth(0.7));pair O=(0,0);
pair A=(0,sqrt(17));
pair B=(sqrt(17),0);
pair C=shift(sqrt(17),0)*(sqrt(34)*dir(75));
pair D=(xpart(C),8);
pair E=(8,ypart(C));draw(O--(0,8));
draw(O--(8,0));
draw(O--C);
draw(A--C--B);
draw(D--C--E);label("17",(0,2),W);
label("17",(2,0),S);
label("cut",midpoint(A--C),NNW);
label("cut",midpoint(B--C),ESE);
label("fold",midpoint(C--D),W);
label("fold",midpoint(C--E),S);
label("30∘",shift(-0.6,-0.6)*C,WSW);
label("30∘",shift(-1.2,-1.2)*C,SSE);[/asy] Sets Without Squares
Let Si be the set of all integers n such that 100i\leq n < 100(i \plus{} 1). For example, S4 is the set 400,401,402,…,499. How many of the sets S0,S1,S2,…,S999 do not contain a perfect square? Ed and Sue
Ed and Sue bike at equal and constant rates. Similarly, they jog at equal and constant rates, and they swim at equal and constant rates. Ed covers 74 kilometers after biking for 2 hours, jogging for 3 hours, and swimming for 4 hours, while Sue covers 91 kilometers after jogging for 2 hours, swimming for 3 hours, and biking for 4 hours. Their biking, jogging, and swimming rates are all whole numbers of kilometers per hour. Find the sum of the squares of Ed's biking, jogging, and swimming rates.