added determinant

This commit is contained in:
2024-07-01 13:04:37 +02:00
parent b93db17806
commit 4904a80b50
3 changed files with 113 additions and 2 deletions

Binary file not shown.

View File

@ -25,3 +25,16 @@ $
$
E = #mat.display(E)
$
#let M = mat.mat(
(2, 4, 5, 6),
(-1, 5, 6, 9),
(3, 7, 1, -6),
(4, -2, 3, 5)
)
$M = #mat.display(M)$
#let d = mat.det(M)
$det(M) = #d$
#mat.det-steps(M)