Find the number of pairs of integers with satisfying that the range of contains neither 1 nor 100, and that the absolute value of is as small as possible.
There are many integer pairs of numbers - corresponding to many different values of b - such that the function satisfies the condition that its range contains neither 1 nor 100. You should count only the ones for which the absolute of is the minimum possible value. For example: if there were only 4 pairs satisfying the condition: (1, 2), (3, -2), (4, 5), (3, -5), then the answer to our question would be 2, because we would not count (4, 5) and (3, -5).
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, you need to notice that we can assume that ∣ a ∣ = ∣ b ∣ , because if ∣ a ∣ = ∣ b ∣ , then f ( x ) = ± x − 1 b or f ( x ) = ± x + 1 b , and then, using that b = 0 , there cannot be two different numbers that do not belong to the range of f ( x ) . Using the previous assumption, we obtain that the equation y = x 2 − 1 a x + b is equivalent to y ( x 2 − 1 ) = ( a x + b ) , because x = 1 and x = − 1 would not be solutions of the latter equation. Therefore,
y ∈ R a n g e ( f )
⇔ y ( x 2 − 1 ) = ( a x + b ) has real solutions with respect to x (distinct from 1 and -1)
⇔ y x 2 − a x − ( y + b ) = 0 has real solutions with respect to x (distinct from 1 and -1)
⇔ a 2 + 4 y ( y + b ) ≥ 0 (discriminant)
⇔ ( 2 y + b ) 2 ≥ b 2 − a 2
From the previous equivalences, if ∣ b ∣ < ∣ a ∣ , then R a n g e ( f ) = ( − ∞ , ∞ ) . Otherwise, in the case that ∣ b ∣ > ∣ a ∣ , we have that R a n g e ( f ) = ( − ∞ , 2 − b − b 2 − a 2 ] ∪ [ 2 − b + b 2 − a 2 , ∞ ) . Using the fact that 1 and 100 are not in the range of f , we obtain that 2 − b − b 2 − a 2 < 1 , and 2 − b + b 2 − a 2 > 1 0 0 ( ∗ ) The second of these two inequalities and the fact that b 2 − a 2 ≤ ∣ b ∣ , imply that 2 − b + ∣ b ∣ ≥ 2 − b + b 2 − a 2 > 1 0 0 , so b is a negative number and ∣ b ∣ > 1 0 0 , and, since b is integer, ∣ b ∣ ≥ 1 0 1 . Then, b = − 1 0 1 . Using this value of b , we can find the possible values of a solving either inequality in (*) for ∣ a ∣ , In both cases, we obtain that ∣ a ∣ < 2 0 . Therefore, the possible pairs for which b takes its minimum absolute value are ( − 1 9 , − 1 0 1 ) , ( − 1 8 , − 1 0 1 ) , . . . , ( 1 9 , − 1 0 1 ) , and the answer for this question would be 3 9 .