Re: [sage-support] Sqrt of a matrix over Fp

2023-06-09 Thread Dima Pasechnik
only make sense for ordered fields. > > > De: "Habeeb Syed" > À: "sage-support" > Envoyé: Vendredi 9 Juin 2023 04:43:46 > Objet: Re: [sage-support] Sqrt of a matrix over Fp > > Thanks for the reply Stein. It was very help

Re: [sage-support] Sqrt of a matrix over Fp

2023-06-09 Thread cyrille.piate...@univ-orleans.fr
Hello (I do not know which is your given name), I think what you are searching is called Cholesky factorization . It is implemented in SageMath De: "Habeeb Syed" À: "sage-support" Envoyé: Vendredi 9 Juin 2023 04:43:46 Objet: Re: [sage-support] Sqrt of a mat

Re: [sage-support] Sqrt of a matrix over Fp

2023-06-08 Thread Habeeb Syed
Thanks for the reply Stein. It was very helpful. On Thu, 8 Jun, 2023, 22:06 William Stein, wrote: > Hi, > > You will probably have to implement a function to find a sqrt (if it > exists) in terms of other higher level primitives. > > See https://en.wikipedia.org/wiki/Square_root_of_a_matrix

Re: [sage-support] Sqrt of a matrix over Fp

2023-06-08 Thread William Stein
Hi, You will probably have to implement a function to find a sqrt (if it exists) in terms of other higher level primitives. See https://en.wikipedia.org/wiki/Square_root_of_a_matrix and https://chat.openai.com/share/114817d2-908a-4776-b14a-5bc6e04b226b William On Thu, Jun 8, 2023 at 9:05 AM

[sage-support] Sqrt of a matrix over Fp

2023-06-08 Thread Habeeb Syed
Hi, I need to compute square roots of matrices defined over finite fields. It seems sage has no such function. I am getting this error. AttributeError: 'sage.matrix.matrix_modn_dense_float.Matrix_modn_dense_float' object has no attribute 'sqrt' Any help on this will be very useful to me.