Using the Action Menu
ueigVl
Function: Returns a list that contains the eigenvalue(s) of a square matrix.
Syntax: eigVl (Mat [ ) ]
Example: To obtain the eigenvalue(s) of the matrix [[3,4] [1,3]]
Menu Item:
ueigVc
Function: Returns a matrix in which each column represents an eigenvector of a square matrix.
•Since an eigenvector usually cannot be determined uniquely, it is standardized as
follows to its norm, which is 1:
When V = [x1, x2, ..., xn], ( x12 + x22 + .... + xn2) = 1.
Syntax: eigVc (Mat [ ) ]
Example: To obtain the eigenvector(s) of the matrix [[3,4] [1,3]]
Menu Item:
urref
Function: Returns the reduced row echelon form of a matrix.
Syntax: rref (Mat [ ) ]
Example: To obtain the reduced row echelon form of the matrix
Menu Item: [Action]
uref
Function: Returns the row echelon form of a matrix.
Syntax: ref (Mat [ ) ]
Example: To obtain the row echelon form of the matrix [[1,2,3] [4,5,6]]
Menu Item:
20050501