Find the sum of all positive integers n for which the equation n x 4 + 4 x + 3 = 0 has a real root.
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.
the problem is x^4 not x^2
I believe the best way is to put x 4 = m 2 fro some integer m. Hence the new equation would be
n m 2 + 4 m + 3 . The just apply the formula to find the root as 2 n − 4 ± 1 6 − 1 2 n .
Hence only possible value is n = 1
Problem Loading...
Note Loading...
Set Loading...
For the solutions to be real, the discriminant has to be greater than or equal to 0. => 4 2 − 1 2 n > = 0 => 1 6 > = 1 2 n => 3 4 > = n > 0 as n is positive. Therefore n = 1