Student[LinearAlgebra]
Minor
compute a minor of a Matrix
Calling Sequence
Parameters
Description
Examples
Minor(A, r, c, options)
A
-
Matrix
r
integer; row to omit
c
integer; column to omit
options
(optional) parameters; for a complete list, see LinearAlgebra[Minor]
The Minor(A, r, c) command, where A is an m⁢x⁢m (square) Matrix, returns the determinant of the m−1⁢x⁢m−1 submatrix found by omitting the rth row and the cth column of A.
with⁡StudentLinearAlgebra:
A≔a|b|c,d|e|f,g|h|i
A≔abcdefghi
Minor⁡A,3,3
a⁢e−b⁢d
B≔1,2,3,−4|5,6,−7,8|9,−10,11,12|−13,14,15,16
B≔159−1326−10143−71115−481216
Minor⁡B,2,3
−720
See Also
LinearAlgebra[Minor]
Student[LinearAlgebra][Adjoint]
Student[LinearAlgebra][Determinant]
Download Help Document