RosettaCodeData/Task/Determinant-and-permanent/Maple/determinant-and-permanent.maple
2023-07-01 13:44:08 -04:00

6 lines
83 B
Text

M:=<<2|9|4>,<7|5|3>,<6|1|8>>:
with(LinearAlgebra):
Determinant(M);
Permanent(M);