Hello, I am having an error with the first exercise in the course of Math for ML (C1_W4). I defined the the vectors like follow but I am having an error:
Define transformation matrix A_reflection_yaxis as a numpy array.
A_reflection_yaxis = np.array([[-2,-3], [2,1]])
Find eigenvalues and eigenvectors or matrix A_reflection_yaxis.
Hello Alex_Eponon
Here, he asked you to find the reflection of y_{axis}
and he didn’t ask to apply matrix multiplication
therefore your matrix after multiplication = \begin{bmatrix} -2 && -3 \\ 2 && 1 \end{bmatrix}
He didn’t mean this, he just wanted to see the reflection of y_{axis}
I wish It helped
Hi, I have fixed it. The matrix A_reflection_yaxis has nothing to do with the matrix A. Imagine y-axis as a mirror and A_reflection_yaxis is the reflection of the usual basis vectors np.array([[1,0],[0,1]]) using y-axis. Good luck!