recategorized by
482 views
2 votes
2 votes
A polynomial p(x) is such that p(0)=5 ,p(1)=4 ,p(2)=9 and p(3)=20  The minimum degree it can have is..
recategorized by

1 Answer

2 votes
2 votes

The degree can't be $0$ since that will give us a constant polynomial, but we have $4$ different points to satisfy.

The points that we need to satisfy aren't co-linear either. For example, $\frac{p(1)-p(0)}{1-0} = -1 \quad\neq\quad  5 = \frac{p(2)-p(1)}{2-1}$

Let's try to fit a parabola.

Let $p(x) = ax^2 + bx + c$

Since $p(0) = 5$, we have that:

$$\begin{align}
a\cdot 0^2 + b\cdot 0 + c &= 5\\
c &= 5\\[1em]
\hline
\implies p(x) &= ax^2 + bx + 5
\end{align}$$

Also, $p(1) = 4$. Thus,

$$\begin{align}
a\cdot 1^2 + b\cdot 1 + 5 &= 4\\[1em]
a + b &= -1\tag{1}\label{1}
\end{align}$$

Finally, $p(2) = 9$. This gives us:

$$\begin{align}
a\cdot 2^2 + b\cdot 2 + 5 &= 9\\[1em]
4a + 2b &= 4\\[1em]
2a + b &= 2\tag{2}\label{2}
\end{align}$$

Using $\eqref{1} \,\&\, \eqref{2}$ we get:

$$\begin{array}{rrll}
+ (&2a + b &= 2 &)\\
- (&a + b &= -1 &)\\[1em]
\hline
\implies&a&=3\\
&b&=-4
\end{array}$$

So we have $p(x) = 3x^2 - 4x + 5$.

Testing it on our final point, we have that $p(3) = 3 \cdot 3^2 -4 \cdot 3 + 5 = 27 - 12 + 5 = 20$, which is equal to the given value of $p(3)$.

Hence, the minimum degree is $2$ and the polynomial is $p(x) = 3x^2 - 4x + 5$.

Related questions

1 votes
1 votes
1 answer
1
gatecse asked Sep 18, 2019
382 views
Let $f’(x)=4x^3-3x^2+2x+k,$ $f(0)=1$ and $f(1)=4.$ Then $f(x)$ is equal to$4x^4-3x^3+2x^2+x+1$$x^4-x^3+x^2+2x+1$$x^4-x^3+x^2+2(x+1)$none of these
15 votes
15 votes
5 answers
2
makhdoom ghaya asked Nov 8, 2016
2,850 views
The equation $7x^{7}+14x^{6}+12x^{5}+3x^{4}+12x^{3}+10x^{2}+5x+7=0$ hasAll complex rootsAt least one real rootFour pairs of imaginary rootsNone of the above
19 votes
19 votes
3 answers
4
Kathleen asked Oct 8, 2014
2,726 views
If the cube roots of unity are $1, \omega$ and $\omega^2$, then the roots of the following equation are $$(x-1)^3 +8 =0$$$-1, 1 + 2\omega, 1 + 2\omega^2$ $1, 1 - 2\omeg...