Assume this equation has distinct roots. Prove $k = -1/2$ without using Vieta's formulas.

75 Views Asked by At

Given $(1-2k)x^2 - (3k+4)x + 2 = 0$ for some $k \in \mathbb{R}\setminus\{1/2\}$, suppose $x_1$ and $x_2$ are distinct roots of the equation such that $x_1 x_2 = 1$.

Without using Vieta's formulas, how can we show $k = -1/2$ ?

Here is what I have done so far:

$(1-2k)x_1^2 - (3k+4)x_1 + 2 = 0$

$(1-2k)x_2^2 - (3k+4)x_2 + 2 = 0$

$\to (1-2k)x_1^2 - (3k+4)x_1 + 2 = (1-2k)x_2^2 - (3k+4)x_2 + 2$

$\to (1-2k)x_1^2 - (3k+4)x_1 = (1-2k)x_2^2 - (3k+4)x_2$

$\to (1-2k)x_1^2 - (3k+4)x_1 = (1-2k)(1/x_1)^2 - (3k+4)(1/x_1)$

$\to (1-2k)[x_1^2 - (1/x_1)^2] - (3k+4)[x_1 - (1/x_1)] = 0$

$\to (1-2k)[x_1 - (1/x_1)][x_1 + (1/x_1)] - (3k+4)[x_1 - (1/x_1)] = 0$

$\to (1-2k)[x_1 + (1/x_1)] - (3k+4) = 0$ or $[x_1 - (1/x_1)] = 0$

$\to (1-2k)[x_1 + (1/x_1)] - (3k+4) = 0$, $x_1 = 1$ or $x_1 = -1$

Since the later two cases violate the distinct roots assumption, we have:

$(1-2k)[x_1 + (1/x_1)] - (3k+4) = 0$

This gives:

enter image description here

The answer is $x_1 = \frac{5-i\sqrt{39}}{8}$ or $x_1 = \frac{5+i\sqrt{39}}{8}$. How do I get that (without Vieta's)?

2

There are 2 best solutions below

1
On BEST ANSWER

You don't need Vieta's formulas to conclude that a quadratic of the form $ax^2+bx+c=0$ has distinct roots that are reciprocals if and only if $a=c$. If $r$ and $1/r$, with $r\not=1/r$, are roots of the quadratic, then

$$ar^2+br+c=0\quad\text{and}\quad {a\over r^2}+{b\over r}+c=0$$

Multiplying the second equation through by $r^2$ and writing the terms in reverse order gives

$$cr^2+br+a=0$$

Subtracting this from the first equation gives $(a-c)r^2+(c-a)=0$, better written as

$$(a-c)(r^2-1)=0$$

Since $r\not=1/r$ by assumption, we have $r^2-1\not=0$, which implies $a-c=0$.

Applying this to the case at hand, $a=1-2k$ and $c=2$, we get $1-2k=2$, hence $k=-1/2$, as desired.

It's maybe worth noting that the middle term, $b=-(3k+4)$, is irrelevant to the proof.

1
On

The problem is find $k$ not $x_1$ isn't it? If so take the equation you arrived at before you started doing computer algebra:

$$(1-2k)[x_1 + (1/x_1)] - (3k+4) = 0$$

and multiply by $x_1$ to get

$$(1-2k)x_1^2 - (3k+4) x_1 + (1 -2k) = 0$$

but you know that

$$(1-2k)x_1^2 - (3k+4) x_1 + 2 = 0$$

so you must have $1 - 2k = 2$, i.e., $k = -\frac{1}{2}$. (Using the Vieta formulas which just amount to $(x - x_1)(x - x_2) = x^2 - (x_1 + x_2)x + x_1x_2$ for a quadratic seems a much simpler approach to me.)