: 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*
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
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
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
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
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..
(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
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
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
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
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
--
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
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
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
14 matches
Mail list logo