[sage-support] Install sagemath in a server for multiple users

2019-06-29 Thread Samanta
What is the procedure of installing Sagemath in a server so that many users can use it (by the jupyter or old notebook) with an ip address (like https://192.***.***.***: port ") instead of localhost? -- You received this message because you are subscribed to the Google Groups "sage-support" g

[sage-support] Error in operations of finite field

2019-11-21 Thread Samanta
I did not understand why the error has occurred. For the first time, it returned output but for the second time when I run the same code, I found an error "ValueError: the degree of the modulus does not equal the degree of the field" which is also not true as my irreducible polynomial has degre

[sage-support] Output in characteristic 2

2020-02-02 Thread Samanta
I have defined the input variables in characteristic 2. But when I assign a particular value to the input, output gives the result in simple algebra not in characteristic 2. Here is my code: sage: P. = GF(2)[] : x3=0 : x2=1 : x1=0 : x0=1 : s1= x0*x2*x3 + x0*x2 + x0 + x1*x2 +

[sage-support] Inverse of a Matrix in a Polynomial Quotient Ring

2021-10-05 Thread Samanta
Hi supporters, I am using SageMath (version 8.9) in my Ubuntu 18.04 LTS and during the calculation of inverse of a matrix in the quotient ring GF(2)[x]/, I am getting an error "NotImplementedError". However, the determinant of the matrix is a unit in the ring so it is invertible. Also, I have ru

Re: [sage-support] Upgrade sagemath server version 5.0.1. to the new one.

2019-06-18 Thread SUSANTA SAMANTA
b visit > https://groups.google.com/d/msgid/sage-support/CAAWYfq2s2rJTMAiryLPerGFChiGrrrj7Q1DngDvgiO9QhAJjyA%40mail.gmail.com > <https://groups.google.com/d/msgid/sage-support/CAAWYfq2s2rJTMAiryLPerGFChiGrrrj7Q1DngDvgiO9QhAJjyA%40mail.gmail.com?utm_medium=email&utm_source=footer> >

Re: [sage-support] Upgrade sagemath server version 5.0.1. to the new one.

2019-06-18 Thread SUSANTA SAMANTA
Thanks for your valuable support. On Wed, 19 Jun, 2019, 2:04 AM Dima Pasechnik, wrote: > > > On Tue, 18 Jun 2019 at 20:39, SUSANTA SAMANTA > wrote: > >> Thanks for your advice. But if I want fresh installation then how can I >> install it to the server? After fresh i

Re: [sage-support] Install sagemath in a server for multiple users

2019-07-01 Thread SUSANTA SAMANTA
send by you not working. Thanks On Mon, Jul 1, 2019 at 2:58 AM Dima Pasechnik wrote: > > > On Sat, 29 Jun 2019 at 18:07, Samanta wrote: > >> What is the procedure of installing Sagemath in a server so that many >> users can use it (by the jupyter or old notebook)

Re: [sage-support] Install sagemath in a server for multiple users

2019-07-01 Thread SUSANTA SAMANTA
reachable. Thanks On Mon, Jul 1, 2019 at 7:46 PM Dima Pasechnik wrote: > > > On Mon, 1 Jul 2019 15:05 SUSANTA SAMANTA, > wrote: > >> Yes, all users have an account on the server. They can use the Sagemath >> in the server by locallhost (in this the server's browser ope

Re: [sage-support] Error in operations of finite field

2019-11-22 Thread SUSANTA SAMANTA
beta6). > > > Note that actually it's two identical inputs, the 2nd executed after > > > the 1st gives the error. > > > > > > I'll open a ticket. > > > > > > On Fri, Nov 22, 2019 at 7:53 AM Samanta > wrote: > > > > > >

Re: [sage-devel] Re: [sage-support] Error in operations of finite field

2019-11-22 Thread SUSANTA SAMANTA
Pasechnik wrote: >> > >> > This is now https://trac.sagemath.org/ticket/28786 >> > Note that it only happens if modulus is explicitly given. >> > >> > On Fri, Nov 22, 2019 at 9:47 AM Dima Pasechnik >> wrote: >> > > >> > > yes, I can confi

Re: [sage-support] Re: Output in characteristic 2

2020-02-03 Thread SUSANTA SAMANTA
Thanks a lot Simon. All solved now. On Mon, 3 Feb, 2020, 1:54 PM Simon King, wrote: > Hi Samanta, > > On 2020-02-03, Samanta wrote: > > I have defined the input variables in characteristic 2. > > No, you haven't, see below. > > > But when I assign a > &

Re: [sage-support] Output in characteristic 2

2020-02-03 Thread SUSANTA SAMANTA
uot;typing a variable" in Python. You can do > > sage: x3 = 0 # defines x3 as an integer > sage: x3 = [0, 1, 3] # redefines x3 as a list > sage: x3 = "hello"# redefines x3 as a string > > > Le 03/02/2020 à 08:31, Samanta a écrit : > > I have