For a matrix $A \in \mathbb{C}^{n \times n}$, does multiplication by a unitary matrix $U$ change the eigenvalues of $A$? So for:
$$Ax = \lambda x \qquad \mathrm{and} \qquad AUy = \mu y $$
does $\lambda = \mu$ for some $x,y \in \mathbb{C}^n$?
I know the above is true for doing left and right multiplication by $U$:
$$ UAU^*y = \mu y \\ AU^*y = \mu U^* y \\ Az = \mu z \\ \therefore \mu = \lambda$$
(defining $z = U^* y$)
Under the guise that unitary matrices are simply rotations, it logically makes sense to me that $\mu$ and $\lambda$ should be identical, and only the the eigenvectors should be different. The statement is true for singular values (see here), but I'm having trouble proving it for eigenvalues (if it even is true).
Edit
After a quick example in python, I understand that the above is not true. So instead: where is my thought process going wrong with regard to how unitary matrices/rotations effect eigenvalues?
Edit 2
What I was really going for, but did not state correctly was that:
$$AX = \Lambda X \qquad \mathrm{and} \qquad AUY = MY \\$$
such that $ \lambda \in M, \forall \lambda \in \Lambda$, where $M$ and $\Lambda$ are diagonal matrices.