Questions tagged [polynomials]

For both basic and advanced questions on polynomials in any number of variables, including, but not limited to solving for roots, factoring, and checking for irreducibility.

Usually, polynomials are introduced as expressions of the form $\sum_{i=0}^dc_ix^i$ such as $15x^3 - 14x^2 + 8$. Here, the numbers are called coefficients, the $x$'s are the variables or indeterminates of the polynomial, and $d$ is known as the degree of the polynomial. In general the coefficients may be taken from any ring $R$ and any finite number of variables is allowed. The set of all polynomials in $n$ variables $X_1,\ldots,X_n$ over a ring $R$ is denoted by $R[X_1,\ldots,X_n]$. Strictly speaking this is a formal sum, because the variables do not represent any value. Nevertheless, the variables of a polynomial obey the usual arithmetic laws in a ring (like commutativity and distributivity). This makes $R[X_1,\ldots,X_n]$ a ring itself. One should note that $R[X_1][X_2]=R[X_1,X_2]$. This idea can be extended to $R[X_1,\ldots,X_n]$ in a very natural way.

An expression of the form $rX_1^{i_1}X_2^{i_2}\cdots X_n^{i_n}$ ($r\in R$) is called a term (of the polynomial). Polynomials are defined to have only finitely many terms. An expression with infinitely many different terms is generally not considered to be a polynomial, but a (formal) power series in one or more variables.

When $P\in R[X]$, $P(x)$ is the evaluation of $P$ at $x$ (pronounced $P$ of $x$, or simply $Px$). Here $x$ does not necessarily have to be an element of $R$. For $P(x)$ to be properly defined for an $x$ in some ring $S$ we need:

  • a homomorphism $\phi:R\to S$
  • the image of all coefficients of $P$ under $\phi$ should commute with $x$.

Evaluation is now simply performed by replacing all coefficients $r_i$ of $P$ by $\phi(r_i)$ and all appearances of $X$ by $x$. This quite naturally gives an expression that is well defined as an element of $S$. The concept of evaluation is naturally extended to $R[X_1,\ldots,X_n]$.

26755 questions
2
votes
2 answers

Find possible pairs of $p$ and $q$

