Originally posted by: hypn0tik
Originally posted by: schneiderguy
I'm taking a pre-calculus class in college (I took AP calc in high school but the college won't let me take the college calc class for some reason). We had a test today and the extra credit question was:
f(x) = x^4 - 4x^2 + k
For what value of k does the function have two real zeroes, each with a multiplicity of two?
So from there I figured out that since the multiplicity was 2, the function would just touch the x-axis at the zeroes, but not cross. So I took the derivative of the function and set y to 0 to find the extrema, which were +- sqrt(2). Then I plugged them back into the original equation, and set y to 0 to get k. I believe this is the correct solution, but how would you do this without derivatives? Basically, how do you get the extrema of an equation that has a degree greater than 2 without finding where the derivative of the function = 0?
It's a bit messy but it can be done. Since you have 2 real zeroes, each with multiplicity of two, you have the form:
f(x) = (x-a)^2 (x-b)^2
So that when you set f(x) = 0, x = a and x = b are your only roots.
Now expand:
(x^2 - 2ax + a^2) (x^2 - 2bx + b^2) = [x^4 - 4x^2 + k]
(The quantity in the [] = RHS)
Expand further:
x^4 + x^3 (-2a -2b) + x^2 (a^2 + b^2 + 4ab) + x (-2ab^2 - 2a^2b) + a^2*b^2 = RHS
Now, you have 2 equations and 2 unknowns to solve:
The coefficient of x^3 = 0 and the coefficient of x^2 = -4
-2a - 2b = 0 ---> a = -b ----------- eqn (1)
a^2 + b^2 + 4ab = -4
Sub in (1)
(-b)^2 + b^2 + 4(-b)(b) = -4
b^2 + b^2 -4b^2 = -4
-2b^2 = -4
b^2 = 2
b = sqrt(2)
a = -sqrt(2)
You can pick b = -sqrt(2) to be your solution, in which case a = +sqrt(2). The symmetry is preserved since f(x) = (x-a)^2 (x-b)^2
So, comparing your LHS to your RHS, your constant k = a^2*b^2 = sqrt(2)^2 (-sqrt(2)^2)
so k = 2*2 = 4.