返回题库

AIME 2019 II · 第 10 题

AIME 2019 II — Problem 10

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

There is a unique angle θ\theta between 00^{\circ} and 9090^{\circ} such that for nonnegative integers nn, the value of tan(2nθ)\tan{\left(2^{n}\theta\right)} is positive when nn is a multiple of 33, and negative otherwise. The degree measure of θ\theta is pq\tfrac{p}{q}, where pp and qq are relatively prime integers. Find p+qp+q.

解析

Solution 1

Note that if tanθ\tan \theta is positive, then θ\theta is in the first or third quadrant, so 0<θ<90(mod180)0^{\circ} < \theta < 90^{\circ} \pmod{180^{\circ}}.

Furthermore, the only way tan(2nθ)\tan{\left(2^{n}\theta\right)} can be positive for all nn that are multiples of 33 is when:

20θ23θ26θ...(mod180).2^0\theta \equiv 2^3\theta \equiv 2^6\theta \equiv ... \pmod{180^{\circ}}. (This is because if it isn't the same value, the terminal angle will gradually shift from the first quadrant into different quadrants, making the condition for positive tan untrue. This must also be true in order for θ\theta to be unique.)

This is the case if 23θ20θ(mod180)2^3\theta \equiv 2^0\theta \pmod{180^{\circ}}, so 7θ0(mod180)7\theta \equiv 0^{\circ} \pmod{180^{\circ}}. Therefore, recalling that 0<θ<90,0^{\circ}<\theta<90^{\circ}, the possible θ\theta are:

1807,3607,5407.\frac{180}{7}^{\circ}, \frac{360}{7}^{\circ}, \frac{540}{7}^{\circ}. 1807\frac{180}{7}^{\circ} does not work since tan(21807)\tan\left(2 \cdot \frac{180}{7}^{\circ}\right) is positive.

3607\frac{360}{7}^{\circ} does not work because tan(43607)\tan\left(4 \cdot \frac{360}{7}^{\circ}\right) is positive.

Thus, θ=5407\theta = \frac{540}{7}^{\circ}, and a quick check verifies that it does work. Our desired answer is 540+7=547540 + 7 = \boxed{547}.

Solution 2

As in the previous solution, we note that tanθ\tan \theta is positive when θ\theta is in the first or third quadrant. In order for tan(2nθ)\tan\left(2^n\theta\right) to be positive for all nn divisible by 33, we must have θ\theta, 23θ2^3\theta, 26θ2^6\theta, etc to lie in the first or third quadrants. We already know that θ(0,90)\theta\in(0,90). We can keep track of the range of 2nθ2^n\theta for each nn by considering the portion in the desired quadrants, which gives

n=1    (90,180)n=1 \implies (90,180) n=2    (270,360)n=2\implies (270,360) n=3    (180,270)n=3 \implies (180,270) n=4    (90,180)n=4 \implies (90,180) n=5    (270,360)n=5\implies(270,360) n=6    (180,270)n=6 \implies (180,270) \cdots at which point we realize a pattern emerging. Specifically, the intervals repeat every 33 after n=1n=1. We can use these repeating intervals to determine the desired value of θ\theta since the upper and lower bounds will converge to such a value (since it is unique, as indicated in the problem). Let's keep track of the lower bound.

Initially, the lower bound is 00 (at n=0n=0), then increases to 902=45\frac{90}{2}=45 at n=1n=1. This then becomes 45+45245+\frac{45}{2} at n=2n=2, 45+45245+\frac{45}{2} at n=3n=3, 45+452+452345+\frac{45}{2}+\frac{45}{2^3} at n=4n=4, 45+452+4523+452445+\frac{45}{2}+\frac{45}{2^3}+\frac{45}{2^4} at n=5n=5, etc. Due to the observed pattern of the intervals, the lower bound follows a partial geometric series. Hence, as nn approaches infinity, the lower bound converges to

k=0(45+452)(18)k=45+452118=135278=5407    p+q=540+7=547\sum_{k=0}^{\infty}\left(45+\frac{45}{2}\right)\cdot \left(\frac{1}{8}\right)^k=\frac{45+\frac{45}{2}}{1-\frac{1}{8}}=\frac{\frac{135}{2}}{\frac{7}{8}}=\frac{540}{7}\implies p+q=540+7=\boxed{547} -ktong

Extra note: If you are still unsure, you can check the upper bound to see if the top converges. This value comes out to be:

9090239026=90(1k=1123k)=90(117)=540790-\frac{90}{2^3}-\frac{90}{2^6}-\cdots=90\left(1-\sum_{k=1}^{\infty}\frac{1}{2^{3k}}\right)=90\left(1-\frac{1}{7}\right)=\frac{540}{7}.

Thus, the limit does in fact converge to the same value on both sides. ~eevee9406

Extra extra note: The top bound is arguably easier to prove because there are less terms added -dragoon

Solution 3

Since tan(θ)>0\tan\left(\theta\right) > 0, 0<θ<900 < \theta < 90. Since tan(2θ)<0\tan\left(2\theta\right) < 0, θ\theta has to be in the second half of the interval (0, 90) ie (45, 90). Since tan(4θ)<0\tan\left(4\theta\right) < 0, θ\theta has to be in the second half of that interval ie (67.5, 90). And since tan(8θ)>0\tan\left(8\theta\right) > 0, θ\theta has to be in the first half of (67.5, 90). Inductively, the pattern repeats: θ\theta is in the second half of the second half of the first half of the second half of the second half... of the interval (0, 90). Consider the binary representation of numbers in the interval (0, 1). Numbers in the first half of the interval start with 0.0... and numbers in the second half start with 0.1... . Similarly, numbers in the second half of the second half start with 0.11... etc. So if we want a number in the first half of the second half of the second half... of the interval, we want its binary representation to be 0.11011011011...2=67100.11011011011..._2 = \frac{6}{7}_{10}. So we want the number which is 6/7 of the way through the interval (0, 90) so θ=6790=5407\theta = \frac{6}{7}\cdot 90 = \frac{540}{7} and p+q=540+7=547p+q = 540 + 7 = \boxed{547}

~minor edit by Mathkiddie

Solution 4

With some simple arithmetic and guess and check, we can set the lower bound and upper bounds for the "first round of 33 powers of two", which are 5408=67.5\frac{540}{8} = 67.5 and 6308=78.75\frac{630}{8} = 78.75. Going on to the "second round of 33 powers of two, we set the new lower and upper bounds as 360×12.564=70.3125\frac{360 \times 12.5}{64} = 70.3125 and 360×13.7564=77.34375\frac{360 \times 13.75}{64} = 77.34375 using some guess and check and bashing. Now, it is obvious that the bounds for the "zeroth round of 33 powers of two" are 00 and 9090, and notice that 9078.75=11.2590 - 78.75 = 11.25 and 78.7577.34375=1.4062578.75 - 77.34375 = 1.40625 and 11.251.40625=8\frac{11.25}{1.40625} = 8. This is obviously a geometric series, so setting 11.2511.25 as uu, we obtain 90(u+u8+u64+...)90 - (u + \frac{u}{8} + \frac{u}{64} + ...) = 90u11890 - \frac{u}{1-\frac{1}{8}} = u78\frac{u}{\frac{7}{8}} = 454×87\frac{45}{4} \times \frac{8}{7} which simplifies to 907\frac{90}{7}. We can now finally subtract 907\frac{90}{7} from 6307\frac{630}{7} and then we get 5407\frac{540}{7} as the unique angle, so 547\boxed{547} is our answer. -fidgetboss_4000

Solution 5

Since 77 is the only number n such that f(x) = 2x2^{\lfloor x\rfloor} (mod 7)\text{(mod 7)} has a period of 3, we find that θ\theta is a multiple of 1807{\frac{180}{7}}^\circ. Note that the tangents of 1807{\frac{180}{7}}^\circ, 3607{\frac{360}{7}}^\circ, 5407{\frac{540}{7}}^\circ are positive while those of 7207{\frac{720}{7}}^\circ, 9007{\frac{900}{7}}^\circ, and 10807{\frac{1080}{7}}^\circ are negative. With a bit of trial and error, we find θ\theta is 5407{\frac{540}{7}}^\circ and 540+7540+7 is 547\boxed{547}.

~ Afly (talk)