Find the sum of the real solutions of the equation:
x 4 − 4 x = 1
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 like your solution, but there's an easier way of factoring it, the idea is to make a perfect square binomial on the left side, by adding both sides 2 x 2 , this way, we have: x 4 + 2 x 2 = 2 x 2 + 4 x + 1 Now adding 1 both sides we have two perfect square binomials: x 4 + 2 x 2 + 1 = 2 x 2 + 4 x + 2 ⇒ ( x 2 + 1 ) 2 = 2 ( x 2 + 2 x + 1 ) ⇒ ( x 2 + 1 ) 2 = 2 ( x + 1 ) 2 ⇒ ( x 2 + 1 ) 2 − 2 ( x + 1 ) 2 = 0 ⇒ ( x 2 + 1 + 2 ( x + 1 ) ) ( x 2 + 1 − 2 ( x + 1 ) ) = 0 .
Log in to reply
Interesting way of factorizing it.
This looks a lot like a solution of mine of another unrelated interesting equation jajajaja.
Log in to reply
Hey, Héctor! Post the link here, so we can see this other equation too!
you can more simplify youre solution....
same solution
Why did you ignore the case a = − 2 ?
Log in to reply
It's symmetric, the case a = − 2 would exchange the values of b and c .
polynomial- x^4+0 x^3+0 x^2-4*x-1=0 MATLAB CODE: roots([1 0 0 -4 -1]) % a bulit-in function, roots(coefficients of the polynomial in descending order of the power of x) this returns- ans =
1.6633
-0.7071 + 1.3836i
-0.7071 - 1.3836i
-0.2490
taking the real solutions 1.6633 & -0.2490 and adding them results in--> 1.6633-0.2490=1.4143
Problem Loading...
Note Loading...
Set Loading...
Try to factor the equation x 4 − 4 x − 1 = 0 into the form of the product of two quadratics of the form ( x 2 + a x + b ) ( x 2 − a x + c ) = 0 . Expand:
x 4 + ( b + c − a 2 ) x 2 + a ( c − b ) x + b c = 0
And compare the coefficients:
b + c = a 2
b − c = a 4
b c = − 1
Solve for b and c with the first two equations:
b = 2 a 2 + a 4
c = 2 a 2 − a 4
Replace it in the third equation and simplify:
a 6 + 4 a 2 − 1 6 = 0
By the Rational Root Test, we find that a 2 − 2 is a factor. So,
( a 2 − 2 ) ( a 4 + 2 a 2 + 8 ) = 0
With this we get that a = 2 . Now, obtain b and c :
b = 1 + 2
c = 1 − 2
Hence, x 4 − 4 x − 1 = ( x 2 + 2 x + 1 + 2 ) ( x 2 − 2 x + 1 − 2 )
If we solve each factor with the quadratic formula, we get our four solutions:
x 1 , 2 = 2 − 2 ± i 2 + 4 2
x 3 , 4 = 2 2 ± 4 2 − 2
Only the last two are real, hence our final answer is x 3 + x 4 = 2 ≈ 1 . 4 1 4 2