Proving whether the set of third degree polynomial is not a vector space?

5.8k Views Asked by At

In my book, it says the above set fails the first axiom. It says if I take two sets $p_1(x)=x^3-x^2$ and $q(x)= 1-x^2$. They are not closed under addition. I can understand why that's true by using a specific example. But for me, if I get a question like this on a test, I won't be able to think of a specific example. My question is how to prove axiom 1 fails by a general approach. I need an approach that I could use even if the question asks to prove some other set as a vector space. My approach

$$p_1(x)=ax^3+bx^2+cx+d p_2(y)=ay^3+by^2+cy+d$$

$$p_1(x)+p_2(y)= a(x^3+y^3)+ b(x^2+y^2)+c(x+y)+2d$$

If I use a general example, aren't the polynomials closed under addition because my sum is also a third-degree polynomial?

5

There are 5 best solutions below

0
On BEST ANSWER

The Axiom you are trying to disprove says:

If $p$ is in the set (is a vector) and $q$ is in the set (is a vector), then $p+q$ is in the set (is a vector).

So you want to establish its negation. The negation says:

There exists a $p$ and a $q$ that are both in the set (both are vectors), but such that $p+q$ is not in the set (not a vector).

The way to prove this is to establish the existence of such $p$ and $q$. The best way of doing so is to exhibit a $p$ and a $q$ that satisfy this statement; that is, to give an example. So the “general method” to prove this is precisely to give an example.

So a better way to phrase what you are asking (or a better question to ask) is: “How could I try to come up with an example if I don’t already know one?”

Well, first, your computations are off because your $p$ and $q$ are in different sets: one is a polynomial in $x$, the other is a polynomial in $y$. And worse, for some reason you are assuming that they have the same coefficients! Those are not two arbitrary polynomials of degree $3$ in the same set.

So, take two arbitrary polynomials of degree $3$ in $x$. Say, $p$ and $q$. Say: $$\begin{align*} p(x) &= ax^3 + bx^2 + cx + d\\ q(x) &= \alpha x^3 + \beta x^2 + \gamma x + \delta, \end{align*}$$ Where $a,b,c,d,\alpha,\beta,\gamma,\delta$ are some specific (but right now unspecified) real numbers. Note that in order to be polynomials of degree $3$, we need $a\neq 0$ and $\alpha\neq 0$.

Now, their sum is $$(p+q)(x) = (a+\alpha)x^3 + (b+\beta)x^2 + (c+\gamma)x + (d+\delta).$$ In order for this to be a polynomial of degree $3$, we need $a+\alpha\neq 0$.

So in order to find an example to exhibit the failure of Axiom 1, you want to pick some values of $a,b,c,d$ with $a\neq 0$, and some values of $\alpha,\beta,\gamma,\delta$, with $\alpha\neq 0$, but such that $a+\alpha=0$. At this point, presumably some specific values will suggest themselves, and you can go ahead and give them explicitly.

Advice: Do not stop at saying “but we cannot guarantee that $a+\alpha\neq 0$.” Actually go ahead and give an example showing that this can fail.

Note: In most cases for a set that is not a vector space, a lot of axioms are going to fail, not just one. So the fact that this one fails closure under addition, but also fails to have a zero vector, should not come as a surprise. If one thing goes wrong, often lots of things go wrong.

Final comment: Not everyone gives the axioms of a vector space the same way, or in the same order. In particular, closure under addition is not always listed as “axiom 1” (sometimes it is implicitly given by saying that vector addition “is an operation”). When asking questions about axioms of a vector space, be sure to give the Axiom you are talking about explicitly to make sure everyone is thinking about the same axiom.

7
On

Welcome to MSE! The set of polynomials ${\Bbb R}[x]_{\leq 3} = \{ax^3+bx^2+cx+d\mid a,b,c,d\in{\Bbb R}\}$ forms an ${\Bbb R}$-vector space under addition and scalar multiplication with elements from $\Bbb R$. In particular, the set is closed under addition, $$(ax^3+bx^2+cx+d)+(a'x^3+b'x^2+c'x+d') = (a+a')x^3+(b+b')x^2+(c+c')x+(d+d').$$

Of course, the set of polynomials ${\Bbb R}[x]_{=3} = \{ax^3+bx^2+cx+d\mid a,b,c,d\in{\Bbb R},a\ne 0\}$ is not an ${\Bbb R}$-vector space, since its not closed under addition. Moreover, as said in the comments, the zero polynomial should be the zero element of the vector space, but its not in the set.

4
On

You need $\mathbf{0}$ to be in your vector space.

0
On

The set of polynomials of up to third degree forms a four dimensional vector space. The set of polynomials of specifically third degree does not. As closure is a universal property you can disprove it by one example. Adding any two cubic polynomials with opposite leading terms will suffice.

Your example is not sufficient because you chose $p_1$ and $p_2$ to have the same coefficients but different variables. The set we are considering is cubic polynomials in $x$. If you wanted a general approach, you could say let $p_1$ be as you said and $p_2=ex^3+fx^2+gx+h$. When you add them the leading term is now $(a+e)x^3$ and it could prompt you to see that if $a=-e$ there is a problem.

I don't have a general way to find failures of axioms like this.

0
On

Proofs showing that something is not true usually go by contradiction: suppose the set of degree 3 polynomials over $\mathbb{R}$ is closed under addition. Then for any coefficients $a,b,c,d \in \mathbb{R}$ and $a',b'c',d' \in \mathbb{R}$ where $p(x) = ax^3 + bx^2 + cx +d$ and $q(x) = a'x^3 + b'x^2 + c'x + d'$ satisfies \begin{align} a' + a \in \mathbb{R} \setminus \{ 0 \} \end{align}

Note that this condition holds if and only if $p + q$ is of degree 3, and hence satisfies the definition of being closed under addition. But $a$ and $a'$ were chosen arbitrarily, so this is equivalent to saying that the sum of any two real numbers is non-zero. This is clearly false, and that's your proof.