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?
Tout était clair ?
Merci pour vos commentaires !
Section 4. Chapitre 13
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Suggested prompts:
Can you explain this in simpler terms?
What are some examples related to this topic?
Where can I learn more about this?
Awesome!
Completion rate improved to 1.89
Linear Algebra Quiz
Glissez pour afficher le menu
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?
Tout était clair ?
Merci pour vos commentaires !
Section 4. Chapitre 13