Re: Polynomial as a List
- To: mathgroup at smc.vnet.net
- Subject: [mg77363] Re: Polynomial as a List
- From: chuck009 <dmilioto at comcast.com>
- Date: Thu, 7 Jun 2007 03:54:37 -0400 (EDT)
- Organization: The Math Forum
Not sure how you defined your polynomial but if you just assign it as follows then Mathematica can access the terms as items in a list: pval = 1 + x + x^2 - x^3 - x^4; plist = Table[pval[[i]], {i, Length[pval], 1, -1}] {-x^4,-x^3,x^2,x,1}