I'm doing an exercise that's on various topics and I do not know how to do this question (weighted 3 marks): $$ \begin{array}{l}\text { The polynomial } P(x)=(x-p)^{3}+q \text { has a zero at } x=1, \text { and when divided by } x, \\ \text { the…
spuddy
  • 186
2
votes
2 answers

Complex roots of polynomial equations with real coefficients

Consider the polynomial $x^5 +ax^4 +bx^3 +cx^2 +dx+4$ where $a, b, c, d$ are real numbers. If $(1 + 2i)$ and $(3 - 2i)$ are two roots of this polynomial then what is the value of $a$ ?
user21982
2
votes
1 answer

Question on products of polynomials

Let us have two univariate polynomials $P\left({x}\right)$ and $Q\left({x}\right)$, both with integer coefficients, such that the sum of the coefficients of $P\left({x}\right)$ is equal to 1. $P\left({x}\right)$ has at least one negative…
Juan Moreno
  • 1,110
2
votes
0 answers

Polynomial roots that differ by a root of unity

Given an integer $n$, a monic polynomial $f\in \mathbb{Z}[x]$ and one of its complex roots $\alpha$, I'm trying to show that the number of roots $\beta$ of $f$ such that $\alpha^n = \beta^n$ is independent of the choice of $\alpha$ a factor of…
2
votes
3 answers

How to find the number of solutions for x in $x^3\:−\:x\:=\:a^3\:−\:a$?

I have this exercise where I have no idea how to proceed: I need to find the number of solutions for x in $x^3\:−\:x\:=\:a^3\:−\:a$ Any clues? Tried $x^3\:−\:x\:-a^3\:+\:a=\:0$ but I still can't proceed. I would like to factor it so it can be a…
nginx9101
  • 77
  • 7
2
votes
1 answer

Name and proof of the general form of ${a_1}{b_1} + {a_2}{b_2} = \left( {{a_1} - {a_2}} \right){b_1} + {a_2}\left( {{b_1} + {b_2}} \right)$?

I was running into a strange identity that is Given ${x_1},{x_1},...,{x_n}$ and ${y_1},{y_1},...,{y_n}$ are all real number. Denote ${c_k} = {y_1} + {y_2} + {y_3} + ... + {y_k}$ where $1 \le k \le n$ Proof that ${x_1}{y_1} + {x_2}{y_2} +…
2
votes
2 answers

Generalized remainder theorem for powers of linear factors

Let $P(x)$ be a polynomial of degree $n,$ then, remainder of $\left( \frac{P(x)}{x-a}\right)$ is $P(a)$, this is by the remainder theorem. However, what is the remainder of $ \frac{P(x)}{(x-a)^n}$? Are there any theorems for this?
2
votes
2 answers

Polynomial $f(x) = ax^2 – bx + c $ (where $a$, $b$ & $c$ are positive integers)

Let the polynomial $f(x) = ax^2 – bx + c $ (where $a$, $b$ & $c$ are positive integers). If $f(p) = f(q) = 0$, where $ 0 < p < q < 1$, then find the minimum possible value of $a$. The vertex is $-\frac{-b}{2a}=\frac{b}{2a}>0$ and lies between $0$ &…
2
votes
2 answers

Finding the position of third root when two roots are given of two equation

If $a,b,c \in R$ such that $abc \neq0$ If $x_1$ is a root of $a^2x^2+bx+c=0, x_2$ is a root of $a^2x^2-bx-c=0 $ and $x_1 > x_2 >0$ then the equation $a^2x^2+2bx+2c=0$ has roots $x_3$ . Prove that $x_3$ lies between $x_1 \& x_2$ Let f(x) =…
Sachin
  • 9,896
  • 16
  • 91
  • 182
2
votes
2 answers

Finding integral value of constant in quadratic equation

Find the total number of integral values of a such that $x^2+ax+a+1=0$ has integral roots. Solution : Finding the discriminant of the question D = $b^2-4ac = a^2-4(a+1)$ = $(a-2)^2-8 $ Let this be equal to $t^2 : \Rightarrow (a-2)^2-8 =t^2…
Sachin
  • 9,896
  • 16
  • 91
  • 182
2
votes
0 answers

Find $y$ given that $(1+x_1y)(1+x_2y)\cdots(1+x_ny)=a$

Express $y$ in terms of $x_i$ and $a$, given that $1\geq x_i\geq0$, $a\geq1$, and \begin{align} (1+x_1y)(1+x_2y)\cdots(1+x_ny)&=a,\\ x_1+x_2+\cdots+x_n&=1.\\ \end{align} For $n=2,3$ I can find using quadratic and cubic formulas. But how to do it for…
Lee
  • 1,910
  • 12
  • 19
2
votes
1 answer

Uniqueness of a quadratic with conditions on the roots

Here's the question I have. I don't need help with the calculation for I have that already. Construct a (unique) quadratic equation for which the sum of the roots is 3 and the sum of the cubes of the roots is 63. I know what roots satisfy this, yet…
2
votes
1 answer

Minimal value of a polynomial

I do not know the following statement is true or not: Given $10$ such that for any n, define $A=\{ f(x)=\sum\limits_{i=0}^{n}a_ix^i\}$ where $a_i\in\{0\,,1\}$, then for any $f\,,g \in A$ and their degrees are the same,…
Tao
  • 530
  • 2
  • 11
2
votes
1 answer

Show that the $n$th real polynomial has $n$ simple real roots

Let $p_n$ be a real polynomial of exactly degree $n$. Suppose that $p_n$ has atleast $n-1$ distinct real roots of odd multiplicity. It is claimed that $p_n$ has $n$ simple real roots. How do you verify this claim? Here is what I thought: if those…
James2020
  • 573
2
votes
3 answers

How to solve exercises with polynomial with 2 parameters having all real roots?

$f=2x^{4}+4x^{3}+3x^{2}+bx+c$ has all real roots, find b,c (b,c are from R). Thanks a lot, I tried with substitution, I don't know, is there something with derivative? please help thanks