[Math] If $A$ is similar to an upper triangular matrix, must A also be upper triangular

linear algebramatrices

Say $A$ is an $n \times n$ matrix, I understand stand that 2 matrices $A, B$ are similar iff there exist an invertible matrix $Q$ such that $A =$ $Q^{-1}BQ$,
so if $B$ is already an upper triangular matrix, does $Q^{-1}BQ$ affects B and make it not upper-triangular ?

Best Answer

Over any field, if $A$ is a lower triangular matrix, then $B=PAP^{-1}$ is upper triangular when $P=P^{-1}$ is the reversal matrix obtained by flipping the identity from left to right. So, the answer to your question in the title is no.

As for your other question, if you pick an arbitrary $Q$, it may of course break triangularity. Yet, in triangularisation, the $Q$ we pick is not arbitrary but depends on the matrix to be triangularised. E.g. when $B$ is already triangular, you can simply choose $Q=I$. Then $A(=B)=Q^{-1}BQ$ is triangular.

Related Question