Find the sum of all possible values of b such that the following equations has common roots :
2 x 2 + b x + 1 = 0
5 x 2 + x + b = 0
This problem is original
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.
very nice. Thanks.
If a x 2 + b x + c = 0
d x 2 + e x + f = 0
then condition for common roots is :
( d c − a f ) 2 = ( b f − e c ) ( a e − d b )
Applying it here, we get :
5 b 3 + 2 b 2 − 2 5 b + 2 7 = 0
Using vieta, sum of all possible values of b is -0.4
Nice solution, but how do you know that condition?
Log in to reply
sorry, i dont have its proof now, i just found it in a book. Whats your solution?
Log in to reply
Here's the proof: Let the common root be α . Solving by Cross multiplication method.. b f − e c α 2 = c d − a f α = a e − b d 1 ⇒ α = c d − a f b f − e c = a e − b d c d − a f ⇒ ( d c − a f ) 2 = ( b f − e c ) ( a e − d b )
No need to be sorry. I'll post it soon, nice problem :D
Log in to reply
@Alan Enrique Ontiveros Salazar – Thanks. And have a look at my set Problems I created
Log in to reply
@Dev Sharma
–
The way I remember the condition for one common root,
a
1
x
2
+
b
1
x
+
c
1
=
0
a
2
x
2
+
b
2
x
+
c
2
=
0
If
α
is the common root,
b
1
c
2
−
c
1
b
2
α
2
=
a
1
c
2
−
c
1
a
2
−
α
=
a
1
b
2
−
b
1
a
2
1
Or using determinants,
∣ ∣ ∣ ∣ b 1 b 2 c 1 c 2 ∣ ∣ ∣ ∣ α 2 = ∣ ∣ ∣ ∣ a 1 a 2 c 1 c 2 ∣ ∣ ∣ ∣ − α = ∣ ∣ ∣ ∣ a 1 a 2 b 1 b 2 ∣ ∣ ∣ ∣ 1
We proved it in class, but I remember this formula for quicker solving.
There is a direct formula for the condition of two quadratics to have a common root. But I would like to present a solution that shows where the answer came from. Apologies for the lack of knowledge of LaTeX.
Let's say the two quadratics have a common root. Multiply a constant factor to one of them and make their leading coefficients equal. Subtract them. If two terms are equal to zero, their difference is zero as well. And because the difference is a linear term, it's root is the common root!
But we need to put this thing in to any one of the equations and make it equal to zero, as it was a mere assumptions that the quadratics ACTUALLY had a common root. We get a cubic in this case in terms of b. What are you looking at now? Put Vieta to some use!
Problem Loading...
Note Loading...
Set Loading...
Let a x 2 + b x + c = 0 have roots x 1 , x 2 and d x 2 + e x + f = 0 have roots x 2 , x 3 . Then, by Vieta's formulas:
x 1 + x 2 = − a b . . . ( 1 ) x 1 x 2 = a c . . . ( 2 ) x 2 + x 3 = − d e . . . ( 3 ) x 2 x 3 = d f . . . ( 4 )
Then with the identity ( A − B ) 2 = ( A + B ) 2 − 4 A B we can obtain:
x 1 − x 2 = a b 2 − 4 a c . . . ( 5 ) x 2 − x 3 = d e 2 − 4 d f . . . ( 6 )
Subtract ( 3 ) from ( 1 ) :
x 1 − x 3 = − a b + d e . . . ( 7 )
Sum ( 5 ) and ( 6 ) :
x 1 − x 3 = a b 2 − 4 a c + d e 2 − 4 d f . . . ( 8 )
Equate ( 7 ) and ( 8 ) :
− a b + d e = a b 2 − 4 a c + d e 2 − 4 d f
Simplify and square both sides:
a e − b d = d b 2 − 4 a c + a e 2 − 4 d f
( a e − b d ) 2 = ( d b 2 − 4 a c + a e 2 − 4 d f ) 2
a 2 e 2 − 2 a b d e + b 2 d 2 = b 2 d 2 − 4 a c d 2 + a 2 e 2 − 4 a 2 d f + 2 a d ( b 2 − 4 a c ) ( e 2 − 4 d f )
Divide both sides by 2 a d :
2 c d − b e + 2 a f = ( b 2 − 4 a c ) ( e 2 − 4 d f )
Square again:
( 2 c d − b e + 2 a f ) 2 = ( b 2 − 4 a c ) ( e 2 − 4 d f )
4 c 2 d 2 + b 2 e 2 + 4 a 2 f 2 − 4 b c d e + 8 a c d f − 4 a b e f = b 2 e 2 − 4 b 2 d f − 4 a c e 2 + 1 6 a c d f
4 a 2 f 2 − 8 a c d f + 4 c 2 d 2 = 4 b c d e + 4 a b e f − 4 b 2 d f − 4 a c e 2
4 ( a f − c d ) 2 = 4 ( b c d e + a b e f − b 2 d f − a c e 2 )
( a f − c d ) 2 = b d ( c e − b f ) + a e ( b f − c e )
( a f − c d ) 2 = ( a e − b d ) ( b f − c e )
In this case the equations are 2 x 2 + b x + 1 = 0 and 5 x 2 + x + b = 0 , hence the condition is:
( 2 b − 5 ) 2 = ( 2 − 5 b ) ( b 2 − 1 )
4 b 2 − 2 0 b + 2 5 = 2 b 2 − 2 − 5 b 3 + 5 b
5 b 3 + 2 b 2 − 2 5 b + 2 7 = 0
The discriminant of that equation is less tha cero, hence there are no repeated roots. By Vieta's formulas, the sum of all values of b is − 5 2 = − 0 . 4 .