Ask Your Question
3

latex of elements of multivariate polynomial quotient ring

asked 2020-11-23 23:19:48 +0200

Road gravatar image

updated 2021-01-01 19:46:06 +0200

slelievre gravatar image

Here is a block of code:

R = PolynomialRing(QQ, 'a, b, c')
a, b, c = R.gens()
I = R.ideal(a**2 + a + 1)
S = R.quotient(I, names=R.variable_names()).fraction_field()
a, b, c = S.gens()
show(a**2/b**3)  # this looks wrong
latex(a)  # = \text{\texttt{a}}, should just be `a`
edit retag flag offensive close merge delete

Comments

Thanks for reporting this!

This might be because Sage relies on Singular for these computations.

But it would be nice to fix this anyway.

slelievre gravatar imageslelievre ( 2020-12-01 14:40:58 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-01-02 17:30:36 +0200

slelievre gravatar image

Fixing this is now tracked at

edit flag offensive delete link more

Comments

A fix has now been proposed at that ticket.

slelievre gravatar imageslelievre ( 2022-06-12 22:18:59 +0200 )edit

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-11-23 23:19:48 +0200

Seen: 499 times

Last updated: Jan 02 '21