MatrixPolynomialAlgebra
MatrixLCLM
compute a least common left multiple of 2 matrices of polynomials
MatrixLCRM
compute a least common right multiple of 2 matrices of polynomials
Calling Sequence
Parameters
Description
Examples
References
MatrixLCLM(A, B, x)
MatrixLCRM(A, B, x)
A
-
Matrix of polynomials
B
x
variable name of the polynomial domain
The MatrixLCLM(A, B, x) command computes a least common left multiple of two matrices of polynomials. Both input matrices of polynomials can be square or rectangular but must have the same number of columns. The entries are either univariate polynomials in x over the field of rational numbers Q, or rational expressions over Q, that is, univariate polynomials in x with coefficients in Q(a1,...,an).
The matrix of polynomials [⁢AT⁢BT⁢]^T must have more rows than columns and full column rank.
The MatrixLCRM(A, B, x) command computes a least common right multiple of two matrices of polynomials. The matrix of polynomials [⁢A⁢B⁢] must have more columns than rows and full row rank.
The method is a fraction-free algorithm by Beckermann and Labahn that computes a matrix GCD using Mahler systems.
with⁡MatrixPolynomialAlgebra:
A≔Matrix⁡2,2,−9⁢z2−3⁢z+1,12⁢z2+10⁢z,−3⁢z3+2⁢z2−z,4⁢z3+2⁢z−2⁢z2:
B≔Matrix⁡2,2,−3⁢z3+6⁢z2+5⁢z+1,−12⁢z2−13⁢z,z4+z3+z2,−4⁢z3−3⁢z+3⁢z2:
Left matrix LCMs:
C≔MatrixLCLM⁡A,B,z
C≔108⁢z5−228⁢z4−92⁢z3+66⁢z2+27⁢z+2−144⁢z5+504⁢z4+28⁢z3−128⁢z2−26⁢z36⁢z5−84⁢z4−24⁢z3+26⁢z2+7⁢z−48⁢z5+184⁢z4−12⁢z3−40⁢z2−6⁢z
Right matrix LCMs:
C≔MatrixLCRM⁡A,B,z
C≔60⁢z4+59⁢z3+12⁢z2+10⁢z+212⁢z3+z2−13⁢z20⁢z5−13⁢z4+17⁢z3+2⁢z24⁢z4−7⁢z3+6⁢z2−3⁢z
Beckermann, B., and Labahn, G. "Fraction-free Computation of Matrix Rational Interpolants and Matrix GCDs." SIAM Journal on Matrix Analysis and Applications, Vol. 22 No.1, (2000): 114-144.
See Also
indets
Matrix
MatrixPolynomialAlgebra[HermiteForm]
MatrixPolynomialAlgebra[MahlerSystem]
MatrixPolynomialAlgebra[MatrixGCRD]
MatrixPolynomialAlgebra[PopovForm]
Download Help Document