Find the sum of all positive integers a such that
( x − a ) ( x − 1 2 ) + 2
can be factored as ( x + b ) ( x + c ) where b and c are integers.
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.
nice solution @Kartik Sharma
F o r a q u a d r a t i c e q u a t i o n t o h a v e i n t e g r a l r o o t s , t h e d i s c r i m i n a n t o f t h a t e q u a t i o n m u s t b e a z e r o o r p e r f e c t s q u a r e . A s a p e r f e c t s q u a r e i s q u i t e h a r d t o p r e d i c t , w e w o u l d t a k e i n t o c o n s i d e r a t i o n o n l y D = 0 , w h e r e D i s t h e d i s c r i m i n a n t o f t h a t p a r t i c u l a r e q u a t i o n . F o r ( x − a ) ( x − 1 2 ) + 2 = 0 t o h a v e i n t e g r a l r o o t s : x 2 + x ( − 1 2 − a ) + 1 2 a + 2 = 0 D i s c r i m n a n t = 0 ( − 1 2 − a ) 2 − 4 ( 1 2 a + 2 ) = 0 1 4 4 + a 2 + 2 4 a − 4 8 a − 8 = 0 a 2 − 2 4 a + 1 3 6 = 0 C l e a r l y , t h e s u m o f t h e v a l u e s o f a c a n b e g i v e n b y V i e t a ′ s f o r m u l a i . e . s u m o f r o o t s = − c o e f f i c i e n t o f x 2 c o e f f i c i e n t o f x S o , s u m o f v a l u e s o f a = − c o e f f i c i e n t o f a 2 c o e f f i c i e n t o f a = − 1 ( − 2 4 ) = 2 4
You might be getting correct answer but the method is wrong. this is because the values of a you are getting are not positive integers.
Solutions are 9 and 15!
Why you need to take a wrong assumption? That might have given you a right answer here but it leads to misunderstanding. Good crack by the way! You can see my solution !
Nice one. .
Totally Incorrect solution... It is Nice question But you had Killed beauty of this Question
you have to consider all the possiblities,just because any possiblity is hard you cannt ignore it,other wise it will lead to serious error.even if you arenot considering all possiblities then plz put values and check at evry step.you have to calculate sum of all integral values of a but that expression a^2-24a+136=0 doesnt has any integral root. for experienced persons who know where they have to round off error it is good and efficient way which will save time.but for students and newbies it is seriously misleading
Problem Loading...
Note Loading...
Set Loading...
As Abhineet has rightly said, to have integral roots, discriminant must be a 0 or a perfect square which can easily be derived by the quadratic formula.
It is only required to find the sum but had the question been finding the values of a too, then Abhineet's sol will be clearly misleading.
( 1 2 + a ) 2 − 4 ( 1 2 a + 2 ) = z 2 for any integer z.
CASE 1 - When ( 1 2 + a ) 2 − 4 ( 1 2 a ) = 1 2 − a 2
( 1 2 − a ) 2 − 8 = z 2
( 1 2 − a ) 2 − z 2 = 8
( 1 2 − a − z ) ( 1 2 − a + z ) = 8
Now 8 = 4 2 or 8 = 2 4 are same in finding solutions for a because its sign(negative or positive) doesn't change. Also, 8 = 8*1 can also not be the case because if it is so, then a will come as decimals.
Therefore,
1 2 − a − z = 4 - > a + z = 8
1 2 − a + z = 2 - > a − z = 1 0
Therefore, a = 9
CASE 2 - When ( 1 2 + a ) 2 − 4 ( 1 2 a ) = a − 1 2 2
Similarly,
( a − 1 2 − z ) ( a − 1 2 + z ) = 8
a − 1 2 − z = 4 -> a − z = 1 6
a − 1 2 + z = 2 -> a + z = 1 4
Therefore, a = 15
So, the sum of all possible positive integers a is 15 + 9 = 2 4