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
1
vote
2 answers

Find the number of ordered pairs of positive integers (x,y) that satisfy $x^{2} - xy + y^{2} = 49$

I tried to start this quest but won't end up with any answer. First I made a complete square on RHS which is like this $x^{2} - xy - xy + xy + y^{2}$ Then converted it into $xy+{\left( x - y\right) }^{2}$ And as LHS is a perfect square Which is…
1
vote
3 answers

Find roots of 3 degree polynomial such that they are in geometric progression

I have the polynomial $P(x) = x^3 + mx^2-3x+1, m\in\mathbb{R}$. I need to find $m$ such that the roots of that polynomial are in geometric progression. My attemp of solving this was to use Vieta's formulas. So $x_1+x_2+x_3 = -m,…
1
vote
2 answers

Find $x_1^3+x_2^3+x_3^3$ for a degree 3 polynomial.

I have the polynomial $P(x) = x^3+mx^2-3x+1, m\in \mathbb{R}$. I need to find $x_1^3+x_2^3+x_3^3$ as a $m$ function. I tried to use Viette equations: $x_1+x_2+x_3 = m, x_1x_2+x_1x_3+x_2x_3 = 3, x_1x_2x_3 = 1$ Then I expanded $(x_1+x_2+x_3)^3 =…
1
vote
2 answers

Unique Monic Polynomial

Would it be possible for anybody to give me an example of the unique polynomial $p(n)$ of degree $d$ whose coefficient of highest degree is 1, such that $p(n_1)=p(n_2)= ... = p(n_d) = 0$ where $n_1,n_2,...,n_d$ are integer. I need to understand what…
1
vote
1 answer

Are all the roots of $x^n-kx^{n-1}-kx^{n-2}-\cdots-kx-k=0$ "distinct"?

Are all the roots of $x^n-kx^{n-1}-kx^{n-2}-\cdots-kx-k=0$ "distinct", where $n,k$ are integers and $n,k\geq 2$? And why?
Jason
  • 123
1
vote
1 answer

Finding unknowns in polynomial with two factors and remainder.

$x^2-4x-12$ is a factor of $rx^3-sx^2+36$, find $r$ and $s$. Long division gives $rx+(-s+4r)$ with remainder $12rx+4(-s+4r)x+36+12(-s+4r)$ Where I have difficulty with the logic is that since $x^2-4x-12=0$ then the remainder is 0? And from that we…
1
vote
2 answers

If the HCF of the polynomials $x^3+px+q $ and $x^3+rx^2+lx+x$ is $x^2+ax+b$, then their LCM is? (provided that $r≠0$)

I tried multiplying the two polynomials together and then dividing them by the HCF (as product=HCF*LCM), but reached nowhere. Then, I used the factor theorem but also got stuck. Can somebody help?
1
vote
1 answer

Discrepancy in finding the coefficient of a polynomial

After asking a question here let us consider on the following case which is simpler, this might help me to make some progress: suppose we have the following polynomial: $$f(x)=(x^0+x^1+x^2+x^3)^3$$ expanding this gives: $$f(x)=1 + 3 x + 6 x^2 +…
Wiliam
  • 493
1
vote
1 answer

Find the remainder of a high degree polynomial

If $$f(x)=(x-1)^{2017}+(x-3)^{2016}+x^2+x+1$$ and $$g=x^2-4x+4$$ find the remainder of f divided by g. I only found that $$g=(x-2)^2$$ but I don't know how to go further. If I set $$x=2$$ then $$f(2)=9$$ How to use this? Typo:$$ f(2)=9$$
Andrei
  • 53
1
vote
1 answer

A question on polynomial (Divide a polynomial function)

When a polynomial $f(x)$ is divided by $(x-2),$ the remainder is $7$. When $f(x)$ is divided by $(x+1)$ the remainder is $-2$. (a) If the remainder is $px+q$ when $f(x)$ is divided by $(x-2)(x+1)$, find the values of $p$ and $q$. (b) Find the…
1
vote
0 answers

Division of the leading terms of numerator and denominator in "Polynomial long division" algorithm

I am trying to understand why polynomial long division algorithm works. I have found an answer on Quora, please follow the link: Why does polynomial long division work? As you can see the explanation comes along with the example: And the first step…
1
vote
1 answer

How to construct a polynomial which is strictly negative everywhere, except for finitely many roots?

Given a finite sequence of real vectors $x_1, x_2, \dots, x_m \in \mathbb{R}^d$, how do I construct a polynomial $p \colon \mathbb{R}^d \to \mathbb{R}$, such that $p(x) = 0$ if $x \in \{ x_1, \dots, x_m \}$ and $p(x) < 0$ otherwise? Is that even…
1
vote
1 answer

simple one variable polynomial function, point of inflexion: finding coefficients

$$f(x) = a x^3 + b x^2 + c x + d$$ The graph of $f$ definitely has a point of inflexion. Which of the coefficients $a, b, c, d$ determines that the point of inflexion of the function $f$ lies on the vertical axis? Write down this coefficient and…
TTomi
  • 95
1
vote
2 answers

simple one variable polynomial function: finding coefficients

Write down the values of the coefficient $b$ and $d$ for which the graph of $f(x)$ with equation $f(x) = ax^3 + bx^2 + cx + d$ would be symmetric about the origin. Because this is an odd function, it leads me to the bx^2+d=0 equation. I am not sure…
TTomi
  • 95
1
vote
0 answers

For which pairs $(f,g) \in P \times P$ the polynomial $f * g$ is not reducible in $\mathbb (R, +, \cdot)$

Let $P \subset \mathbb R[x]$ be defined as follows: $$P = \{ax^3+bx+c \mid \ a,b,c \in \mathbb R\}$$ then let the operation $*$ be so defined on $P$: $$(ax^3+bx+c)*(ux^3+tx+z) = aux^3+btx+cz$$ Then find out whether $(P,*)$ is a monoid and if that's…
haunted85
  • 1,418