Find the smallest positive integer that is both larger than some positive integer and smaller than another positive integer.
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.
Let N be the integer we are looking for. Let x and y be positive integers such that 0 . 7 2 x = 1 . 2 8 y = N i.e. N is 28% smaller than x and 28% larger than y . Normally, we would reduce the equality into simplest terms, but because we want N to be an integer, we must take into consideration the decimal part:
0 . 7 2 x 1 0 0 7 2 x 1 0 0 9 x 1 0 0 9 x = 1 . 2 8 y = 1 0 0 1 2 8 y = 1 0 0 1 6 y = 2 5 4 y .
We must have 1 0 0 ∣ x and 2 5 ∣ y in order for N to be an integer. Let x = 1 0 0 x ′ and y = 2 5 y ′ . We have
1 0 0 9 ( 1 0 0 x ′ ) 9 x ′ = 2 5 4 ( 2 5 y ′ ) = 4 y ′ .
We see that 4 ∣ x ′ and 9 ∣ y ′ . The smallest possible value of N occurs when we minimize x and y . The minimum possible values of x ′ , y ′ are 4 and 9, respectively, so the minimum possible values of x , y are
x y = 1 0 0 x ′ = 1 0 0 ( 4 ) = 4 0 0 = 2 5 y ′ = 2 5 ( 9 ) = 2 2 5 .
Thus, N = 0 . 7 2 x = 0 . 7 2 ( 4 0 0 ) = 2 8 8 . We can also do 1 . 2 8 y = 1 . 2 8 ( 2 2 5 ) = 2 8 8 .