Find the number of positive integers n for which n 3 − 8 n 2 + 2 0 n − 1 3 is a prime number .
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.
I thought no.of prime values of expression so I marked it as 2.for n=2,4 expression value is 3. And for n=3 expression value is 2.
Log in to reply
That's too bad, as clearly you knew how to solve the problem. The question, though, does ask for the number of suitable values of n , of which there are 3, and not the number of distinct primes obtainable.
The above cubic factors into n 3 − 8 n 2 + 2 0 n − 1 3 = ( n − 1 ) ( n 2 − 7 n + 1 3 ) . If it is to equal a prime number p , then we require:
n − 1 = 1 ; n 2 − 7 n + 1 3 = p ⇒ n = 2 , p = 3
n − 1 = p ; n 2 − 7 n + 1 3 = 1 ⇒ n = 3 , p = 2 and n = 4 , p = 3
Hence, there are three possible positive integers n = 2 , 3 , 4 .
You just find a factor of the above expression And check the values. Might be the sufficient hint!!
Problem Loading...
Note Loading...
Set Loading...
By observation we note that n = 1 is a root of the given expression, so factoring out n − 1 we have that
n 2 − 8 n 2 + 2 0 n − 1 3 = ( n − 1 ) ( n 2 − 7 n + 1 3 ) .
For this to be prime we must have either n − 1 = ± 1 and n 2 − 7 n + 1 3 = ± p for some prime p , or n 2 − 7 n + 1 3 = ± 1 and n − 1 = ± p for some prime p . So looking at the 4 cases:
n − 1 = 1 ⟹ n = 2 , for which n 2 − 7 n + 1 3 = 3 , which is prime, so n = 2 is a solution;
n − 1 = − 1 ⟹ n = 0 , which is not positive;
n 2 − 7 n + 1 3 = 1 ⟹ ( n − 3 ) ( n − 4 ) = 0 ⟹ n = 3 or n = 4 , and since n − 1 is prime in both of these cases we have that n = 3 and n = 4 are solutions;
n 2 − 7 n + 1 3 = − 1 ⟹ n 2 − 7 n + 1 4 = 0 , which does not have real roots as 7 2 − 4 × 1 4 < 0 .
Thus 2 , 3 , 4 are the only suitable values for n , giving us a final answer of 3 .