Divide polynomial p1 by p2 given as vectors. Return result q and r vectors which corresponds the quotient and remainder of division respectively.

Example

p1=[3 2 5 1 0 2 ]

p2=[1 2 0 5 0 3]

Then q=[3] r=[0 -4 5 -14 0 -7]

Solution Stats

95 Solutions

63 Solvers

Last Solution submitted on Apr 14, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...