MatrixPolynomialAlgebra
Lcoeff
compute the leading coefficient of a matrix of polynomials
Tcoeff
compute the trailing coefficient of a matrix of polynomials
Calling Sequence
Parameters
Description
Examples
Lcoeff(A, x)
Lcoeff[row](A, x)
Lcoeff[column](A, x)
Tcoeff(A, x)
Tcoeff[row](A, x)
Tcoeff[column](A, x)
A
-
Matrix
x
name; specify the variable in which the entries of A are rational polynomials over Q
The Lcoeff(A,x) command computes the leading coefficient of a matrix of polynomials A.
The Lcoeff[row](A,x) command computes the leading row coefficient of A. That is, it computes a matrix with rows that are the leading coefficient of each row of A.
The Lcoeff[column](A,x) command computes the leading column coefficient of A.
The Tcoeff(A,x), Tcoeff[row](A,x), and Tcoeff[column](A,x) commands compute the trailing coefficient, trailing row coefficient, and trailing column coefficients of A, respectively.
with⁡MatrixPolynomialAlgebra:
A≔3+x,4,x2−1|1,x,4|−4⁢x3,2⁢x,−x3
A≔3+x1−4⁢x34x2⁢xx2−14−x3
Lcoeff⁡A,x
00−400000−1
Lcoeffrow⁡A,x
00−401200−1
Lcoeffcolumn⁡A,x
00−401010−1
Tcoeff⁡A,x
310400−140
Tcoeffrow⁡A,x
Tcoeffcolumn⁡A,x
310402−140
See Also
indets
MatrixPolynomialAlgebra[Coeff]
MatrixPolynomialAlgebra[Degree]
Download Help Document