Difference between revisions of "2023 IOQM/Problem 1"

m (Solution 1(Spacing of squares))
(Solution 1(Spacing of squares))
Line 12: Line 12:
 
If for any [[integer]] <math>n</math>, if <math>\sqrt{n}</math> is an [[integer]] this means <math>n</math> is a [[perfect square]]. Now the problem reduces to finding the difference between maximum and minimum no. of [[perfect squares]] between <math>4n+1, 4n+2 .... 4n+1000.</math> There are 1000 numbers here.  
 
If for any [[integer]] <math>n</math>, if <math>\sqrt{n}</math> is an [[integer]] this means <math>n</math> is a [[perfect square]]. Now the problem reduces to finding the difference between maximum and minimum no. of [[perfect squares]] between <math>4n+1, 4n+2 .... 4n+1000.</math> There are 1000 numbers here.  
  
The idea is that for the same range of numbers, the no. of [[perfect squares]] becomes less when the numbers become larger for example, there are 3 [[perfect squares]] between 1 and 10 but none between 50 and 60.  
+
The idea is that for the same range of numbers, the no. of [[perfect squares]] becomes less when the numbers become larger.  
  
So maximum value of <math>M_n</math> occurs when <math>n</math> is minimum and the minimum value of <math>M_n</math> occurs when <math>n</math> is maximum.  
+
'''For example, there are 3 [[perfect squares]] between 1 and 10 but none between 50 and 60.''' 
  
Minimum value of <math>n</math> = 1
+
⇒ The maximum value of <math>M_n</math> occurs when <math>n</math> is minimum and the minimum value of <math>M_n</math> occurs when <math>n</math> is maximum.
 +
 +
Minimum value of <math>n</math> = 1 So, the numbers are 5,6...1004. there are 29 [[perfect squares]] here, so <math>a</math> = <math>max.</math>(<math>M_n</math>)= <math>29</math>
 +
 
 +
Maximum value of <math>n</math> = 1000 So, the numbers are 4001,4002...5000. there are 7 [[perfect squares]] here, so <math>b</math> = <math>min.</math>(<math>M_n</math>)= <math>7</math>
 +
 
 +
⇒ <math>a-b= 29-7 = \boxed{22}</math>
 +
 
 +
~SANSGANKRSNGUPTA

Revision as of 06:58, 27 September 2023

Problem

Let $n$ be a positive integer such that $1 \leq n \leq 1000$. Let $M_n$ be the number of integers in the set

$X_n = \left\{\sqrt{4n + 1}, \sqrt{4n + 2}, \ldots, \sqrt{4n + 1000}\right\}$. Let $a = \max\{M_n : 1 \leq n \leq 1000\}$, and $b = \min\{M_n : 1 \leq n \leq 1000\}$.

Find $a - b$.

Solution 1(Spacing of squares)

If for any integer $n$, if $\sqrt{n}$ is an integer this means $n$ is a perfect square. Now the problem reduces to finding the difference between maximum and minimum no. of perfect squares between $4n+1, 4n+2 .... 4n+1000.$ There are 1000 numbers here.

The idea is that for the same range of numbers, the no. of perfect squares becomes less when the numbers become larger.

For example, there are 3 perfect squares between 1 and 10 but none between 50 and 60.

⇒ The maximum value of $M_n$ occurs when $n$ is minimum and the minimum value of $M_n$ occurs when $n$ is maximum.

Minimum value of $n$ = 1 So, the numbers are 5,6...1004. there are 29 perfect squares here, so $a$ = $max.$($M_n$)= $29$

Maximum value of $n$ = 1000 So, the numbers are 4001,4002...5000. there are 7 perfect squares here, so $b$ = $min.$($M_n$)= $7$

$a-b= 29-7 = \boxed{22}$

~SANSGANKRSNGUPTA