Edit Game
Applied Linear Algebra
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   19  Close
How to find the norm of the matrix using trace?
What is rank of matrix?
The maximum number of linearly independent columns or rows.
If shape of matrix is 5x3, what will be the shape of U matrix in SVD decomposition?
5x5
How to find norm of vector in Python?
np.linalg.norm()
Symmetric matrices have orthogonal...
Eigenvectors
Determine if matrix stochastic?
No
How to check if vectors are orthogonal?
Dot product is 0
What output will be?
[[25, 8], [ 1, 2]]
What are eigenvectors and eigenvalues? How to calculate it in Python?
Eigenvector changes by a scalar factor when linear transformation is applied to it. Eigenvalues are levels of scaling. vec,val=np.linalg.eig(M)
What function returns you inverse of the matrix?
np.linalg.inv()
What is the output?
5x5 identity matrix
How to plot this figure?
plt.imshow(A)
How to find LU decomposition in Python and what values are returned?
P,L,U=np.linalg.lu(A), where P-permutation matrix, L -lower, U -upper triangular matrices
How to find determinant in Python? What is determinant of given matrix?
np.linalg.det(C), -24
How to create 4x4 identity matrix in Python?
np.eye(4)
How you multiple elements by elements of two matrices in Python?
A*B
How to multiply two matrices in Python?
A@B, np.dot(A,B)
What output will be shown?
18
Add code to plot the figure.
plt.plot([0,2],[0,2],"r") plt.plot([0,-1],[0,3],"k")