You are viewing this question as it will appear in the manual grading interface.
Return to the normal view when
you are done.
README (not visible to students)
This question displays a randomly generated graph with nodes and edges. Students are asked to provide the corresponding adjacency matrix. Matrix entries that are left blank are considered as zero. Students can get partial credit for each correct matrix entry.
Correct answer
$\mathbf{A} = $
$\begin{bmatrix} 1 & 0 & 0 & 0\\ 1 & 0 & 0 & 0\\ 0 & 1 & 0 & 0\\ 0 & 0 & 1 & 0\\\end{bmatrix}$
Student view placeholder
In student views this area is used for assessment and score info.
Tools
Staff information
Question
Title:
Matrix component input: random graph
Variant
Started at:
2026-08-04 22:48:58 (CDT)
Duration:
0s
Show/Hide answer
{
"matrix": {
"_type": "ndarray",
"_dtype": "float64",
"_value": [
[
1,
0,
0,
0
],
[
1,
0,
0,
0
],
[
0,
1,
0,
0
],
[
0,
0,
1,
0
]
]
}
}