MatrixPolynomialAlgebra
Degree
compute the degree of a matrix of polynomials.
Ldegree
compute the low degree of a matrix of polynomials.
Calling Sequence
Parameters
Description
Examples
Degree(A, x)
Degree[row](A, x)
Degree[column](A, x)
Ldegree(A, x)
Ldegree[row](A, x)
Ldegree[column](A, x)
A
-
Matrix
x
name; specify the variable in which the entries of A are rational polynomials over Q
The Degree(A,x) and Ldegree(A,x) commands compute the highest degree and the lowest degree of a matrix of polynomials.
The Degree[row](A,x) and Ldegree[row](A,x) commands compute the highest degree and lowest degree of each row of a matrix of polynomials. The row degree is returned as a list of integers.
The Degree[column](A,x) and Ldegree[column](A,x) commands compute the highest degree and lowest degree of each column of a matrix of polynomials. The column degree is returned as a list of integers.
withMatrixPolynomialAlgebra:
A≔3+x,4x2,x2−1|1,x,4|−4x3,2x,−x3
A≔3+x1−4x34x2x2xx2−14−x3
DegreeA,x
3
DegreerowA,x
3,2,3
DegreecolumnA,x
2,1,3
LdegreeA,x
0
LdegreerowA,x
0,1,0
LdegreecolumnA,x
0,0,1
See Also
indets
Download Help Document