Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimal polynomials of matrices over SymbolicRing #18040

Closed
pjbruin opened this issue Mar 23, 2015 · 5 comments
Closed

Minimal polynomials of matrices over SymbolicRing #18040

pjbruin opened this issue Mar 23, 2015 · 5 comments

Comments

@pjbruin
Copy link
Contributor

pjbruin commented Mar 23, 2015

In Sage 6.6.rc0:

sage: M = matrix.identity(SR, 2)
sage: type(M)
<type 'sage.matrix.matrix_symbolic_dense.Matrix_symbolic_dense'>
sage: M.minpoly()
Traceback (most recent call last):
...
NotImplementedError: is_squarefree() is only implemented for polynomials over principal ideal domains

Trying to work around #11126 fails with a different error:

sage: SR in Fields()
True
sage: M.minpoly()
Traceback (most recent call last):
...
NotImplementedError:

This ticket implements minpoly() for matrices over SymbolicRing using the function minimalPoly() from Maxima's diag package.

Component: symbolics

Keywords: minimal polynomial symbolic maxima

Author: Peter Bruin

Branch/Commit: 35a3314

Reviewer: Travis Scrimshaw

Issue created by migration from https://trac.sagemath.org/ticket/18040

@pjbruin pjbruin added this to the sage-6.6 milestone Mar 23, 2015
@pjbruin
Copy link
Contributor Author

pjbruin commented Mar 23, 2015

Commit: 35a3314

@pjbruin
Copy link
Contributor Author

pjbruin commented Mar 23, 2015

@tscrim
Copy link
Collaborator

tscrim commented Mar 24, 2015

Reviewer: Travis Scrimshaw

@tscrim
Copy link
Collaborator

tscrim commented Mar 24, 2015

comment:2

LGTM.

@vbraun
Copy link
Member

vbraun commented Apr 15, 2015

Changed branch from u/pbruin/18040-minimal_polynomial_SymbolicRing to 35a3314

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants