| Up | Next | Prev | PrevTail | Tail |
This package contains routines for computing the following normal forms of matrices:
When are two given matrices similar? Similar matrices have the same trace, determinant, characteristic polynomial, and eigenvalues, but the matrices

are the same in all four of the above but are not similar. Otherwise there could exist a nonsingular ๐ฉ∈M2 (the set of all 2 ร 2 matrices) such that ๐ฐ = ๐ฉ๐ฑ๐ฉ−1 = ๐ฉ0๐ฉ−1 = 0 , which is a contradiction since ๐ฐ≠0 .
Two matrices can look very di๏ฌerent but still be similar. One approach to determining whether two given matrices are similar is to compute the normal form of them. If both matrices reduce to the same normal form they must be similar.
NORMFORM is a package for computing the following normal forms of matrices:
By default all calculations are carried out in Q (the rational numbers). For smithex, frobenius, ratjordan, jordansymbolic, and jordan, this ๏ฌeld can be extended. Details are given in the respective sections.
The frobenius, ratjordan, and jordansymbolic normal forms can also be computed in a modular base. Again, details are given in the respective sections.
The algorithms for each routine are contained in the source code.
NORMFORM has been converted from the normform and Normform packages written by T.ย M.ย L.ย Mulders and A.ย H.ย M.ย Levelt. These have been implemented in Maple [CGG+91].
It returns {๐ฎ,๐ซ,๐ซ−1} where ๐ฎ,๐ซ, and ๐ซ−1 are such that ๐ซ๐ฎ๐ซ−1 = ๐.
๐ is a rectangular matrix of univariate polynomials in x.
x is the variable name.
Hence, if we have the case that n = m, as well as rank(๐) = n, then



It returns {๐ฎ,๐ซ,๐ซ−1} where ๐ฎ, ๐ซ, and ๐ซ−1 are such that ๐ซ๐ฎ๐ซ−1 = ๐.
Hence, if we have the case that n = m, as well as rank(๐) = n, then



It returns {โฑ,๐ซ,๐ซ−1} where โฑ, ๐ซ, and ๐ซ−1 are such that ๐ซโฑ๐ซ−1 = ๐.
๐ is a square matrix.

where the ๐(pi)โs are companion matrices associated with polynomials p1,p2,…,pk, with the property that pi divides pi+1 for i = 1…k−1. All unmarked entries are zero.


It returns {โ,๐ซ,๐ซ−1} where โ, ๐ซ, and ๐ซ−1 are such that ๐ซโ๐ซ−1 = ๐.
๐ is a square matrix.

The rijโs have the following shape:

where there are eij times ๐(p) blocks along the diagonal and ๐(p) is the companion matrix associated with the irreducible polynomial p. All unmarked entries are zero.


It returns {๐ฅ,โ,๐ซ,๐ซ−1}, where ๐ฅ , ๐ซ, and ๐ซ−1 are such that ๐ซ๐ฅ๐ซ−1 = ๐. โ = {ll,ξ}, where ξ is a name and ll is a list of irreducible factors of p(ξ).
๐ is a square matrix.

There are k − 1 terms โ+1โ in the superdiagonal; the scalar λ appears k times on the main diagonal. All other matrix entries are zero, and ศท1(λ) = (λ).

in which the orders ni may not be distinct and the values λi need not be distinct.



solve(-y^3+xi^2-4*xi+3,xi);

J = sub({xi(1,1)=sqrt(y^3+1)+2, xi(1,2)=-sqrt(y^3+1)+2}, ย ย ย ย ย ย ย ย first jordansymbolic (A))

It returns {๐ฅ,๐ซ,๐ซ−1}, where ๐ฅ , ๐ซ, and ๐ซ−1 are such that ๐ซ๐ฅ๐ซ−1 = ๐.
๐ is a square matrix.

There are k − 1 terms โ+1โ in the superdiagonal; the scalar λ appears k times on the main diagonal. All other matrix entries are zero, and ศท1(λ) = (λ).

in which the orders ni may not be distinct and the values λi need not be distinct.

J = first jordan(A);

The algebraic ๏ฌeld Q can now be extended. For example, defpoly sqrt2**2-2;
will extend it to include
(de๏ฌned here by sqrt2). The ARNUM package was written
by Eberhard Schrรผfer and is described in section 9.12.5.
defpoly sqrt2**2-2;
(sqrt2 now changed to
for looks!)



Calculations can be performed in a modular base by setting the switch modular to on. The base can then be set by setmod p; (p a prime). The normal form will then have entries in ZโpZ.
By also switching on balanced_mod the output will be shown using a symmetric modular representation.
Information on this modular manipulation can be found in section 9.12.3.
on modular;
setmod 23;


on balanced_mod;

| Up | Next | Prev | PrevTail | Front |