Re: [sage-support] Re: Sage 9.8 build error

2023-01-05 Thread Alex
Thank you, Matthias. I was indeed able to build sage after passing "--without-system-singular" to "./configure". Still working on figuring out how to merge the branch of the ticket you suggested. Best, Alex On Thursday, January 5, 2023 at 10:54:13 AM UTC-8 Matthias Koeppe

Re: [sage-support] Re: Sage 9.8 build error

2023-01-04 Thread Alex
make[1]: *** [all-start] Error 1 >> make: *** [all] Error 2 >> """ >> >> This time there are only four packages with errors pointed out when I run >> >> grep -li "^Error" logs/pkgs/* >> >> so this is an improvement, but I am

Re: [sage-support] Re: Sage 9.8 build error

2023-01-04 Thread Alex
Hi John, Sorry, just after I sent my previous message I realized I should have typed 'make typing_extensions' and not 'make typing_extension' so I am no longer getting the error I indicated above. I am currently building with no errors so far, so I will send another update s

[sage-support] Cython compilation fail after separating code

2022-11-16 Thread Alex
This is essentially the same as my post on ask.sagemath.org , but after a while with no comments, I figured it would be okay to get more eyes on it here. I also asked on Zulip, but no dice there either. It

[sage-support] Re: "Inappropriate ioctl for device" when displaying number in Jupyter notebook

2022-07-01 Thread Alex J Best
Indeed that should fix it, in the meantime you can run something like sage: from sage.typeset.ascii_art import AsciiArt sage: AsciiArt._terminal_width = lambda x: 80 Before running other commands to fix the problem in a given notebook On Friday, July 1, 2022 at 3:40:58 AM UTC+2 John H Palmieri

Re: [sage-support] Re: Possible bug in ExpressionNice

2022-03-11 Thread Alex Dikelsky
Great, thanks! On Tue, Mar 8, 2022 at 7:43 AM Eric Gourgoulhon wrote: > > Le mardi 22 février 2022 à 14:09:08 UTC+1, Eric Gourgoulhon a écrit : > >> Hi, >> >> Thanks for the report! >> This is indeed a bug. It is fixed in >> https://trac.sagemath.org/ticket/33399 >> > > The fix has been merged i

[sage-support] Possible bug in ExpressionNice

2022-02-19 Thread Alex Dikelsky
v^2 I expected the output to be d^2(f)/d(u + v)^2 - d^2(f)/d(u - v)^2 with parenthesis around (u - v). Alex -- 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 e

Re: [sage-support] Strange behavior when evaluating multivariate polynomials over integers modulo n

2021-03-08 Thread Alex Braat
Small update: Replacing Integers(p^2) by QuotientRing(ZZ, p^2) seems to fix the issue. Op maandag 8 maart 2021 om 10:34:06 UTC+1 schreef dim...@gmail.com: > On Mon, Mar 8, 2021 at 9:25 AM Alex Braat wrote: > > > > Hello, > > > > I have encountered some stran

[sage-support] Strange behavior when evaluating multivariate polynomials over integers modulo n

2021-03-08 Thread Alex Braat
Hello, I have encountered some strange behavior when I evaluate multivariate polynomials over the integers modulo n. For instance, In: p = 3 S = Integers(p^2) R. = PolynomialRing(S) f = x^2 * y^2 print(f([S(p),S(1)]), f([S(1), S(p)])) Out: 1 0 while both evaluations should ofcourse be equal to

[sage-support] Re: recovering the last Sage command while it is still running

2020-08-20 Thread Alex J Best
At least on my machine opening a new terminal window and starting a new sage session then pressing "up" gives me the previous command (still running) from the old session. (I'm on 9.2.beta8 in case that's relevant) On Thursday, August 20, 2020 at 1:32:20 PM UTC-4 David Lowry-Duda wrote: > > I

[sage-support] Parallelization on a cluster

2019-07-05 Thread Alex Jacoby
MPI4PY here or whether SAGE already has everything we need. Any help would be very much appreciated. Best, Alex -- 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 e

[sage-support] Re: installation issues with sage 7.6

2017-03-31 Thread Alex Jordan
Ah, thanks. I misunderstood your first message. So I will need Sierra if I wish to run 7.6. -- 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+unsubsc

[sage-support] Re: installation issues with sage 7.6

2017-03-31 Thread Alex Jordan
I installed Sage 7.4 and it's running well. For me, for now, this is an acceptable situation. Are there release notes for 7.5 and 7.6 that I could review to see what I am missing? The release notes here only go up to 7.3. -- You received this message beca

[sage-support] installation issues with sage 7.6

2017-03-30 Thread Alex Jordan
I'm installing Sage for the first time, on a Mac OS El Capitan. I downloaded from: http://files.sagemath.org/osx/intel/index.html the file sage-7.6-OSX_10.12.3-x86_64.app.dmg, and dragged Sage into Applications. The first time I opened Sage, a window opened that asked if I wanted to update som

[sage-support] region_plot and not equals

2017-02-20 Thread Alex Jordan
I'm not sure what I would expect to see, but the following produces something I would not expect: region_plot([x <> 1], (x,-2,2), (y,-2,2)) The output has the region left of x=1 shaded, but not the region right of x=1. Similar "one-sided" results with region_plot([x <> y], (x,-2,2), (y,-2,2))

[sage-support] Unexpected behaviour of derivatives on power series

2017-01-15 Thread Alex Thorne
When differentiating elements of power series rings, I do not get the expected result. Below is a minimal example: R. = PowerSeriesRing(SR) f = 1 + O(x^2) f.derivative(1) f.derivative(2) f.derivative(3) The first derivative gives `O(x^1)` as expected and similarly the second gives `O(x^0)`. How

[sage-support] sage doesn't support non-ASCII path during the installation

2016-05-13 Thread Alex Oxi
Distro lsb_release -a LSB Version:core-5.0-amd64:core-5.0-noarch Distributor ID:SUSE LINUX Description:openSUSE Leap 42.1 (x86_64) Release:42.1 Codename:n/a Kernel uname -rsm Linux 4.1.20-11-default x86_64 CPU Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz Sage version sage: version(

[sage-support] make error

2016-02-10 Thread Alex
Hi, I've tried to compilate sage but it doesn't work. Here is the message in the shell : make build/make/Makefile make[1]: Entering directory '/usr/local/share/sage-7.0' rm -f config.log mkdir -p logs/pkgs ln -s logs/pkgs/config.log config.log ./configure: line 1890: config.log: Permission denied

Re: [sage-support] find_root for systems

2015-05-05 Thread Alex Lindsay
There's a good introduction on solving equations in sage here: http://www.sagemath.org/doc/tutorial/tour_algebra.html If you have a specific system of equations in mind, you should share them. On 05/05/2015 08:06 AM, Paul Royik wrote: How can I find numerical root for the system of equations?

[sage-support] How To Decorate Implicit Plots With Information About Points Along The Surface?

2015-04-19 Thread Alex Seewald
I want to make an implicit 3D plot of the surface of one coordinate having constant value in orthogonal, curvilinear coordinate systems, along with decorations on that surface of what the unit vectors look like at sample points. Is there any easy way to iterate over sample points of the surface,

Re: [sage-support] Does not work with chrome either Safari. Here the Log

2014-10-16 Thread Alex Hailey
014 9:52:02 PM UTC-7, Ivan Andrus wrote: > > I’m glad it worked out for you. You _shouldn’t_ have to do that, however. > It should open up a Terminal automatically. What version of OS X are you > using? > > -Ivan > > On Oct 14, 2014, at 11:57 AM, Alex Hailey >

Re: [sage-support] Re: Does not work with chrome either Safari. Here the Log

2014-10-14 Thread Alex Hailey
etc. to try and debug it. > > Alternately, you should also be able to start up a shell version (Terminal > Session > Sage from the menus), and then run notebook() from there. This > will give you better insight into what’s going wrong. > > -Ivan > > On Oct 13, 2014, at 6

[sage-support] Re: Does not work with chrome either Safari. Here the Log

2014-10-13 Thread Alex Hailey
I have the same error as above. I am trying to set up Sage-6.3 for OS X 10.9. I installed the "app"-version and ran for the first time and get the "Sage server failed to start" message. Not sure what needs to be done. It looks like I need to set-up a password somewhere, but am unsure as to what

[sage-support] Re: defining custom 3d classes

2014-05-20 Thread Alex Hanson
For some reason all pictures were posted as the same pic... Pic 1: triad and t1 Pic 2: t1 and t2 Pic 3: just t2 Pic 4: correct, all three together On Tuesday, May 20, 2014 11:59:26 AM UTC-7, Alex Hanson wrote: > > I am attempting to create custom classes for common 3d primitives. The >

Re: [sage-support] Re: Sage on multi cpu architecture

2014-02-28 Thread Alex Lara
I will try. Thank you Alex. El viernes, 28 de febrero de 2014 17:04:51 UTC-6, William escribió: > > On Fri, Feb 28, 2014 at 3:00 PM, Alex Lara > > wrote: > > I will try to explain myself better. > > > > I am working with power sums: sum 1/a^k, (k positive integ

[sage-support] Re: Sage on multi cpu architecture

2014-02-28 Thread Alex Lara
to work in parallel to take advantage of the several processors/cores. Thanks, Alex. El viernes, 28 de febrero de 2014 12:22:28 UTC-6, Alex Lara escribió: > > Hi everybody, > > I am using sagemath in server with several processors/cores, but its not > using > all the CPU

[sage-support] Sage on multi cpu architecture

2014-02-28 Thread Alex Lara
5 0 @ 2.40GHz Thank you in advance, Alex -- 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 gro

Re: [sage-support] Change default prec to LaurentSeriesRing

2013-09-03 Thread Alex Lara
I found it. sage: LS. = LaurentSeriesRing(GF(3)) sage: LS.default_prec() 20 sage: LS.set_default_prec(30) sage: LS.default_prec() 30 Alex Lara. El martes, 3 de septiembre de 2013 05:51:02 UTC-5, Alex Lara escribió: > > Thank you for your answer. > I know that default_prec is an o

Re: [sage-support] Change default prec to LaurentSeriesRing

2013-09-03 Thread Alex Lara
Thank you for your answer. I know that default_prec is an option in newest versions of sage. But in Sage 5.2 and older versions it seems there is not a way to change the precision, and for now I can not upgrade sage. Alex Lara El martes, 3 de septiembre de 2013 03:19:44 UTC-5, John Cremona

[sage-support] Change default prec to LaurentSeriesRing

2013-09-02 Thread Alex Lara
Hi everybody, Is there a way to change the default precision to LaurentSeriesRing in Sage 5.2? Thank you, Alex Lara Universidad Autónoma de Yucatán México -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this

[sage-support] Re: Problem with sagecell server installation

2012-09-15 Thread Alex Kramer
On Saturday, September 15, 2012 7:40:31 PM UTC-4, ma...@mendelu.cz wrote: > Thank you for your answer. I think that I did all the steps and got no error. > But if I run the script, I get the message > > ZMQ Connection with computer 87489d02-26f5-493d-bdd0-c4d262be72de at port > 52311 established

Re: [sage-support] Re: Sage's running too slowly

2012-08-31 Thread Alex Ghitza
g "top" from the command line)? It could be that you are running out of RAM and are using the swap a lot, which makes things very slow. Of course, in that case doing *anything* inside the virtual machine would feel quite slow. -- Best, Alex -- Alex Ghitza -- Lecturer in Mathematic

Re: [sage-support] Calling up pi to nth decimal place.

2012-08-17 Thread Alex Ghitza
know all the digits from the fraction point to the part you are interested in. (Try it yourself: I have a number N whose hexadecimal expansion is *3A*, where I don't know the * digits. What information does this give you about the decimal expansion?) -- Best, Alex -- Alex Ghitza -

Re: [sage-support] random problem

2012-07-26 Thread Alex Ghitza
ping for something fancier this won't help. -- Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne http://aghitza.org -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr..

Re: [sage-support] Generator of Finite Field

2012-05-29 Thread Alex Ghitza
(a+1).multiplicative_order() 255 The docs for multiplicative_generator() say: "return a generator of the multiplicative group", then add "Warning: This generator might change from one version of Sage to another." -- Best, Alex -- Alex Ghitza -- Lecturer in Mathemat

[sage-support] Re: Asking whether a number is in QQ or not

2011-09-15 Thread Alex Lara
Thank you to all of you! On Sep 15, 12:59 pm, Simon King wrote: > PS: > > >    sage: cm.explain(QQ, b.parent()) > > I forgot to copy-and-paste the definition of "cm". It was: > >   sage: from sage.structure.element import get_coercion_model >   sage: cm = get_coercion_model() > > Cheers, > Simon

[sage-support] Asking whether a number is in QQ or not

2011-09-14 Thread Alex Lara
: TypeError: unable to convert 1/8*(sqrt(-3) + 1)^3 to a rational Thanks Alex Lara -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http

Re: [sage-support] exact vs approximate values

2011-08-27 Thread Alex Ghitza
n to the value of the integral, and the second is an upper bound on the error of this approximation. Type sage: numerical_integral? to find out more about this. Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne -- http://aghitza.org -- To post to this gro

[sage-support] Re: Highlight code

2011-07-03 Thread Alex Juarez
the code mirror precursors in the html generator for TinyMCE, so that it generates a div that code mirror would then latch onto and validate. But you are correct implementing just codemirror2 would be much easier, and it appears to be quite feasible, still not as nice as a unified solution ascetica

[sage-support] Re: Highlight code

2011-07-02 Thread Alex Juarez
worlds, we would need to decentralize the current code so that it no longer has its own tinymce and Codemirror but rather uses the ones saved in sage. On Sat, Jul 2, 2011 at 6:12 PM, Jason Grout wrote: > On 7/2/11 7:47 PM, Alex Juarez wrote: > >> Hi Jason, >> >> I might be ab

[sage-support] ISSAC 2011

2011-05-11 Thread Alex Raichev
#x27;ll give you the details. If not, then no biggie. I thought i'd ask, because it's a good opportunity to promote Sage. Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.co

[sage-support] Re: Trouble with sage installation on Ubuntu 11.04

2011-05-01 Thread Alex Lara
I'm trying to build sage 4.6.2 from source. The output is here http://dl.dropbox.com/u/5510419/test.log I will run the long test and as soon as it finishes I will post the output. Best wishes---Alex On 1 mayo, 02:52, "Dr. David Kirkby" wrote: > On 04/30/11 09:59 PM, Alex Lar

[sage-support] Re: Trouble with sage installation on Ubuntu 11.04

2011-04-30 Thread Alex Lara
now? Best regards---Alex On 30 abr, 01:35, Jan Groenewald wrote: > Hi > > On Fri, Apr 29, 2011 at 10:01:46PM -0700, William Stein wrote: > > A random shot in the dark is that you could try: > > >   (1) installing the libssl-devel Ubuntu package with "sudo apt-get > >

[sage-support] Re: Trouble with sage installation on Ubuntu 11.04

2011-04-29 Thread Alex Lara
I tried to install from source. I have installed sage many times before following the installation guide. I will take a look at the links. -Alex On 29 abr, 14:41, kcrisman wrote: > Thanks for the report.  Did you built from scratch, or download? > > You may findhttp://trac.sag

[sage-support] Trouble with sage installation on Ubuntu 11.04

2011-04-29 Thread Alex Lara
Dear all, Sage failed to install in ubuntu 11.04. I get the following error: ImportError: No module named crypt Error importing ipy_profile_sage - perhaps you should run %upgrade? WARNING: Loading of ipy_profile_sage failed. Any idea of how to fix this? Thanks in advance: Alex Lara. -- To

[sage-support] Re: Qhull package installation fail

2011-04-06 Thread Alex Raichev
n? I poked around /Applications/sage/ devel/sage-main/doc but couldn't find it. Alex On Apr 6, 3:23 am, "D. S. McNeil" wrote: > > I tried installing the Qhull package which is an optional package on > > the list athttp://www.sagemath.org/packages/optional/, but i got

[sage-support] Qhull package installation fail

2011-04-05 Thread Alex Raichev
fully? Thanks. Alex raichev@wujarch-l~> sage -i qhull Detected SAGE64 flag Building Sage on OS X in 64-bit mode Installing qhull Calling sage-spkg on qhull Warning: Attempted to overwrite SAGE_ROOT environment variable Building Sage on OS X in 64-bit mode Creating SAGE_LOCAL/lib/sage-64.txt since

[sage-support] factor() behaving badly

2010-12-19 Thread Alex Raichev
Hi all: I get differently formatted answers using factor() multiple times on the same polynomial. I wouldn't call it a bug, but it sure is annoying when doctesting. Alex -- | Sage Version 4.6, Release Date: 2010-

[sage-support] matrix bug

2010-12-07 Thread Alex Raichev
Hi all: I found a bug related to matrices over polynomial rings. Alex -- | Sage Version 4.6, Release Date: 2010-10-30 | | Type notebook() for the GUI, and license() for information

[sage-support] simplify_full() bug?

2010-12-01 Thread Alex Raichev
Hi all: I think i found a bug with simplify_full(). Alex -- | Sage Version 4.6, Release Date: 2010-10-30 | | Type notebook() for the GUI, and license() for information

Re: [sage-support] Any way to call a sage function with a time limit?

2010-11-19 Thread Alex Leone
I think the @fork decorator might do what you want. I've never used it though. @fork(timeout=5.0) def f(...): ... - Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.co

[sage-support] bug in solving linear systems

2010-09-20 Thread Alex Raichev
Hi all: This looks like a bug in Sage 4.5.3 regarding solving linear systems. Alex -- | Sage Version 4.5.3, Release Date: 2010-09-04 | | Type notebook() for the GUI, and license() for information

[sage-support] Is this a bug?

2010-09-17 Thread Alex Lara
: 'sage.rings.fraction_field_FpT.FpTElement' object has no attribute 'partial_fraction_decomposition' The same error I get using primes different from 2. But if I use 3^2 instead of 3, or a power of some prime, I get a right answer. I did not have the problem using Sage 4.4.1. Thanks in ad

Re: [sage-support] Testing if polynomial is in ideal

2010-09-06 Thread Alex Ghitza
sage: x in I False Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.c

Re: [sage-support] Those cookies again...

2010-08-23 Thread Alex Ghitza
then see if your system administrator is willing to give it a shot. Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from

Re: [sage-support] Error installing cadabra.spkg

2010-08-20 Thread Alex Ghitza
kage. In your case, I would try installing libpcre3-dev and see if it helps (it does include pcre.h, for instance). Note also that pcre is a library so there is no pcre executable to run. Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne

[sage-support] Is there any multivariable ode solver in sage?

2010-08-19 Thread Alex Efrain
Because i want to solve the double pendulum problem .It seems that there's not a multivariable (theta_1 thetha_2) ode solver in sage. -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For

Re: [sage-support] VMware memory allocation: how to change it with version 4.5.2?

2010-08-11 Thread Alex Ghitza
ine is powered off. To make these changes, first resume the virtual machine and then shut it down." In other words, one cannot change the RAM allocation for a virtual machine that is currently running or suspended, but only for machines that are powered off. I powered mine off and was able to

Re: [sage-support] Sheaf Cohomology Calculations

2010-08-10 Thread Alex Ghitza
2/doc/Macaulay2-1.3.1/share/doc/Macaulay2/Macaulay2Doc/html/_coherent_spsheaves.html and related pages, and if that does not help, ask on the Macaulay2 mailing list, see http://groups.google.com/group/macaulay2 Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics --

Re: [sage-support] Re: 4.5.1 or 4.5.2 for win?

2010-08-08 Thread Alex Ghitza
e virtual machine's Sage notebook without any problems. So that's why I don't know what's going on at your end. The best I can do at the moment is to suggest renaming the sage-vmware folder and starting over from sage-vmware-4.5.2.zip (if you still have it). Best, Alex -

Re: [sage-support] 4.5.1 or 4.5.2 for win?

2010-08-07 Thread Alex Ghitza
e-4.5.2 that's up now. Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@google

Re: [sage-support] Re: Notebook appearance: change font and syntax highlighting?

2010-07-08 Thread Alex Leone
I just recently got a patch into codemirror (the syntax highlighting that data files use) so that it resizes just like sage input cell textarea's. We should be able to replace input cells with codemirror soon. - Alex -- To post to this group, send email to sage-support@googlegroups.c

Re: [sage-support] Re: why does constructing this ring take forever?

2010-07-07 Thread Alex Ghitza
r should be given the opportunity to > *assert* that the number is prime (or non-prime). > ... and Ctrl-C should be allowed to stop this. I tried this out, then pressed Ctrl-C and had to go to the office. It was still going more than 6 hours later. Best, Alex -- Alex Ghitza -- http

Re: [sage-support] Is there any way to get old VMware versions?

2010-06-21 Thread Alex Ghitza
#x27;ll have to install Sage in our computer labs (Windows only) and I'd like to use something more recent than 4.4.alpha0. Thanks, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-s

Re: [sage-support] Re: zeros of the Riemann zeta function

2010-06-08 Thread Alex Ghitza
So the documentation is correct about this. Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubsc

Re: [sage-support] Re: Testing if something is an instance of FreeModule

2010-05-29 Thread Alex Ghitza
e Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more option

[sage-support] Illegal Instruction errors when trying to run sage

2010-05-27 Thread Alex Goater
upport for help. To remove this warning and make Sage start, just delete /home/alex/Desktop/sage/local/lib/sage-flags.txt ** I thought perhaps I installed it wrong so I ran make within the sage directory and when I tried to run

[sage-support] Internal Instruction Error - pni

2010-05-27 Thread Alex G
upport for help. To remove this warning and make Sage start, just delete /home/alex/Desktop/sage/local/lib/sage-flags.txt ** I thought perhaps I installed it wrong so I ran make within the sage directory and when I tried t

[sage-support] SAGE being extremely slow with multivariable poly rings - is this normal?

2010-05-21 Thread Alex P
Hi all, I tried the following code in SAGE and it seems that it is taking way too long -- | Sage Version 4.3.4, Release Date: 2010-03-19 | | Type notebook() for the GUI, and license() for information.

[sage-support] Re: kash 2.5 in Sage

2010-05-19 Thread Alex Lara
That's right William, the command line interface is different. Thank you Alex. On 19 mayo, 11:10, William Stein wrote: > On Wed, May 19, 2010 at 7:53 AM, Alex Lara wrote: > > Hi everybody, > > > Is it possible to install kash 2.5 in sage? I need to compute the >

[sage-support] kash 2.5 in Sage

2010-05-19 Thread Alex Lara
Hi everybody, Is it possible to install kash 2.5 in sage? I need to compute the class group of function fields, but I couldn't with kash 3. Thanks, Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+uns

Re: [sage-support] Re: power series bug?

2010-05-18 Thread Alex Ghitza
eone more familiar with the power series code will jump in at > this point. This type of thing has been noticed before (a couple of times!), see http://trac.sagemath.org/sage_trac/ticket/3979 http://trac.sagemath.org/sage_trac/ticket/5367 I guess it might be time to fix these :)

Re: [sage-support] projective duality for plane curves?

2010-04-28 Thread Alex Ghitza
hematical Monthly, vol. 115, no. 8, October 2008, pages 701--728. Otherwise, we'll hopefully get a chance to implement the general case soon. Best, Alex > UAW > > -- > To post to this group, send email to sage-support@googlegroups.com > To unsubscribe f

Re: [sage-support] projective duality for plane curves?

2010-04-27 Thread Alex Ghitza
re about? Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more

[sage-support] Re: loading a PARI script into SAGE

2010-04-24 Thread Alex P
[1]=\rcryptpr.gp; ^- sage: Same thing if I try the other command that William Stein suggested. On Apr 24, 4:21 pm, Alex P wrote: > To William Stein: Great thanks. > To John Cremona: Sorry about that, won't happen again. > > On Apr 24, 3:10 pm, William Stein wrote: > > > &

Re: [sage-support] ¡RuntimeError: Unable to determi ne branch?!

2010-04-24 Thread Alex Ghitza
> > /home/kinichi/Deb`s/sage-4.3.5-linux-32bit-debian_5.0-i686-Linux/ > local/ This is just a shot in the dark, but I think the problem might be that the directory where you put sage has a ` character in it. Can you try to rename the directory "Deb`s" to something else like

[sage-support] Re: loading a PARI script into SAGE

2010-04-24 Thread Alex P
To William Stein: Great thanks. To John Cremona: Sorry about that, won't happen again. On Apr 24, 3:10 pm, William Stein wrote: > On Fri, Apr 23, 2010 at 5:23 PM, Alex P wrote: > > Hi all, > > I was trying to use a PARI/GP script in SAGE. I tried gp('\r > > n

[sage-support] Re: loading a PARI script into SAGE

2010-04-24 Thread Alex P
oping that there is a way to do that. I guess if nothing works I can just rewrite the code in SAGE (I do not know if it will be slower or not). Alex On Apr 24, 10:25 am, John Cremona wrote: > It works to do this: > > %gp > \r file.gp > > but then you are in a separate gp se

[sage-support] loading a PARI script into SAGE

2010-04-23 Thread Alex P
Hi all, I was trying to use a PARI/GP script in SAGE. I tried gp('\r name_of_file.gp'), but SAGE said could not get the file. So is there any way to do this. 10x in advance. Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, sen

[sage-support] Weird Behavior with var('g1') and full_simplify()

2010-04-20 Thread Alex Leone
sage: g1 = var('g1') sage: g1 g1 sage: g1.full_simplify() (-1)^k*k/(4*k^2 - 1) Where is the k coming from?!! - Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For mo

Re: [sage-support] allocation in a list?

2010-04-19 Thread Alex Leone
ror: invalid syntax - Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org

Re: [sage-support] Re: reset()

2010-04-19 Thread Alex Ghitza
KeyError: 'x' But if you reset again, x is back: sage: reset sage: globals()['x'] x And everything is behaving exactly as the docstrings indicate. Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to

Re: [sage-support] Yamanouchi words

2010-04-13 Thread Alex Ghitza
I'm cc-ing this to sage-combinat-devel since they might have a better idea about this. Alex On Tue, 13 Apr 2010 21:47:09 -0700 (PDT), Drini wrote: > I'm confused about > http://www.sagemath.org/doc/reference/sage/combinat/yamanouchi.html > it's documentation for 4.3.

Re: [sage-support] strange n()

2010-04-10 Thread Alex Ghitza
... which you can figure out from the first two lines of the docstring for n, by typing n? at the Sage prompt :). Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@g

[sage-support] Re: SR + QQbar bug?

2010-04-08 Thread Alex Raichev
P.P.S. And thanks to everybody developing Sage :-) On Apr 9, 2:55 pm, Alex Raichev wrote: > P.S.  Burcin, thanks for all your work on Sage symbolics.  I > appreciate it. > > On Apr 8, 11:44 pm, Burcin Erocal wrote: > > > Hi again Alex, > > > Many thanks for the re

[sage-support] Re: SR + QQbar bug?

2010-04-08 Thread Alex Raichev
P.S. Burcin, thanks for all your work on Sage symbolics. I appreciate it. On Apr 8, 11:44 pm, Burcin Erocal wrote: > Hi again Alex, > > Many thanks for the report. > > On Wed, 7 Apr 2010 16:05:09 -0700 (PDT) > > Alex Raichev wrote: > > Hi all: > > > I

[sage-support] Re: SR + QQbar bug?

2010-04-08 Thread Alex Raichev
My vote, which is from a user's and not a developer's perspective, is to somehow coerce QQbar and AA into SR to preserve exact values and manipulate symbolic expressions such as QQbar(sqrt(2))*x. That sure would be helpful for my work. Is that problematic? Alex On Apr 8, 11:44 

[sage-support] SR bug?

2010-04-07 Thread Alex Raichev
What the? -- | Sage Version 4.3.5, Release Date: 2010-03-28 | | Type notebook() for the GUI, and license() for information.| -- sage

[sage-support] SR + QQbar bug?

2010-04-07 Thread Alex Raichev
asn't symbolics with QQbar working in previous versions of Sage, or am i mistaken? Alex -- | Sage Version 4.3.5, Release Date: 2010-03-28 | | Type notebook() for the GUI, and license() for i

[sage-support] Re: bug in Sage's interface to Singular?

2010-03-10 Thread Alex Raichev
? It appears someone has taken a look at the issue since i last reported it, because this time there's a new error. Alex -- | Sage Version 4.3.3, Release Date: 2010-02-21 | | Type notebook() for the GUI, a

Re: [sage-support] Why does my little program bring my department's server to its knees?

2010-03-03 Thread Alex Ghitza
e-4.3.3 and report on their findings. Either it will work well, which would give you a good argument to get your sysadmin to upgrade; or it will bring somebody else's server down, in which case there's probably some bug to fix. Best, Alex -- Alex Ghitza -- http://aghitza.org/

Re: [sage-support] Re: Solve fails for a cubic

2010-03-02 Thread Alex Ghitza
On Tue, 2 Mar 2010 05:27:45 -0800 (PST), Sharpie wrote: > Thanks for the reply Alex. I think I understand that by choosing a > variable of the appropriate type, in this case one that is restricted > to the real numbers, the roots can be determined in a straight-forward > manner. The

Re: [sage-support] Solve fails for a cubic

2010-03-01 Thread Alex Ghitza
33979323890405, 1)] Is this what you were hoping for? Best, Alex -- Alex Ghitza -- http://aghitza.org/ Lecturer in Mathematics -- The University of Melbourne -- Australia -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email t

Re: [sage-support] Re: sage 4.3.3 fortan compilation problem

2010-02-28 Thread Alex Ghitza
root access to this machine, I suggest that you make a symbolic link for the executable, i.e. as root do cd /usr/bin ln -s gfortran-4.3 gfortran Then try "make" again. Best, Alex On Sun, 28 Feb 2010 21:25:17 +1100, Minh Nguyen wrote: > Hi, > > On Sun, Feb 28, 2010 at 9:1

Re: [sage-support] Re: Sage Live CD (Alternativ based on Puppy Linux)

2010-02-17 Thread Alex Ghitza
eLivePupv02.iso Here is the md5sum to check if the download is ok: 359f63129d4f3993bd890e4029b4d98f I'll leave this up until a copy makes it onto the official Sage pages. Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne -- Australia -- http://www.

Re: [sage-support] Re: WTF

2010-02-17 Thread Alex Ghitza
yet been defined; did you do this on purpose to get them to fix it? * for "Divisibility of integers", you can also do something like q, r = 4357.quo_rem(3754) and get the quotient and the remainder in one go. * in "Extended gcd", I think saying "*the* values of r

Re: [sage-support] Re: sagemath installs on ubuntu karmic, but abends on simple problem

2010-02-15 Thread Alex Ghitza
released and is ready for them to > upgrade to. Note that some of the major software that does this also allows you to turn it off (I'm thinking of Firefox here). Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne -- Australia -- http://www.ms.

Re: [sage-support] sagemath installs on ubuntu karmic, but abends on simple problem

2010-02-13 Thread Alex Ghitza
from www.sagemath.org This will give you Sage 4.3.2, the latest release. Another option is to download the sources and build it yourself. Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne -- Australia -- http://www.ms.unimelb.edu.au/~aghitza/ -- To post to th

Re: [sage-support] using n.factor()

2010-02-07 Thread Alex Ghitza
) or xsrange(): sage: srange(5) [0, 1, 2, 3, 4] sage: type(srange(5)[2]) sage: for i in srange(1, 5): print i.factor() 1 2 3 2^2 Best, Alex -- Alex Ghitza -- Lecturer in Mathematics -- The University of Melbourne -- Australia -- http://www.ms.unimelb.edu.au/~aghitza/

[sage-support] Extensions of Function Fields?

2010-02-04 Thread Alex P
coming in May)? ~Alex -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org

  1   2   3   >