Ask Your Question
0

Polynomial coefficient vector to symbolic polynomial

asked 11 years ago

gundamlh gravatar image

updated 11 years ago

link text

matlab: poly2sym([1 3 2])
ans =
x^2 + 3*x + 2

I couldn't find a similar function in SAGE. Fortunately this small function is quite easy, consisting of only one loop.

Thanks in advance!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 11 years ago

tmonteil gravatar image

updated 11 years ago

I am not sure that Sage shoud contain a function for each such feature, it will lead to a huge global namespace, making tab completion unusable. Here is a quick proposition:

sage: L = [1, 3, 2]
sage: sum([b*x^a for a,b in enumerate(reversed(L))])
x^2 + 3*x + 2

Or, if you want a function, define:

sage: poly2sym = lambda L : sum([b*x^a for a,b in enumerate(reversed(L))])
sage: poly2sym([1, 3, 2])
x^2 + 3*x + 2

Now, if you want genuine polynomials (not symbolic functions), you can define the polynomial ring you want and build a polynomial from a list as follows:

sage: R.<x> = PolynomialRing(QQ)
sage: R
Univariate Polynomial Ring in x over Rational Field

sage: R([1, 3, 2])
2*x^2 + 3*x + 1

As you can see, the order is not the one you wanted, so you can do:

sage: R(list(reversed([1, 3, 2])))
x^2 + 3*x + 2

And again:

poly2sym = lambda L : R(list(reversed(L)))

But then, you should understand that the prouced object are genuine polynomials, not symbolic expressions as before.

Preview: (hide)
link

Comments

Thanks! The type "polynomial" is better than "symbolic expression", from my point of view. It has methods such "smith_form()", "roots()", ...

gundamlh gravatar imagegundamlh ( 11 years ago )

Yep, i definitely agree with that, you know where your objects live :) The same difference between `sqrt(2)` and `sqrt(QQbar(2))`.

tmonteil gravatar imagetmonteil ( 11 years ago )

:) I am a control Eng. student, and trying to build my own robust control toolbox using SAGE and MATLAB.

gundamlh gravatar imagegundamlh ( 11 years ago )

Well, Sage is far from being robust or certified. I am not an expert at all, but aren't tools like `coq` more adapted ?

tmonteil gravatar imagetmonteil ( 11 years ago )

Coq http://en.wikipedia.org/wiki/Coq .. I have not ever heard about it before.. it seems to be a genius software.. "functional programming". In fact my control toolbox is only a kind of "toy" box.

gundamlh gravatar imagegundamlh ( 11 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 3,009 times

Last updated: Nov 15 '13