Let A n = max { ( k n ) : 0 ≤ k ≤ n } where n is a positive integer between 1 and 20 (both inclusive). Find the number of such n satisfying
1 . 9 ≤ A n − 1 A n ≤ 2
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.
Can you please elaborate that how is the value of An found?? How do you know the maximum occurs at that point only??
Log in to reply
Well, ( k n ) ( k + 1 n ) = k + 1 n − k . This ratio is > 1 if k < ( n − 1 ) / 2 , and < 1 if k > ( n − 1 ) / 2 . Now think about what happens to ( k n ) as you increment k by 1 (either up or down).
A brief and rigorous approach! (+1)
Problem Loading...
Note Loading...
Set Loading...
When n is even, A n = ( n / 2 n ) . When n is odd, A n = ( ( n − 1 ) / 2 n ) . Then it's not hard to see that A n − 1 A n = { 2 n + 1 2 n if n is even if n is odd . So A n − 1 A n ≤ 2 always, and if n is even it's ≥ 1 . 9 , and if n is odd, setting n + 1 2 n ≥ 1 . 9 is equivalent to n ≥ 1 9 . So every even number, and 1 9 , satisfy the inequality. The answer is 1 1 .