|
Calling Sequence
|
|
frobenius(A)
frobenius(A, 'P')
|
|
Parameters
|
|
A
|
-
|
square matrix
|
'P'
|
-
|
(optional) assigned the transformation matrix
|
|
|
|
|
Description
|
|
•
|
The function frobenius(A) or ratform(A) computes and returns the Frobenius form F of a matrix A. This is also known as the Rational Canonical form of a matrix.
|
•
|
F has the following structure: F = diag(C[1], C[2],.., C[k]) where the are companion matrices associated with polynomials with the property that divides , for = 2..k.
|
•
|
If called in the form frobenius(A, 'P'), then P will be assigned the transformation matrix corresponding to the Frobenius form, that is, the matrix P such that .
|
•
|
The Frobenius form defined in this way is unique (if we require that divides ).
|
•
|
If the sizes of the blocks are respectively, then the columns of the matrix P are the vectors
|
•
|
These functions are part of the linalg package, and so can be used in the form frobenius(..) or ratform(..) only after performing the command with(linalg), or with(linalg,frobenius) or with(linalg,ratform). These functions can always be accessed in the long form linalg[frobenius](..) or linalg[ratform](..).
|
|
|
Examples
|
|
Important: The linalg package has been deprecated. Use the superseding command, LinearAlgebra[FrobeniusForm], instead.
>
|
|
>
|
|
| (1) |
| (2) |
| (3) |
|
|
References
|
|
|
Ozello, Patrick. Calcul Exact des Formes de Jordan et de Frobenius d'une Matrice. PhD Thesis, Joseph Fourier University, Grenoble, France, 1987.
|
|
Martin, K., and Olazabal, J.M. "An Algorithm to Compute the Change Basis for the Rational Form of K-endomorphisms." Extracta Mathematicae, (August 1991): 142-144.
|
|
|
|