Is $s(x)$ a linear combination of $a \cdot p(x) $and $b \cdot q(x)$

93 Views Asked by At

Let $p(x)=x^2+5x-3$ , $q(x)=4x^2+18x+4,$ and $s(x)=x^2+8x+2$.

I want to find two constants $a$ and $b$ such that $$s(x)=a \cdot p(x) +b \cdot q(x)$$

My attempt: $$ap(x)+bq(x) = ax^2+5ax-3a+4bx^2+18bx+4b = (a+4b)x^2+(5a+18b)x+4b-3a$$

I put this in the augmented matrix (the last column to the right is the coefficients of $s(x)$:

$\begin{bmatrix}1&4&1\\5&18&8\\-3&4&2\end{bmatrix}$.

I reduced this to echelon form $\begin{bmatrix}1&4&1\\0&2&-3\\0&-8&-1\end{bmatrix}$ and found out that the system is inconsistent, and has no solutions, meaning that there are no such $a$ and $b$ that satisify the given equation.

Is my solution correct?

3

There are 3 best solutions below

2
On BEST ANSWER

Yes your way is fine, indeed with respect to the standard basis $\{1,x,x^2\}$ we have

  • $v_p=(-3,5,1)$
  • $v_q=(4,18,4)$
  • $v_s=(1,8,1)$

and we need to solve

$$av_p+bv_q=v_s \iff \begin{bmatrix}-3&4\\5&18\\1&4\end{bmatrix} \begin{bmatrix}a\\b\end{bmatrix} =\begin{bmatrix}2\\8\\1\end{bmatrix}$$

and by the augmented matrix we obtain

$$\begin{bmatrix}-3&4&2\\5&18&8\\1&4&1\end{bmatrix}\to \begin{bmatrix}-3&4&2\\0&74&34\\0&16&5\end{bmatrix}$$

which has not solution.

As an alternative note that

$$\det\begin{bmatrix}-3&4&2\\5&18&8\\1&4&1\end{bmatrix}=-54+32+40-36+96-20=58 \neq 0$$

therefore the three vectors are linearly independent.

2
On

Since this equation must be true for all $x$ we can put in specific values of $x$ to determine $a$ and $b$.

If we put $x= 0$ we het $$2=-3a+4b$$ and if we put $x=1$ we get $$11 =3a+26b$$ Now solve this system which is easy to do.

Now if that solution does not work then such a constant's $a$ and $b$ does not exist.

0
On

If $p,q,s$ are linearly dependent, so are $s-p$ and $4s-q$, i.e. $3x+5$ and $14x+4$, which certainly doesn't hold.