λ ( λ ( λ ( 1 0 ) ) ) = 1 0 n
Let λ ( m ) denote the product of all positive integers that divides m (inclusive of 1 and itself). What is the value of n such that it satisfy the product above?
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.
First off, λ ( m ) = m 2 n ( m ) , where n(m) is the number of divisors of m. Check out @Calvin Lin 's proof of this equation here .
So λ ( 1 0 ) = 1 0 2 4 = 1 0 0 .
⇒ λ ( 1 0 0 ) = 1 0 0 2 9 = 1 0 9 .
Since 1 0 9 = 2 9 × 5 9 , n ( 1 0 9 ) = ( 9 + 1 ) × ( 9 + 1 ) = 1 0 0
⇒ λ ( 1 0 9 ) = ( 1 0 9 ) 5 0 = 1 0 4 5 0
Hence n = 4 5 0 .
In response to challenge master:
This is how I see the proof of the first equation: λ ( m ) = m 2 n ( m ) , where n(m) is the number of divisors of m.
Let d be a divisor of m. Unless d 2 = m , there must be another divisor D such that d × D = m . So unless m is a square, the divisors of m can be paired up such that each pair's product is m. In this way, we can see that the product of divisors of m = m 2 n ( m ) . When m is a square, all the divisors other than the square root (let the square root be d) can be paired up and we'll be left with the product looking like this:
m 2 n ( m ) − 1 × d = m 2 n ( m ) − 1 × m 2 1 = m 2 n ( m )
As an example, consider 100 and its factors: 1, 2, 4, 5, 10, 20, 25, 50, 100. The product can be written as:
( 1 × 1 0 0 ) ( 2 × 5 0 ) ( 4 × 2 5 ) ( 5 × 2 0 ) × 1 0 .
So we can see that the divisors can be paired up and the square root (if it is an integer) stands alone. Hence the equation.
Why is this statement true?
λ ( m ) = m 2 n ( m ) , where n(m) is the number of divisors of m.
Python 2.7:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
I am defining f ( n ) for that product function.
We can easily figure out that f ( 1 0 ) = 1 0 0 .
We know 1 0 0 has 9 factors.Now we can for 4 of ( n , q ) such that n ∗ q = 1 0 0 with n not equal to q .
Now product of numbers satisfying these conditions is 1 0 8 .
But we also have 1 0 as a factor of 1 0 0 which is not included in those pairs we formed.So final product is 1 0 9 .i.e f ( 1 0 0 ) = 1 0 9 .
Now we have to find f ( 1 0 9 ) .
We can find number of factors of 1 0 9 as 1 0 0 .As no. of factors of 1 0 9 is even i.e 1 0 0 we can form 5 0 pairs such that x , y having x ∗ y = 1 0 9 .
As there are 5 0 pairs we have our answer as 1 0 4 5 0 .
Problem Loading...
Note Loading...
Set Loading...
Option 1:
Let us begin by understanding λ ( x ) , specifically λ ( 1 0 ) .
To find all integer divisors of 10, we factor it into primes, 1 0 = 2 1 5 1 . Every divisor of 10 will have the form 2 a 5 b , 0 ≤ a , b ≤ 1 . In general, every divisor of 1 0 n will have the form 2 a 5 b , 0 ≤ a , b ≤ n .
Thus we may describe λ ( 1 0 ) = λ ( 2 1 5 1 ) = ( 2 0 5 0 ) ( 2 0 5 1 ) ( 2 1 5 0 ) ( 2 1 5 1 ) = 2 2 5 2 = 1 0 2 .
More generally, λ ( 2 a 5 b ) = 2 0 5 0 2 1 5 0 ⋮ 2 a 5 a ⋅ ⋅ ⋅ 2 0 5 1 2 1 5 1 ⋮ 2 a 5 1 ⋅ ⋅ ⋅ 2 0 5 2 2 1 5 2 ⋮ 2 a 5 2 ⋯ ⋯ ⋱ . . . 2 0 5 b 2 1 5 b ⋮ 2 a 5 b ⋅ ⋅
Thus, λ ( 2 a 5 b ) = [ ( 2 0 ) b + 1 ( 2 1 ) b + 1 . . . ( 2 a ) b + 1 ] ⋅ [ ( 5 0 ) a + 1 ( 5 1 ) a + 1 . . . ( 5 b ) a + 1 ] = 2 ( 0 + 1 + 2 + . . . + a ) ( b + 1 ) ⋅ 5 ( a + 1 ) ( 0 + 1 + 2 + . . . + b ) = 2 a ( a + 1 ) ( b + 1 ) / 2 ⋅ 5 ( a + 1 ) b ( b + 1 ) / 2 .
λ ( 2 n 5 n ) = λ ( 1 0 n ) = 2 n ( n + 1 ) 2 / 2 ⋅ 5 n ( n + 1 ) 2 / 2 = 1 0 n ( n + 1 ) 2 / 2 .
So, λ ( λ ( λ ( 1 0 ) ) ) = λ ( λ ( 1 0 1 ( 1 + 1 ) 2 / 2 ) ) = λ ( λ ( 1 0 2 ) ) = λ ( 1 0 2 ( 3 ) 2 / 2 ) = λ ( 1 0 9 ) = 1 0 9 ( 1 0 ) 2 / 2 = 1 0 4 5 0 . Q E D .
Option 2: Write python script. Sip martini.