Degrees of the Same Radicand

If all variables below are positive integers more than 1 1 , how many digits does the smallest value of x x have?

{ x = a x 3 = b x 4 = c x 5 = d x 10 = i \begin{cases} \sqrt{x} = a \\ \sqrt[3]{x} = b \\ \sqrt[4]{x} = c \\ \sqrt[5]{x} = d \\ \! \qquad \vdots \\ \sqrt[10]{x} = i \end{cases}

NOTE: The i i is an algebraic variable, not an imaginary number ( 1 \sqrt{-1} ).


The answer is 759.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Chris Lewis
Jul 29, 2020

Since lcm ( 2 , 3 , , 10 ) = 2520 \text{lcm}(2,3,\cdots,10)=2520 , x x must be the 2520 2520 th power of an integer. The smallest possibility (since 1 1 isn't allowed) is x = 2 2520 x=2^{2520} .

To find the number of digits, we need to know which two integer powers of 10 10 x x lies between. The number of digits is given by log 10 x + 1 = 2520 log 10 2 + 1 = 759 \left \lfloor \log_{10} x \right \rfloor +1 = \left \lfloor 2520\log_{10} 2 \right \rfloor +1 = \boxed{759} .

Hi, can you please elaborate on the method of finding the number of digits, why does it work? Thanks!

Mahdi Raza - 10 months, 1 week ago

Log in to reply

If a number n n satisfies 1 0 1 n < 1 0 2 10^1 \le n < 10^2 it has 2 2 digits. If 1 0 2 n < 1 0 3 10^2 \le n < 10^3 it has 3 3 digits, and so on; in general, if 1 0 d 1 n < 1 0 d 10^{d-1} \le n < 10^d then n n has d d digits.

Taking logs base 10 10 , this is d 1 log 10 n < d d-1 \le \log_{10} n < d . So to work out d d (the number of digits) from n n , we use d = log 10 x + 1 d=\left \lfloor \log_{10} x \right \rfloor +1 .

A question for you: why is it not log 10 x \left \lceil \log_{10} x \right \rceil ?

Chris Lewis - 10 months ago

Log in to reply

Oh ok, understood. Thanks!

For the question: (The floor function + 1) is equivalent of saying the (ceiling function)

Mahdi Raza - 10 months ago

Log in to reply

@Mahdi Raza Ah - that's the point! It isn't always equivalent. You have to think about when it's not equivalent to work out why the particular form is used.

Chris Lewis - 10 months ago
Mahdi Raza
Aug 9, 2020
  • x x has to a number that has its power as the LCM of the radicals.

LCM ( 2 , 3 , 10 ) = 2520 \text{LCM}{(2, 3, \ldots 10)} = 2520

  • The smallest such value for x x is

2 2520 2^{2520}

  • Hence, we can find the length of x x using a python code
1
print(len(str(2**2520)))

1
759

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...