\documentclass[12pt]{article} \addtolength{\voffset}{-.5in} \addtolength{\textheight}{1in} \addtolength{\hoffset}{-.5in} \addtolength{\textwidth}{1in} \begin{document} \pagestyle{empty} \begin{center} Western Mass.\ ARML Summer Homework \#1 SOLUTIONS / ANSWERS \end{center} \begin{enumerate} \item[] {\bf The mandatory questions:} \item[20.] Find all ordered pairs $(x,y)$ of real numbers for which $x^2 + xy + x = 14$ and $y^2 + xy + y = 28$. {\bf Answer:} Add the two equations to get $$x^2 + 2xy + y^2 + x + y = 42$$ $$(x+y)^2 + (x+y) = 42$$ Let $z=x+y$. Then you have $z^2 + z - 42 = 0$, so $(z+7)(z-6)=0$, which tells you that $z=-7$ or $z=6$. Suppose $z=6$ (so $x+y=6$). Then $y=6-x$. Plug into the first equation to get $$x^2 + x(6-x)+x=14$$ $$x^2 + 6x - x^2 + x = 14$$ $$7x=14$$ $$x=2$$ which means $y=6-2=4$, giving you your first answer: \fbox{$(2,4)$} Suppose $z=-7$ (so $x+y=-7$). Then $y=-7-x$. Again use the first equation to get $$x^2 + x(-7-x)+x=14$$ $$x^2 - 7x - x^2 + x = 14$$ $$-6x = 14$$ $$x=-\frac{7}{3}$$ which means $y=-7-(-\frac{7}{3})=-\frac{21}{3}+\frac{7}{3}=-\frac{14}{3}$, giving you your second and final answer: \fbox{$(-\frac{7}{3},-\frac{14}{3})$} \newpage \item[2.] The cube of a certain integer has a decimal representation consisting of ten digits, of which the two leftmost, as well as the rightmost, are the digit 7. Find the integer whose cube has this form. {\bf Answer:} First, narrow down the possibilities for the integer. $1000^3=1{,}000{,}000{,}000$ has ten digits. $2000^3=8{,}000{,}000{,}000$ has ten digits. Since the cube begins with 77, the number has to be between 1000 and 2000, and much closer to 2000. Second, use the information about the last digit, and use modular arithmetic. $$0^3 \equiv 0 \pmod{10}$$ $$1^3 \equiv 1 \pmod{10}$$ $$2^3 \equiv 8 \pmod{10}$$ $$\fbox{$3^3 \equiv 7 \pmod{10}$}$$ $$4^3 \equiv 4 \pmod{10}$$ $$5^3 \equiv 5 \pmod{10}$$ $$6^3 \equiv 6 \pmod{10}$$ $$7^3 \equiv 3 \pmod{10}$$ $$8^3 \equiv 2 \pmod{10}$$ $$9^3 \equiv 9 \pmod{10}$$ [Question: why is each digit in the second column represented exactly one time? It doesn't happen when the exponent in the first column is 0 or 2, but it does happen when the exponent is 1 or 3\ldots. What is the order when the exponent is 5 or 9 or 13? Why is that?] Since the cube ends in 7, the number ends in 3. You don't have a calculator, so you could go through the very tedious process of cubing 1993, 1983, 1973, 1963, \ldots, until you find your match. Maybe it wouldn't take so long. But use algebra to save yourself some time. What's the cube of $x-7$? Heck, make it easier than that. What's the cube of $x-10$? $x^3-30x^2+300x-1000$. So the cube of 1990 is $8{,}000{,}000{,}000 - 120{,}000{,}000 + 600{,}000 - 1000 = 788\ldots000$. Too big. What's the cube of $x-20$? $x^3-60x^2+1200x-8000$. So the cube of 1980 is $8{,}000{,}000{,}000 - 240{,}000{,}000 + 2{,}400{,}000 - 8000 = 776\ldots000$. Just about right. You can see that $1970^3$ wouldn't have two 7's at the front, given the gap between $1990^3$ and $1980^3$. So your answer is \framebox{1983.} \newpage \item[4.] Find the numerical value of $\cos 15^\circ(\sin 75^\circ + \cos 45^\circ)+\sin 15^\circ(\cos 75^\circ - \sin 45^\circ)$. {\bf Answer:} You need to know the basic angle-sum formulas for this one. Multiply out: $$\cos 15^\circ \sin 75^\circ + \cos 15^\circ \cos 45^\circ + \sin 15^\circ \cos 75^\circ - \sin 15^\circ \sin 45^\circ$$ then rearrange to get $$\underbrace{\cos 15^\circ \sin 75^\circ + \sin 15^\circ \cos 75^\circ}_{\sin(15^\circ + 75^\circ)} + \underbrace{\cos 15^\circ \cos 45^\circ - \sin 15^\circ \sin 45^\circ}_{\cos(15^\circ + 45^\circ)}$$ so you have $\sin 90^\circ + \cos 60^\circ = 1 + \frac{1}{2} = \framebox{$\frac{3}{2}$}$. \newpage \item[16.] If $x$ and $y$ are real numbers, with $x>y$ and $xy=1$, find the minimum possible value for $\frac{x^2+y^2}{x-y}$. {\bf Answer:} Look to cancel. Since you have $x-y$ on the bottom, and squares on top, complete the square: $$\frac{x^2-2xy+y^2+2xy}{x-y}$$ $$\frac{(x-y)^2+2xy}{x-y}$$ $$\frac{(x-y)^2}{x-y}+\frac{2xy}{x-y}$$ You were told that $xy=1$, and $x>y$ so $x-y \neq 0$. So you simplify to get $$x-y + \frac{2}{x-y}$$ Let $z=x-y$, and the simplified problem is just to minimize $z + \frac{2}{z}$ ($z>0$). {\bf If you don't know calculus\ldots} here's my best explanation. You want to minimize $z+\frac{2}{z}$. Since there is a minimum, suppose this minimum is met when $z=m$, so the minimum is $m+\frac{2}{m}$. That means that for any other $z$, $$z+\frac{2}{z} \geq m+\frac{2}{m}.$$ Well, what does this give you? $$z-m \geq \frac{2}{m} - \frac{2}{z}$$ $$z-m \geq \frac{2z-2m}{mz}$$ $$z-m \geq \frac{2(z-m)}{mz}$$ If $z>m$, then $1 \geq \frac{2}{mz}$, meaning $z \geq \frac{2}{m}$. If $z0$. Find $a$. $\left(\mbox{12}\right)$ \item[22.] Angle $ABC$ is a right angle and $CB=1$. $D$ is a point on ray $BC$ such that $DB=3$ and $E$ is the point on ray $BA$ such that $m\angle DEC$ is maximum. Find the distance $BE$. $\left(\mbox{$\sqrt{3}$}\right)$ \item[23.] An ordinary pack of playing cards is shuffled, and two cards are dealt face up. Find the probability that at least one of these is a spade. $\left(\mbox{$\frac{15}{34}$}\right)$ \item[24.] In convex quadrilateral $PQRS$, diagonals $\overline{PR}$ and $\overline{QS}$ intersect at $T$, with $PT:TR=5:4$ and $QT:TS=2:5$. Point $X$ is chosen between $T$ and $S$ so that $QT=TX$, and $\overline{RX}$ is extended its own length to $Y$. If point $Y$ is {\em outside\/} the quadrilateral, find the ratio of the area of triangle $PSY$ so that of triangle $QRT$. $\left(\mbox{$15:8$}\right)$ \item[25.] Point $P$ is chosen along leg $\overline{BC}$ of right triangle $ABC$ so that $BP=PA$. If leg $BC=10$ and leg $AC=4$, find $BP$. $\left(\mbox{$\frac{29}{5}$ or equivalent}\right)$ \item[26.] Five identical black socks and five identical brown socks are in a drawer. Two socks are picked at random. Find the probability that the two socks picked will match. $\left(\mbox{$\frac{4}{9}$}\right)$ \item[27.] The roots of $f(x)=0$ are 2, 3, 7, 5, and 9. The roots of $g(x)=0$ are 3, 5, 7, 8, and $-1$. Find all solutions of the equation $\frac{f(x)}{g(x)}=0$. $\left(\mbox{2, 9 (both required)}\right)$ \item[28.] A set of distinct, nonzero real numbers is placed along the circumference of a circle. Each of the numbers is equal to the product of the two numbers adjacent to it. What is the least possible number of numbers in the set? $\left(\mbox{6}\right)$ \item[29.] In equilateral triangle $ABC$ of edge length 1, $D$ is on $\overline{BC}$ so that $m\angle DAC=45^\circ$. Find the area of triangle $DAC$. $\left(\mbox{$\frac{3-\sqrt{3}}{4}$}\right)$ \end{enumerate} \end{document}