help with multiplying polynomials in lisp
- by iulia
for example:( 3x2-5x+2)(7x+1)
and you simlify it like this:
((3 2)(-5 1)(2 0))((7 1)(1 0))
((21 3)(3 2)(-35 2)(-5 1)(14 1)(2 0))
(21 3)(32 2)(9 1)(2 0)
and you get this answer:
21x2+32x2+9x+2
i need this solution in lisp please help