Skip to content

Commit 8958d53

Browse files
committed
Fix indices in determinant section, fixes #603
1 parent b756e44 commit 8958d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math_linear_algebra.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3785,7 +3785,7 @@
37853785
"## Determinant\n",
37863786
"The determinant of a square matrix $M$, noted $\\det(M)$ or $\\det M$ or $|M|$ is a value that can be calculated from its elements $(M_{i,j})$ using various equivalent methods. One of the simplest methods is this recursive approach:\n",
37873787
"\n",
3788-
"$|M| = M_{1,1}\\times|M^{(1,1)}| - M_{2,1}\\times|M^{(2,1)}| + M_{3,1}\\times|M^{(3,1)}| - M_{4,1}\\times|M^{(4,1)}| + \\cdots ± M_{n,1}\\times|M^{(n,1)}|$\n",
3788+
"$|M| = M_{1,1}\\times|M^{(1,1)}| - M_{1,2}\\times|M^{(1,2)}| + M_{1,3}\\times|M^{(1,3)}| - M_{1,4}\\times|M^{(1,4)}| + \\cdots ± M_{1,n}\\times|M^{(1,n)}|$\n",
37893789
"\n",
37903790
"* Where $M^{(i,j)}$ is the matrix $M$ without row $i$ and column $j$.\n",
37913791
"\n",

0 commit comments

Comments
 (0)