Skip to content

Commit 1a3be6f

Browse files
committed
Add feedback that det of ident matrix is always 1
1 parent 45e3518 commit 1a3be6f

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

03-matrices/questions/5-4-det-ident.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
"question": "Find the determinant of the following 4x4 identity matrix by hand (do <b>not</b> use NumPy or a calculator):\n\\begin{equation}\n\\mathbf{I} = \\begin{bmatrix} 1 & 0 & 0 & 0 \\\\ 0 & 1 & 0 & 0 \\\\ 0 & 0 & 1 & 0 \\\\ 0 & 0 & 0 & 1 \\end{bmatrix}\n\\end{equation}",
55
"answers": [
66
{
7-
"value": 1,
8-
"correct": true
7+
"value": 1,
8+
"correct": true,
9+
"feedback": "Correct! The determinant of any identity matrix is always 1."
910
}
1011
]
1112
},
@@ -14,8 +15,10 @@
1415
"question": "Find the determinant of the following 3x3 identity matrix by hand (do <b>not</b> use NumPy or a calculator):\n\\begin{equation}\n\\mathbf{I} = \\begin{bmatrix} 1 & 0 & 0 \\\\ 0 & 1 & 0 \\\\ 0 & 0 & 1 \\end{bmatrix}\n\\end{equation}",
1516
"answers": [
1617
{
17-
"value": 1,
18-
"correct": true
18+
"value": 1,
19+
"correct": true,
20+
"feedback": "Correct! The determinant of any identity matrix is always 1."
21+
1922
}
2023
]
2124
}

0 commit comments

Comments
 (0)