Linear Algebra Quiz
1. What is the magnitude of vector:
v=[3,4]2. What does the following code output?
3. Which pair of vectors is directionally equivalent (have the same direction)?
a=[2,4], b=[1,2]4.
5. Which transformation matrix scales x by 3 and y by 0.5?
6. The following Python code represents a scaling transformation that scales x by 3 and y by 0.5.
What is the output?
7. A rotation matrix rotates vectors counterclockwise around the origin by a given angle θ.
The general 2D rotation matrix is given by:
R(θ)=[cos(θ)sin(θ)−sin(θ)cos(θ)]For θ=90 (counterclockwise rotation), we substitute:
R(90°)=[01−10]Which matrix correctly represents this transformation?
8. What is printed?
9. Which LU decomposition correctly factors the matrix A into L and U?
A=[2648]10. Which matrices L and U will be in the output?
11. Which Q matrix is correct for the QR decomposition of [3045]?
12. Which matrix Q is correct for the QR decomposition of A in code?
13. An orthonormal matrix always has eigenvalues that are:
14. When an eigenvector satisfies the equation Ax=λx?
15. What does this print?
16. Which statement is true?
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 13
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Awesome!
Completion rate improved to 1.89
Linear Algebra Quiz
Desliza para mostrar el menú
1. What is the magnitude of vector:
v=[3,4]2. What does the following code output?
3. Which pair of vectors is directionally equivalent (have the same direction)?
a=[2,4], b=[1,2]4.
5. Which transformation matrix scales x by 3 and y by 0.5?
6. The following Python code represents a scaling transformation that scales x by 3 and y by 0.5.
What is the output?
7. A rotation matrix rotates vectors counterclockwise around the origin by a given angle θ.
The general 2D rotation matrix is given by:
R(θ)=[cos(θ)sin(θ)−sin(θ)cos(θ)]For θ=90 (counterclockwise rotation), we substitute:
R(90°)=[01−10]Which matrix correctly represents this transformation?
8. What is printed?
9. Which LU decomposition correctly factors the matrix A into L and U?
A=[2648]10. Which matrices L and U will be in the output?
11. Which Q matrix is correct for the QR decomposition of [3045]?
12. Which matrix Q is correct for the QR decomposition of A in code?
13. An orthonormal matrix always has eigenvalues that are:
14. When an eigenvector satisfies the equation Ax=λx?
15. What does this print?
16. Which statement is true?
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 13