Program:	POLYDIV
Author:	Dave Gaebler
February 18, 1999

Variables used:H,I,L1,L2,L3
This program divides polynomials.  First enter a list of coefficients for the numerator,
then a list for the denominator.  The result will be a polynomial (quotient) plus another
polynomial (remainder) over the original denominator.  To divide 2x^3+x^2+3x-6 by 3x^2+5,
enter {2,1,3,-6} for the numerator and {3,0,5} for the denominator.  The result will be 
2/3x+1/3 (i.e. {2/3,1/2} plus -1/3x-23/3 (i.e. {-1/3,-23/3}) over 3x^2+5.

