Question about polynomial rings with symbolic coefficients
158 views
Skip to first unread message
Matteo Ruffini
unread,
Mar 16, 2016, 9:07:37 AM3/16/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Macaulay2
Hi all, I have a basic question about the definition of polynomial rings;
In general I work with polinomials on QQ[a..h], so the coefficients are just numbers.
Now, I would like to add a symbolic variable to the coefficients, so to manage polynomials like
a^2+y
where y is not an unknown of the polynomial but just a general nonzero real variable (so, we can divide for it and so on).
My final objective, is, given a set of polynomials whose coefficients are known real numbers, to get the Groebner basis and express the coefficient of the Groebner basis polynomials as a function of the original polynomials coefficients.
Is that possible?
Thanks Matteo
Thomas Kahle
unread,
Mar 17, 2016, 7:15:31 AM3/17/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to maca...@googlegroups.com
Hi,
yes, you can make a fraction field and use it as a coefficient ring like
this:
K = frac (QQ[a])
R = K[x,y]
The arithmetics in K is of course much more expansive now, so your
Gröbner bases in R will take longer than with rational coefficients.