返回题库

AIME 1988 · 第 3 题

AIME 1988 — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find (log2x)2(\log_2 x)^2 if log2(log8x)=log8(log2x)\log_2 (\log_8 x) = \log_8 (\log_2 x).

解析

Solution 1

Raise both as exponents with base 8:

8log2(log8x)=8log8(log2x)23log2(log8x)=log2x(log8x)3=log2x(log2xlog28)3=log2x(log2x)2=(log28)3=027\begin{aligned} 8^{\log_2 (\log_8 x)} &= 8^{\log_8 (\log_2 x)}\\ 2^{3 \log_2(\log_8x)} &= \log_2x\\ (\log_8x)^3 &= \log_2x\\ \left(\frac{\log_2x}{\log_28}\right)^3 &= \log_2x\\ (\log_2x)^2 &= (\log_28)^3 = \boxed{027}\\ \end{aligned}

A quick explanation of the steps: On the 1st step, we use the property of logarithms that alogax=xa^{\log_a x} = x. On the 2nd step, we use the fact that klogax=logaxkk \log_a x = \log_a x^k. On the 3rd step, we use the change of base formula, which states logab=logkblogka\log_a b = \frac{\log_k b}{\log_k a} for arbitrary kk.

Solution 2: Substitution

We wish to convert this expression into one which has a uniform base. Let's scale down all the powers of 8 to 2.

log2(13log2x)=13log2(log2x)log2x=ylog2(13y)=13log2(y)3log2(13y)=log2(y)log2(13y)3=log2(y)\begin{aligned} {\log_2 (\frac{1}{3}\log_2 x)} &= \frac{1}{3}{\log_2 (\log_2 x)}\\ {\log_2 x = y}\\ {\log_2 (\frac{1}{3}y)} &= \frac{1}{3}{\log_2 (y)}\\ {3\log_2 (\frac{1}{3}y)} &= {\log_2 (y)}\\ {\log_2 (\frac{1}{3}y)^3} &= {\log_2 (y)}\\ \end{aligned} Solving, we get y2=27y^2 = 27, which is what we want. 27\boxed{27}


Just a quick note- In this solution, we used 2 important rules of logarithm: 1) logabn=nlogab\log_a b^n=n\log_a b. 2) loganb=1nlogab\log_{a^n} b=\frac{1}{n}\log_a b.

Solution 3

First we have

log2(log8x)=log8(log2x)log2(log8x)log8(log2x)=1\begin{aligned} \log_2(\log_8x)&=\log_8(\log_2x)\\ \frac{\log_2(\log_8x)}{\log_8(\log_2x)}&=1 \end{aligned} Changing the base in the numerator yields

3log8(log8x)log8(log2x)=1log8(log8x)log8(log2x)=13\begin{aligned} \frac{3\log_8(\log_8x)}{\log_8(\log_2x)}&=1\\ \frac{\log_8(\log_8x)}{\log_8(\log_2x)}&=\frac{1}{3}\\ \end{aligned} Using the property logablogac=logcb\frac{\log_ab}{\log_ac}=\log_cb yields

loglog2x(log8x)=13(log2x)13=log8xlog2x3=log2x3\begin{aligned} \log_{\log_2x}(\log_8x)&=\frac{1}{3}\\ (\log_2x)^\frac{1}{3}&=\log_8x\\ \sqrt[3]{\log_2x}&=\frac{\log_2x}{3} \end{aligned} Now setting y=log2xy=\log_2x, we have

y3=y3\sqrt[3]{y}=\frac{y}{3} Solving gets y=log2x=33(log2x)2=(33)2=27y=\log_2x=3\sqrt{3}\Longrightarrow(\log_2x)^2=(3\sqrt{3})^2=\boxed{27}.

~ Nafer

Solution 4

Say that log23x=a\log_{2^3}x=a and log2x=b\log_2x=b so we have log2a=log23b\log_2a=\log_{2^3}b. And we want b2b^2.

log2a=13log2b  (step 1)log2alog2b=logba=13b1/3=a.\\ \log_2a=\frac13 \log_{2}b \ \ \text{\tiny{(step 1)}}\\ \frac{\log_2a}{\log_{2}b}=\log_ba=\frac13\\ b^{1/3}=a.

Because 3a=b3a=b (as 23a=x2^{3a}=x and 2b=x2^b=x from our setup), we have that

b1/3=b3b2/3=13b=33/2b2=33=27b^{1/3}=\frac{b}{3}\\ b^{-2/3}=\frac13\\ b=3^{3/2}\\ \\b^2=3^3=\boxed{27}

~thedodecagon


Note that we use the property logxny=1nlogxy\log_{x^n}y=\frac1n\log_xy in step 1 and logwxlogwy=logyx\frac{\log_wx}{\log_wy}=\log_yx in step 2 in this solution.