Post Reply 
Test symb2poly == polyToCoeff
12-12-2016, 08:22 PM (This post was last modified: 04-17-2017 01:01 AM by compsystems.)
Post: #1
Test symb2poly == polyToCoeff
Hello

symb2poly == polyToCoeff as vector
poly2symb == coeffToPoly

increasing: off & simplify flag: NONE This should only extract the coefficients of each term

> symb2poly( (x^2) + (b*x/a) + (b/(2*a))^2, x ); ->
poly1[1, 4*a*b/(4*a^2), b^2/(4*a^2)] // ok but why Rewrites the coefficients?

The output should be ->
poly1[ 1, b/a, (b/(2*a))^2 ]

with normal

normal( symb2poly( (x^2) + (b*x/a) + (b/(2*a))^2, x ) );
poly1[ 1, b/a, (b/(2*a))^2 ]
Find all posts by this user
Quote this message in a reply
12-13-2016, 07:07 AM
Post: #2
RE: Test symb2poly == polyToCoeff (simplify flag: NONE) fails
The at is correctly displayed if textbook mode if off.
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)