We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e4486 commit 9f0b2c3Copy full SHA for 9f0b2c3
src/sage/rings/polynomial/polynomial_quotient_ring_element.py
@@ -411,6 +411,12 @@ def __invert__(self):
411
Traceback (most recent call last):
412
...
413
NotImplementedError
414
+ sage: (2*y+1)^(-1) # this cannot raise ValueError because...
415
+ Traceback (most recent call last):
416
+ ...
417
+ NotImplementedError
418
+ sage: (2*y+1) * (10*y+5) # the element is in fact invertible
419
+ 1
420
421
Check that :issue:`29469` is fixed::
422
0 commit comments