Questions tagged [discriminant]

Discriminant of a polynomial $;P\left(x\right) = a_{0} + a_{1}x + a_{2}x^{2} + \dots + a_{n}x^{n} \neq 0,$ is defined as

\begin{align} \Delta &= a_{n}^{2n-2}\prod_{ i < j } \big( r_i - r_j \big)^{2} = \left(-1\right)^{n\left(n-1\right)/2} a_{n}^{2n-2}\prod_{ i \neq j } \big( r_i - r_j \big) \end{align}

where $,r_1,\dots,r_n,$ are roots of $P\left(x\right)$ (counting multiplicity)

In algebra, the discriminant of a polynomial is typically denoted by a capital $D$, capital script $\mathscr D$, or the capital Greek letter Delta $\Delta$. It gives information about the nature of its roots. Typically, the discriminant is zero if and only if the polynomial has a multiple root.

For example, the discriminant of the quadratic polynomial $\;ax^2+bx+c\;$ is $\;\Delta = b^2-4ac.\,$ Here for real $a,\,b$ and $c$, if $\Delta > 0$, the polynomial has two real roots, if $\Delta = 0$, the polynomial has one real double root, and if $\Delta < 0$, the two roots of the polynomial are complex conjugates.

421 questions
0
votes
1 answer

Finding the value of k that satisfies the discrimant

I am struggling to do this question Find the valus of $k$ so that $kx^2-2+kx+x=0$ has discriminant $Δ= -24$ I tried to use the formula $b^2-4ac$ but my answer is completely wrong. Any ideas would be much appreciated
0
votes
1 answer

Proving a formula for the discriminant of a polynomial

I am attempting to prove that the discriminant of some polynomial $f$ of degree $n$ with roots $\alpha_1, \dots, \alpha_n$ is given by $$ \Delta_f = (-1)^{\frac{n(n-1)}{2}} \prod\limits_{k = 1}^n f'(\alpha_k) $$ I found a solution in the first…
sToxic5
  • 23
0
votes
1 answer

Determining number of solutions by discriminant

It is known that: A positive discriminant indicates that the quadratic has two distinct real number solutions. A discriminant of zero indicates that the quadratic has a repeated real number solution. A negative discriminant indicates that neither of…
-1
votes
2 answers

Solve: The equation $7x^2-(R+13)x+R^2-R-2=0$ has one real root in range (0,1) and one real root in range (1,2). What's the range of R?

Solve: The equation $7x^2-(R+13)x+R^2-R-2=0$ has one real root in range (0,1) and one real root in range (1,2). What's the range of R? I've been given this problem for a math class (the topic was discriminants) and I'm not really sure how to…
1
2