Re: [sage-devel] Re: Implementing minimum_generating_set() function

2024-01-19 Thread Dima Pasechnik
On 19 January 2024 15:18:45 GMT, 'Ruchit Jagodara' via sage-devel wrote: >In case my questions have caused any confusion, I am rephrasing them as >below. > >I have a group G and its minimal normal subgroup N. > >I want to find G/N. Do you know how I can do that? (I also want G/N to be >an

Re: [sage-devel] Re: Implementing minimum_generating_set() function

2024-01-19 Thread 'Ruchit Jagodara' via sage-devel
In case my questions have caused any confusion, I am rephrasing them as below. I have a group G and its minimal normal subgroup N. I want to find G/N. Do you know how I can do that? (I also want G/N to be an object of the same class as G.) My another question is: How can I find the group

[sage-devel] Re: interface to Fricas question. Special function weierstrassPInverse

2024-01-19 Thread 'Martin R' via sage-devel
Yes, the current strategy is that any expression in FriCAS that sage does not know is turned into a symbolic function with the same name: try: fun = symbol_table["fricas"][(fun_string, len(args))] except KeyError: try: # to handle the case

[sage-devel] interface to Fricas question. Special function weierstrassPInverse

2024-01-19 Thread 'Nasser M. Abbasi' via sage-devel
Should sagemath translate any special function name returned by external CAS to sagemath known name? Fricas returns result from integrate using special function weierstrassPInverse. This is returned to sagemath as is. But sagemath says this function is not defined when trying it inside

Re: [sage-devel] SuiteSparse and sage and sparse_matrix.LU()

2024-01-19 Thread 'Animesh Shree' via sage-devel
Thank You I am looking into it On Friday, January 19, 2024 at 3:43:29 PM UTC+5:30 Dima Pasechnik wrote: > On Fri, Jan 19, 2024 at 9:35 AM 'Animesh Shree' via sage-devel > wrote: > > > > I have been looking into sparse matrix LU decomposition issue. > > > > In that conversation SuiteSparse is

Re: [sage-devel] SuiteSparse and sage and sparse_matrix.LU()

2024-01-19 Thread Dima Pasechnik
On Fri, Jan 19, 2024 at 9:35 AM 'Animesh Shree' via sage-devel wrote: > > I have been looking into sparse matrix LU decomposition issue. > > In that conversation SuiteSparse is proposed to handle sparse matrix > decomposition. > > What I could find that it is mostly C and Matlab. I don't know

[sage-devel] SuiteSparse and sage and sparse_matrix.LU()

2024-01-19 Thread 'Animesh Shree' via sage-devel
I have been looking into sparse matrix LU decomposition issue . In that conversation SuiteSparse is proposed to handle sparse matrix decomposition. What I could find that it is