Ask Your Question
2

Checking conjugacy of two matrices

asked 2016-08-31 09:35:21 +0200

nebuckandazzer gravatar image

updated 2022-10-24 16:02:32 +0200

FrédéricC gravatar image
  1. I want to check whether or not two matrices are conjugate. I need to check conjugacy for two matrices in $SL(2,\mathbb{Z})$. How to do it ? How to do it for any general ring or field ? (Notice that I just want to verify whether two given matrices are conjugate or not, I don't need the actual matrices; meaning that say $X$ and $Y$ are conjugates and $AXA^{-1}=Y$. I just want to know if or not $X$ and $Y$ are conjugates, I don't need the matrix $A$)

  2. Extending the previous question, say $AXA^{-1}=Y$. Then we can solve the system of linear equations $AX=YA$ to find out $A$. But is there any command which can directly find $A$ ?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
2

answered 2016-08-31 10:13:54 +0200

tmonteil gravatar image
  1. You can look at the is_similar method for matrices, see this page for the documentation and examples.

  2. You can get the transformation matrix A by setting the transformation parameter to True. Note that, since you are working with integer matrices, the transformation matrix will be in the algebraic field QQbar, you can get it back to ZZ as follows:

    sage: A = X.is_similar(Y, transformation=True)[1].change_ring(ZZ)
    
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2016-08-31 09:35:21 +0200

Seen: 999 times

Last updated: May 15 '19