2

I am trying to divide polynomials but i am ending up with different outcomes.

Let's assume i have : $\dfrac{s^4+3s^3+4s^2+4s+1}{2s^3+2s^2+3s+1}$

Can anyone solve this step by step (long or synthetic division doesn't really matter, but i would prefer the easiest way)? Thanks in advance.

Jyrki Lahtonen
  • 133,153
  • Think of polynomial division as numeric division. That is $f(x)=g(x)q(x)+r(x)$. For your problem, you have $$s^4+3s^2+4x^2+4s+1=(2s^3+2s^2+3s+1)q(x)+r(x)$$ Thus you have to get a degree 4 polynomial from multiplying a degree 3 polynomial by $q$. So $q$ must be degree 1, and the coefficient must be 1/2 (why)? You could run the long division program using this idea... – Iceman Jun 05 '15 at 22:39

1 Answers1

0

You compare the highest powers to get the next term, $\frac{s^4}{2s^3} = \frac12 s$.

Then distribute that term across the denominator: $\frac12 s (2s^3 + 2s^2 + 3s + 1) = s^4+s^3+\frac32 s^2 + \frac12 s$.

Then subtract from the numerator to get $2s^3 + \frac52 s^2 + \frac72 s + 1$.

Repeat from the beginning until done.

Barry
  • 2,268