If $A$, $B$ and $C$ are positive semidefinite real matrices such that $A\succeq B$, do we have: $$ AC\succeq BC\quad\text{and}\quad CA\succeq CB.\tag{i} $$ Here, $A$, $B$, and $C$ share the same dimensions so that the multiplications above make sense.
Context: originally I had to prove $\text{tr}(AC)\geq\text{tr}(BC)$, which I have by using the Cholesky decomposition $C=LL'$: $$ \text{tr}(AC)-\text{tr}(BC)=\text{tr}(ALL')-\text{tr}(BLL')=\text{tr}(L'AL)-\text{tr}(L'BL)=\text{tr}(L'(A-B)L) $$ which is nonnegative because the matrix $L'(A-B)L$ is positive semidefinite. Then, I noted that my result will also follow if either equality in (i) holds, hence this question. Thank you very much.