Minor - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

Minor

  

compute a minor of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Minor(A, r, c, out, meth, options)

Parameters

A

-

Matrix

r

-

integer; row to delete

c

-

integer; column to delete

out

-

(optional) equation of the form output=obj where obj is one of 'determinant' or 'matrix', or a list consisting of one or both of these names; the result objects to compute

meth

-

(optional) equation of the form method=name; the determinant computation method

options

-

(optional); constructor options for the result object

Description

• 

The Minor(A, r, c) function, where A is an m x m (square) Matrix, returns the determinant of the (m-1) x (m-1) submatrix found by deleting the rth row and the cth column of A.  This is equivalent to Minor(A, r, c, 'output'='determinant').

• 

The Minor(A, r, c, 'output'='matrix') function, where A is an m x n Matrix, returns the (m-1) x (m-1) submatrix found by deleting the rth row and the cth column of A.

  

If the out parameter includes 'matrix', then the constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list.  If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).

• 

If the determinant of the submatrix is to be returned, the meth option can be used to select the method by which that determinant is computed.  See Determinant for the possible methods.

• 

This function is part of the LinearAlgebra package, and so it can be used in the form Minor(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[Minor](..).

Examples

withLinearAlgebra:

Aa|b|c,d|e|f,g|h|i

Aabcdefghi

(1)

MinorA,3,3

aebd

(2)

MinorA,1,2,output=matrix,determinant,method=minor

dfgi,difg

(3)

B1,2,3|4,5,6|7,8,9|0,1,2

B147025813692

(4)

MinorB,2,2,output=matrix,datatype=float

1.7.0.3.9.2.

(5)

See Also

LinearAlgebra[Adjoint]

LinearAlgebra[Determinant]

LinearAlgebra[SubMatrix]

Matrix