Re: [sage-support] Error while finding a solution of the non linear equation by bisection method using loop in SageCellServer

2022-08-29 Thread Varun Kumar
: print("No solution found after "+str(maxiter)+" iterations") > > : *return* *None* > > : > > sage: *def* *f*(x): > > : *return* x^*3*-*9**x+*1* > > : > > sage: x0 = mybisection(f,*2*,*3*,*10*^-*12*

[sage-support] Error while finding a solution of the non linear equation by bisection method using loop in SageCellServer

2022-08-28 Thread Varun Kumar
def Bisection(f, a, b, errorBound): xm = (a+b)/2 while( f(x)!=0 and (b-a) >= errorBound): if(f(a)*f(xm)<0): b = xm else: a = xm xm = (a+b)/2 return xm def f(x): return x^3-9*x+1 bisection(f,2,3,0.001) print("ro

Re: [sage-support] Building dockerfile with Sagemath9.5 as base image

2022-07-27 Thread Rishabh Kumar
Jul 2022, 03:08 Rishabh Kumar, wrote: > >> I could build the Sagemath 9.5 as the base image on docker but upon >> running `sudo apt-get update && sudo apt-get install -y postgresql >> postgresql-client` >> I got the following error messages. >> >> #10

[sage-support] Building dockerfile with Sagemath9.5 as base image

2022-07-26 Thread Rishabh Kumar
I could build the Sagemath 9.5 as the base image on docker but upon running `sudo apt-get update && sudo apt-get install -y postgresql postgresql-client` I got the following error messages. #10 1.955 E: The repository 'http://security.ubuntu.com/ubuntu impish-security Release' does not have a

Re: [sage-support] Convergence of infinite series

2022-03-29 Thread Varun Kumar
Thank You David On Tue, Mar 29, 2022 at 3:23 PM David Joyner wrote: > On Tue, Mar 29, 2022 at 5:33 AM Varun Kumar > wrote: > > > > Someone help me to study the convergence of infinite series by plotting > the partial sum. > > > > One example is at the end

[sage-support] Convergence of infinite series

2022-03-29 Thread Varun Kumar
Someone help me to study the convergence of infinite series by plotting the partial sum. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr..

[sage-support] Bug

2022-03-04 Thread Varun Kumar
(core dumped) sage -python "$@" Regards, Varun Kumar -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googl

[sage-support] Re: i have installed sagemath 7 via mathbuntu using source file but as i starting the program it crashes

2016-02-29 Thread Arindam kumar chatterjee
how to install sage inside /opt in ubuntu using source please help me On Saturday, 27 February 2016 17:28:08 UTC+5:30, Arindam kumar chatterjee wrote: > > and i also installed sage on my desktop in ubuntu it work perfectly but as > i have move the directory it crashes...and th

[sage-support] Re: i have installed sagemath 7 via mathbuntu using source file but as i starting the program it crashes

2016-02-27 Thread Arindam kumar chatterjee
is their any way to install sage inside /opt in ubuntu 14.04 or way to move its installation directory to /opt?? On Saturday, 27 February 2016 17:28:08 UTC+5:30, Arindam kumar chatterjee wrote: > > and i also installed sage on my desktop in ubuntu it work perfectly but as > i have

[sage-support] Re: i have installed sagemath 7 via mathbuntu using source file but as i starting the program it crashes

2016-02-27 Thread Arindam kumar chatterjee
i have installed through mathbuntu scriptand also from the source. On Saturday, 27 February 2016 17:28:08 UTC+5:30, Arindam kumar chatterjee wrote: > > and i also installed sage on my desktop in ubuntu it work perfectly but as > i have move the directory it crashes...and th

[sage-support] i have installed sagemath 7 via mathbuntu using source file but as i starting the program it crashes

2016-02-27 Thread Arindam kumar chatterjee
and i also installed sage on my desktop in ubuntu it work perfectly but as i have move the directory it crashes...and the default installation directory via mathbuntu is /opt/mathbuntu/sage/sage-7.0 here is my crash report please help i am a regular sage user and never faced such a problem befo

[sage-support] here is my crash report please help.....

2016-02-27 Thread Arindam kumar chatterjee
-- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To post to this group, send email to sage-support@googlegroups.com. Vis

[sage-support] Bivariate polynomial Euclid's division algorithm support

2014-05-30 Thread kundan kumar
Hi, Does sage have an implementation of Bivariate polynomial Euclid's division algorithm? In particular, I want to divide f(x) = x^p - 1 by g(x,y) = (x-y)^2 - c. Here, p is a large prime. The division occur in F[y] / (y^7 - 1) where F is a finite field(Z mod p).That is while applying division

[sage-support] need sage configuration support

2009-03-10 Thread Kumar
Hi All, I am facing problems in configure sage-notebook in my desktop. though i had follow all guide line which is given onhttp://www.sagemath.org/doc/inst/node6.html but struck some where in the middle bugs:-> a...@arun:~/Desktop/sage-3.2.3$ su Password: r...@arun:/home/arun/Desktop/s