[sage-support] Re: Bug in prime_powers?

2012-09-21 Thread kcrisman
On Friday, September 21, 2012 9:14:54 AM UTC-4, Peter Mueller wrote: > > In Sage 5.3, the function prime_powers behaves a little strange: > > sage: prime_powers(4,10) > [4, 5, 7, 8, 9] > # As expected > > sage: prime_powers(5,10) > [7, 8, 9] > # 5 isn't a prime power anymore??? > > # And now thin

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

2012-09-17 Thread kcrisman
On Monday, September 17, 2012 8:50:32 AM UTC-4, Jason Grout wrote: > > On 9/16/12 8:53 AM, ma...@mendelu.cz wrote: > > Solved, I have to run make to generate new *.js and *.css files. > > Exactly. I'm glad you got it up and running! > Could one of you post a (cleaned up) version of this som

[sage-support] Re: Jacobi sn

2012-09-15 Thread kcrisman
On Saturday, September 15, 2012 8:10:11 PM UTC-4, Rafael wrote: > > Hello, > > I am encountering an error when checking numerically the imaginary period > of the Jacobi sn function: > > sage: u=1.2 > sage: m=0.5 > sage: jacobi('sn',u,m) > 0.887715488619 > sage: jacobi('sn',u+2*I*elliptic_kc(1-m),

[sage-support] Re: Strange sum() result and can't be evaluated numerically

2012-09-15 Thread kcrisman
On Saturday, September 15, 2012 12:53:34 AM UTC-4, Renan Birck Pinheiro wrote: > > The command sum( ((-1)^k*(x^(2*k+1))/factorial(2*k+1)),k,0,oo) should give > sin(x) - it does in Mathematica. But in Sage it gives > > 1/2*sqrt(pi)*sqrt(2)*sqrt(x)*bessel_j(1/2, x) > > which can't be evaluated

Re: [sage-support] What's wrong with this comparison?

2012-09-12 Thread kcrisman
On Wednesday, September 12, 2012 11:36:05 AM UTC-4, William wrote: > > On Wed, Sep 12, 2012 at 8:11 AM, Jori Mantysalo > > > wrote: > > On Wed, 12 Sep 2012, Dan Drake wrote: > > > >>> sage: 0.2 + 0.1 == 0.3 > >>> False > > > > > >> using an approximation -- and after the addition, the er

Re: [sage-support] Re: Using find_fit() on lambert_w()

2012-09-07 Thread kcrisman
7;) > model = g > fit = find_fit(data, model, parameters=[a,b,c], variables=[x]) > ## > > produces > > sage: fit > [a == 1.166896678207367, b == 0.5327270673942398, c == 0.1220748294541312] > > which isn't bad. > > Nice, Doug. Do you think there i

[sage-support] Re: Using find_fit() on lambert_w()

2012-09-07 Thread kcrisman
> > > > So what do I do to make it possible using find_fit() on a model including > lambert_w()? > > Quick possible answer - since find_fit uses Scipy, perhaps we aren't translating it correctly, or maybe Scipy's Lambert W can't be used in this Scipy thing. Maybe? -- You received this messa

[sage-support] Re: Notebook evaluate fails return: OSX 10.6.8

2012-09-04 Thread kcrisman
On Tuesday, September 4, 2012 2:52:29 AM UTC-4, mazkime wrote: > > I had the same problem and deleting the 'sage_notebook.sagenb' directory > from '~/.sage/' resolved it. > Thanks for the tip. > > But note that all of your notebook files are probably in there, so don't forget the "I then just c

[sage-support] Re: Linear programming in sage

2012-08-30 Thread kcrisman
John, if you have any doc upgrades on this, *please* open a ticket and put them there! I've occasionally had to use this too, and as someone who definitely isn't that comfortable with using computers (as opposed to graphs!) to do LP, any help would be great. We don't want people reverting to

[sage-support] Re: How to remove user accounts on my school server?

2012-08-24 Thread kcrisman
On Thursday, August 23, 2012 10:57:27 PM UTC-4, P Purkayastha wrote: > > If you want a completely new set of accounts and don't want to retain any > of the old accounts, you can simply move the old sagenb directory (usually > it is DOT_SAGE/sage_notebook.sagenb) to a different backup folder in

[sage-support] Re: numerical integration problem

2012-08-07 Thread kcrisman
On Tuesday, August 7, 2012 9:40:39 AM UTC-4, uwe.schilling wrote: > > Dear all, > > I am quite new to sage and right now I'm trying to perform quite a simple > numerical integration of the following form: > > Numerical integration doesn't work this way. Here, it will try to do a FTC integrat

[sage-support] Re: Solving for real and imaginary eigenvalues

2012-08-01 Thread kcrisman
to be able to do much Sage support the next couple weeks, unfortunately, so hopefully someone else will pick up this thread :) > > On Tuesday, July 31, 2012 6:28:38 AM UTC-7, kcrisman wrote: >> >> >> >> On Monday, July 30, 2012 6:37:00 PM UTC-4, Eric Kangas w

[sage-support] Re: Solving for real and imaginary eigenvalues

2012-07-31 Thread kcrisman
On Monday, July 30, 2012 6:37:00 PM UTC-4, Eric Kangas wrote: > > Interesting that there are only 3 coefficients insterad of 4 by going > through the process you had mentioned. I originally started this project on > mathematica 6.0 student edition back in college, and I now need to recreate >

[sage-support] Re: Solving for real and imaginary eigenvalues

2012-07-27 Thread kcrisman
On Tuesday, June 26, 2012 7:11:50 AM UTC-4, Eric Kangas wrote: > > Hi, > > First of all I am using a coupled 2sd ODE. > > First step was to declare variables: > > a,l,x,y,u,v,xdot,ydot,udot,vdot = var('a,l,x,y,u,v,xdot,ydot,udot,vdot', > domain = RR) > > > Second step turn the two 2sd ODE into

[sage-support] Re: Symbolic Equations

2012-07-27 Thread kcrisman
On Friday, July 27, 2012 12:59:52 PM UTC-4, Eric Kangas wrote: > > I have posted before about it but no one responded, > https://groups.google.com/forum/#!topic/sage-support/Hw74ZEIxGfw > That is a very long thing, and doesn't have anything about plots in it. Maybe there is a different thread

[sage-support] Re: Symbolic Equations

2012-07-27 Thread kcrisman
On Friday, July 27, 2012 11:24:03 AM UTC-4, Eric Kangas wrote: > > > I have a symbolic equation that needs to be plotted. example: y |--> x^2 + > x + 1. How do I transform it into y = x^2 + x + 1 so I can be able to make > a plot? > Can you be more specific with what doesn't work? This works f

[sage-support] Re: basic question on constant of integration when using desolve

2012-07-26 Thread kcrisman
On Thursday, July 26, 2012 6:37:56 AM UTC-4, Nasser M. Abbasi wrote: > > I do not know much of anything about sage. But I was using desolve on > http://www.sagenb.org to compare an answer, > Tata! You clearly know *something* about it, or you wouldn't have done as well as you have finding st

Re: [sage-support] random problem

2012-07-26 Thread kcrisman
> > > and so on. Note that if you try to use RR (which is the same as > RealField(53)) you run into the same precision/roundoff problem as you > had before. Hence the need to increase the working precision. > > Also note that R.random_element() can only do uniform distribution, so > if you w

[sage-support] Re: Saving sws files in VirtualBox lab situation

2012-07-20 Thread kcrisman
> > >> Perhaps, but of course different places/people will have different >> comfortability levels using the cloud, especially with Google. And when >> one's not connected to the 'Net... >> > > as this is about present day students, I cannot imagine them feeling any > discomfort with the clou

[sage-support] Re: Support for Arrows in Plots

2012-07-19 Thread kcrisman
On Thursday, July 19, 2012 4:28:32 PM UTC-4, Jason Grout wrote: > > On 7/19/12 3:13 PM, kcrisman wrote: > > > > > > On Thursday, July 19, 2012 4:00:17 PM UTC-4, ObsessiveMathsFreak wrote: > > > > Upgrading to sage 5.1 did indeed fix the arrow issue.

[sage-support] Re: Support for Arrows in Plots

2012-07-19 Thread kcrisman
On Thursday, July 19, 2012 4:00:17 PM UTC-4, ObsessiveMathsFreak wrote: > > Upgrading to sage 5.1 did indeed fix the arrow issue. A note on this: In > 5.1 the default size for images is significantly larger, but this is > controllable through figsize. > > Yes, I've been noticing this all summer

[sage-support] Re: Saving sws files in VirtualBox lab situation

2012-07-19 Thread kcrisman
On Thursday, July 19, 2012 8:44:42 AM UTC-4, Volker Braun wrote: > > This was what I was thinking, too, but we need a gui to run in the web > browser to set up credentials. Which is why I'd really like a plugin system > for the notebook. If the grive instructions include "log into the console

[sage-support] Re: Saving sws files in VirtualBox lab situation

2012-07-18 Thread kcrisman
On Wednesday, July 18, 2012 3:40:41 PM UTC-4, Volker Braun wrote: > > You can just run > >VBoxManage startvm "Sage-5.0" > > from a script and it'll fire up that Virtual Machine. > > Thanks. I assume that it's not possible to have Sage start with just the one click from a pre-installed VM, a

[sage-support] Saving sws files in VirtualBox lab situation

2012-07-18 Thread kcrisman
t a little lab admin wizardry could make the VirtualBox solution nearly like having other programs to double-click. Maybe there could even be a script that opened the VirtualBox with Sage at exactly 9:55 for a 10:00 class... Thanks, - kcrisman -- To post to this group, send email to sage-suppo

[sage-support] Very weird typesetting issue

2012-07-18 Thread kcrisman
var('a,b') S1 = solve(x^3+a*x+b==0,x)[0].rhs() show(S1.expand().factor().maxima_methods().rectform()) I get the following screenshot. I can't find a way to make the output cell viewing area bigger. This is 5.0.1, but with the new notebook, on Safari. On FF I get a different, also strange, out

Re: [sage-support] least squares solutions

2012-07-16 Thread kcrisman
On Monday, July 16, 2012 5:08:34 AM UTC-4, Urs Hackstein wrote: > > Ok. I overlooked it. Thus is there an alternative to interpolate points > (x_1k,x_2k)\in\mathbb{C}x\mathbb{C} by a function f:\mathbb{C}\to\mathbb{C}? > > I don't know whether http://www.sagemath.org/doc/reference/sage/calculus

[sage-support] Re: Ploting an arc and shading the area within the arc using Sage

2012-07-10 Thread kcrisman
You may find http://sagemath.org/doc/reference/sage/plot/graphics.html#sage.plot.graphics.Graphics.show and the stuff about legends, text, etc. Read the doc carefully - there are a lot of examples! On Tuesday, July 10, 2012 7:41:34 AM UTC-4, The Doctor (Michael) wrote: > > Thanks for the hel

[sage-support] Re: dirac delta function

2012-07-02 Thread kcrisman
On Sunday, July 1, 2012 3:39:15 AM UTC-4, Slumberland wrote: > > Thanks for all the help! > > One last concern, then *ticket*: > > {Yes! I will move all future questions of this kind to the devel/ group!} > > > In a series of symbolic calculations, if I can redefine the answers to > > >-is th

[sage-support] Re: Issues with adding color to plots.

2012-06-30 Thread kcrisman
ll help get used to these subtleties - I like http://www.greenteapress.com/thinkpython/ though others will have their favorites. Good luck! - kcrisman On Saturday, June 30, 2012 6:43:40 PM UTC-4, Eric Kangas wrote: > > > > a = [i/pi for i in range(79)] > > colors = rainbow(len(a

[sage-support] Re: Graph editor not working in 5.0.1?

2012-06-29 Thread kcrisman
On Friday, June 29, 2012 11:34:47 AM UTC-4, Jason Grout wrote: > > On 6/29/12 10:33 AM, kcrisman wrote: > > I'm having trouble on Mac (FF and Safari) getting the graph_editor() to > > work. It loads, but clicking does not create points. Any ideas? Maybe I > > did

Re: [sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-29 Thread kcrisman
> > > I also tried executing > > gap._eval(, allow_use_file=False) > > Just gap.eval, I think. > in the notebook, both under sage (which I thought would be correct) and > under gap, and both reported back syntax > errors and did not work. > > > -- To post to this group, send email

[sage-support] Graph editor not working in 5.0.1?

2012-06-29 Thread kcrisman
I'm having trouble on Mac (FF and Safari) getting the graph_editor() to work. It loads, but clicking does not create points. Any ideas? Maybe I did something wrong. I didn't see a Trac ticket about this. http://trac.sagemath.org/sage_trac/ticket/8222 seems unrelated, and indeed untouched

Re: [sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-29 Thread kcrisman
Just to clarify, Ivan means that at the top of the worksheet you could do %auto gap._eval_using_file_cutoff = 1000 Of course, you'd have to be in "sage" evaluation mode to do this, not "gap". This might be a good workaround. Another possible workaround might also be to just indent less, though

Re: [sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-29 Thread kcrisman
On Friday, June 29, 2012 5:42:14 AM UTC-4, Ivan Andrus wrote: > > There are two ways that sage sends data to GAP. The first is to send it > line by line, and the second is to send it via a file. This last is used > when there is a lot of data because, IIRC, it's faster. However, this > mess

[sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-28 Thread kcrisman
> > > gap.eval(str,newlines=False) > > gives the correct answer. Now the question is, why? > > Never mind, I had a typo, so the newlines isn't the issue. Anyway, the question is definitely "why"! - kcrisman -- To post to this group, send email

[sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-28 Thread kcrisman
On Thursday, June 28, 2012 10:39:01 PM UTC-4, kcrisman wrote: > > Hi Walter! > > On Thursday, June 28, 2012 8:11:55 PM UTC-4, Walter Carlip wrote: >> >> I am having trouble using Gap within Sage. Often things fail to print or >> to work from Sage even though they

[sage-support] Re: Gap does not seem to work correctly inside Sage! Help!

2012-06-28 Thread kcrisman
2 . I feel like I've seen this before as well in the lists, but can't quite find it yet. #5043 and #3152 are conceivably, but unlikely to be, related. I'll keep looking. - kcrisman -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this g

[sage-support] Re: sage repository address

2012-06-28 Thread kcrisman
ated in four places in the Sage source. $SAGE_ROOT $SAGE_ROOT/local/bin $SAGE_ROOT/devel/sage $SAGE_ROOT/data/extcode Mercurial usage is pretty well documented throughout the developer guide. - kcrisman -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group

[sage-support] Re: change the default viewpoint in a 3D plot?

2012-06-28 Thread kcrisman
Maybe the tachyon interface has examples? Unfortunately, these keywords only work in show. See http://trac.sagemath.org/sage_trac/ticket/9708 If someone knows even easier ways of doing these things, though, or is interested in documenting this better () we'd be all ears! - kcrisman --

Re: [sage-support] The future of Mathematica?

2012-06-26 Thread kcrisman
> > > > As for information being free I wouldn't > > mind gaining access to a database, and adding to it on my spare time > without > > getting paid so we can keep it free. > > And exactly how do you expect WRI to keep up the quality if anyone can > add to it? It's obvious they have spent a l

[sage-support] Re: dirac delta function

2012-06-26 Thread kcrisman
ew" > status. > > Feel free to ask for assistance at any time. The best places to do so > are on sage-devel (not sage-support please) or in the IRC channel > (#sagemath on irc.freenode.net). > Yup, and once you've created the ticket, please feel free to put kcrisman

[sage-support] Re: How do I download SAGE?

2012-06-25 Thread kcrisman
> There should be a page with *step-by-step instructions,* with screenshots. Each step that is necessary for the installation, is necessary. The more time consuming and unpleasant such documentation might seem to be. . . well, the answer's in the question. http://boxen.math.washington.edu/h

Re: [sage-support] dirac delta function

2012-06-25 Thread kcrisman
On Monday, June 25, 2012 11:06:28 AM UTC-4, kcrisman wrote: > > > > On Sunday, June 24, 2012 11:00:48 PM UTC-4, Slumberland wrote: >> >> I don't think Sage knows what it is doing with the dirac_delta. Since it >> *thinks* it does, does this qualify as a bug

Re: [sage-support] dirac delta function

2012-06-25 Thread kcrisman
On Sunday, June 24, 2012 11:00:48 PM UTC-4, Slumberland wrote: > > I don't think Sage knows what it is doing with the dirac_delta. Since it > *thinks* it does, does this qualify as a bug? > > For example, Sage is quite happy to return an answer to > sage: f = dirac_delta(x) > sage: n(integrate

[sage-support] Re: images in published worksheets when not logged in

2012-06-19 Thread kcrisman
On Friday, June 15, 2012 9:05:43 PM UTC-4, kcrisman wrote: > > Has anyone noticed that sometimes published worksheets with images in the > TinyMCE have the images not show up when viewing them? For instance, see > http://sage.maa.org/home/pub/2/ where I can't see any wi

[sage-support] images in published worksheets when not logged in

2012-06-15 Thread kcrisman
t heard of this problem before, and this server hasn't changed in a while. Thanks for any ideas! - kcrisman -- 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

[sage-support] Re: Sage Math and Accessibility

2012-06-14 Thread kcrisman
On Thursday, June 14, 2012 5:18:53 PM UTC-4, Volker Braun wrote: > > On Thursday, June 14, 2012 10:06:12 PM UTC+1, Keshav Kini wrote: >> >> Another reason to use the user's browser to connect to a server on the >> VM, rather than launching a browser inside the VM. > > > Presumably thats what sh

[sage-support] Re: Sage Math and Accessibility

2012-06-14 Thread kcrisman
I'm not sure if she tried it. Should I ask her for more feedback? - kcrisman On Thursday, June 14, 2012 2:45:21 PM UTC-4, William wrote: > > Hi, > > Does anybody have any thoughts about how to answer this? > > William > > > > > Dear Mr. Stein, > > I

[sage-support] Re: user interface

2012-06-12 Thread kcrisman
> > Do you know about %edit? Just type %edit on the command line, and it will open a temporary file in an editor where you can craft a method, class, or whatever. When you save the temporary file and quit the editor, Sage will load the file into the interpreter and then dele

[sage-support] Re: user interface

2012-06-12 Thread kcrisman
On Tuesday, June 12, 2012 12:06:11 PM UTC-4, Keshav Kini wrote: > > Chris Hall writes: > > The command line is great when I have a few quick commands, but I find > it > > painful for developing multi-line methods (i.e. 'coding'). > > Do you know about %edit? Just type %edit on the command li

Re: [sage-support] Crash report: integral of ln(1+4/5*sin(x)) crashes Maxima and Sage

2012-06-08 Thread kcrisman
I get the same problem as well. > So we should look between 5.0.beta2 and 5.0.beta3, I guess. > > Merged in sage-5.0.beta3: #7509: William Stein, Wilfried Huss: notebook -- make it possible to debug Python code in the notebook, e.g., something like pdb that works in the notebook [Reviewed b

Re: [sage-support] Crash report: integral of ln(1+4/5*sin(x)) crashes Maxima and Sage

2012-06-07 Thread kcrisman
> > > > Is Maxima used as a library, or used with pexpect? I've lost track. > > For this kind of thing, should be library. -- 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 opt

Re: [sage-support] Crash report: integral of ln(1+4/5*sin(x)) crashes Maxima and Sage

2012-06-07 Thread kcrisman
On Thursday, June 7, 2012 8:21:01 PM UTC-4, Justin C. Walker wrote: > > > On Jun 7, 2012, at 14:13 , Benjamin Jones wrote: > > > On Mac OS X 10.6.8 intel core i7 and sage-5.0 (also sage-5.1.beta2) I > can > > crash sage (and Maxima) by evaluating: > > > > sage: integrate(ln(1+4/5*sin(x)), x,

[sage-support] Flask notebook can't run Chrome as root error

2012-06-07 Thread kcrisman
you're running this on has Chrome as the default browser 2) You installed Sage, or are running it, as root 3) For some reason it's trying to open a browser automatically. The server should still work... Thanks! - kcrisman The second step of the sage 5 upgrade, I guess you would call i

[sage-support] Re: vector field question

2012-06-05 Thread kcrisman
On Tuesday, June 5, 2012 10:09:18 AM UTC-4, Jason Grout wrote: > > On 6/5/12 9:03 AM, kcrisman wrote: > > > Cool. Is this a "standard" enough thing to take discrete data and get a > > contour plot that we should wrap this (perhaps overloading > contour_plo

[sage-support] Re: vector field question

2012-06-05 Thread kcrisman
On Monday, June 4, 2012 9:13:03 PM UTC-4, Jason Grout wrote: > > On 6/4/12 7:15 PM, Dan Aldrich wrote: > > Well, I spoke too soon. I can plot the matrix, but not contour_plot it. > > > > V = matrix([ > > [0.020, 0.020, 0.016, 0.014, 0.011, 0.011], > > [0.021, 0.018, 0.016, 0.013, 0.010, 0.01

[sage-support] Re: MathML -> Sage

2012-06-05 Thread kcrisman
On Tuesday, June 5, 2012 8:40:10 AM UTC-4, MathLynx wrote: > > This needs to have its own thread. > > Thanks; I thought I had done that, but somehow it just changed the title, but not the thread. Do you have a website you can link to? Also, as Robert pointed out, just putting any (even unfini

[sage-support] MathML

2012-06-04 Thread kcrisman
ml.py, and maybe the "old" stuff should too. See http://trac.sagemath.org/sage_trac/browser/sage/interfaces/r.py or other files in sage/interfaces, especially the def _sage_(self): methods. If some students helped, so much the better - we love having new contributors and helping st

[sage-support] Re: Latex tick labels in plot

2012-06-01 Thread kcrisman
On Friday, June 1, 2012 4:55:39 PM UTC-4, ObsessiveMathsFreak wrote: > > Sorry about the replys above. This new Google groups interface is really > confusing. > > Agreed! > Anyway, I coded up a plot_labels function to make adding labels to plots a > little more modular. > > The function ba

[sage-support] Re: Latex tick labels in plot

2012-06-01 Thread kcrisman
w to then use such a formatter. [1] http://matplotlib.sourceforge.net/api/ticker_api.html#matplotlib.ticker.FuncFormatter [2] http://sagemath.org/doc/reference/sage/plot/graphics.html - kcrisman -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Segfault with floats on new Mac processor

2012-05-24 Thread kcrisman
>From http://ask.sagemath.org/question/346/float-numbers-error +++ Same Problem: While running sage with gdb: sage: a = 2.0 sage: b = 2.5 Program received signal EXC_BAD_INSTRUCTION, Illegal instruction/operand. 0x0001016e3ed9 in case1 () Version: sage-5.0-OSX-64bit-10.6-x86_64-Darwin

[sage-support] Re: How do I download SAGE?

2012-05-22 Thread kcrisman
ike that would be helpful too. Presumably similar in Linux, though perhaps (?) those users would be expected to know more along those lines. - kcrisman > > On Tuesday, May 22, 2012 10:52:23 AM UTC-4, kcrisman wrote: >> >> I was introducing some folks to downloading Sage on W

[sage-support] Re: How do I download SAGE?

2012-05-22 Thread kcrisman
I was introducing some folks to downloading Sage on Windows the other day, and I think that this particular workflow is proving to be confusing to more than just Mr. Rose. I wonder if there isn't some better way of putting very prominent instructions BEFORE the big list of mirrors, especially

Re: [sage-support] Re: Sage 5.0 crashing, is unusable

2012-05-19 Thread kcrisman
> > > here is a fix: > in SAGE_ROOT (the directiry where Sage startup script, called sage, is), > run > ./sage -f > http://boxen.math.washington.edu/home/jdemeyer/spkg/mpir-2.4.0.p4.spkg > this will install a patched MPIR spkg. > > I get an interesting warning when doing this on a similar machi

Re: [sage-support] Re: run sage directly from terminal

2012-05-18 Thread kcrisman
On Friday, May 18, 2012 2:49:49 PM UTC-4, arshpreet singh wrote: > > > If you just append the right directory to your PATH in a .bashrc or > .profile > > that should work. I have > > > > export PATH=$PATH:'/Applications/MathApps/' > > > > (which is where I create a symbolic link to my Sage

[sage-support] Re: run sage directly from terminal

2012-05-18 Thread kcrisman
> > > i want to run sage directly from terminal by typing sage so for this i > changed the SAGE_ROOT path in sage script and placed it to > /usr/local/bin but after typing sage in terminal i am getting the > following output.please help to reply this > > If you just append the right directory

Re: [sage-support] Re: Sage 5.0 crashing, is unusable

2012-05-18 Thread kcrisman
How hard would it be for someone to bdist an app and non-app dmg of Sage 5.0 for Intel Core Duo and then just make sure the download page makes this clear? This would be a good stopgap solution. Presumably others might download it and then just decide not to bother getting it once it causes

[sage-support] Re: Problem with OS X 10.4 binary

2012-05-17 Thread kcrisman
Could this also be part of the SAGE_FAT_BINARY problem with MPIR? Very naive question. On Thursday, May 17, 2012 5:16:08 PM UTC-4, kcrisman wrote: > > ImportError: > dlopen(/Users/crisman/Desktop/Sage-5.0-OSX-32bit-10.4.app/Contents/Resources/sage/local/lib/python2.7/site-packages/

[sage-support] Problem with OS X 10.4 binary

2012-05-17 Thread kcrisman
quot;$@" logout [Process completed] This is a 1.25 GHz PowerPC G4: new-host:~ crisman$ uname -a Darwin new-host.home 8.11.0 Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC Power Macintosh powerpc Is it possible the binaries were built on a newer

Re: [sage-support] Re: Sage 5.0 crashing, is unusable

2012-05-17 Thread kcrisman
On Thursday, May 17, 2012 12:08:55 AM UTC-4, Volker Braun wrote: > > This is now http://trac.sagemath.org/sage_trac/ticket/12954 > > If somebody has the spkg/logs/mpfr-3.1.0.p1.log from within the dmg, > please attach it to the ticket. My connection here is too slow to download > it. > Volker,

[sage-support] Re: Integration issue

2012-05-17 Thread kcrisman
> > >>> > Yes, it does. Our assumptions go through Maxima, and apparently assuming > a variable is complex does the job. > > sage: a = integrate(x*cos(x^3),(x,0,0.5)).n() > sage: assume(x,'complex') > sage: b = integrate(x*cos(x^3),(x,0,0.5)).n() > sage: assumptions() > [x is complex] > Actuall

[sage-support] Re: Integration issue

2012-05-17 Thread kcrisman
On Thursday, May 17, 2012 1:52:38 AM UTC-4, ketchers wrote: > > > > > I don't know how to get sage to understand "domain : complex" so I tried > with assume and here is what happened. Does it make sense? > > >> Yes, it does. Our assumptions go through Maxima, and apparently assuming a variabl

[sage-support] Re: Integration issue

2012-05-15 Thread kcrisman
On Tuesday, May 15, 2012 10:27:17 PM UTC-4, Jason Grout wrote: > > On 5/15/12 9:17 PM, Keshav Kini wrote: > > plot(x^2, (0, 1)) > > I definitely think that should give a deprecation warning (I think I've > been advocating for that to give a deprecation warning for a long time). > For exampl

Re: [sage-support] Digest for sage-support@googlegroups.com - 25 Messages in 4 Topics

2012-05-15 Thread kcrisman
Bonjour Monsieur, > je suis nouveau avec le logiciel sage, actuellement j'essaye d'installer > la version sage-4.8 sur Ubuntu 12.04 mais j'y arrive pas, s'il vous plait > aider moi à faire cette installation. > merci. Can one of our French-speaking folks help this gentleman? We already have

[sage-support] Re: Integration issue

2012-05-15 Thread kcrisman
> > (%i3) domain:complex; > > > > (%o3) complex > > (%i4) integrate(x*cos(x^3),x,0,1/2); > > > > (%o4) > > gamma_incomplete(2/3,%i/8)/6+gamma_incomplete(2/3,-%i/8)/6-gamma(2/3)/3 > > Hmm. I get a different result. I am using the current Git version. > > Great, I didn't realize some code

[sage-support] Re: Integration issue

2012-05-15 Thread kcrisman
n warning? > The same reason that plot and integral don't, because we're not "calling" them in the same way. It makes sense to integrate symbolic expressions and to plot them. It's true that we need to unify our integration command syntax (see http://tra

[sage-support] Re: Integration issue

2012-05-15 Thread kcrisman
> > It may be "branch cut strangeness", but if so it is very strange. The > > integrand is clearly well-behaved, and the integral, > > while in terms of the incomplete gamma function, seems to be off the > usual > > branch cut (negative real axis). > > Try domain:complex before calling inte

[sage-support] Re: Integration issue

2012-05-14 Thread kcrisman
s if there is one - just wanted to make sure this was opened. - kcrisman On Sunday, May 13, 2012 11:46:41 PM UTC-4, ketchers wrote: > > Sage returns negative value for the integral of a positive function > x*cos(x^3) on (0,0.5), if I use abs(cos(x^3))*x, then it gets it correct?

[sage-support] Re: Components of Points

2012-05-12 Thread kcrisman
On Saturday, May 12, 2012 4:01:11 PM UTC-4, Johan Grönqvist wrote: > > 2012-05-12 21:54, raman kurdi skrev: > > Hi, > > I need a command which separate the components of points. For example > > let P=(2,4). > > I need the first component of this point. > > Could you please help me? > > > >

Re: [sage-support] Re: error in comparison of pi

2012-05-11 Thread kcrisman
On Friday, May 11, 2012 3:34:26 PM UTC-4, Robert Bradshaw wrote: > > Did we ever decide on a standard label for mathematically incorrect > results? This shouldn't drop under the radar. > > There is the "stopgap" terminology, but that's not what we called the incorrect result, that's for the s

Re: [sage-support] Re: Discrepancy in assumptions and assume

2012-05-11 Thread kcrisman
On Friday, May 11, 2012 11:49:31 AM UTC-4, Michael Orlitzky wrote: > > On 05/11/12 09:23, kcrisman wrote: > > > > I've updated the ticket with this. There is still some discussion > > there, a year old, about nested expressions... once again, the perfect >

[sage-support] Re: Discrepancy in assumptions and assume

2012-05-11 Thread kcrisman
nested expressions... once again, the perfect has become the enemy of fixing at all. - kcrisman -- 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

[sage-support] Re: Discrepancy in assumptions and assume

2012-05-10 Thread kcrisman
On Thursday, May 10, 2012 7:14:01 PM UTC-4, John H Palmieri wrote: > > > > On Thursday, May 10, 2012 2:41:07 PM UTC-7, Duc Trung Ha wrote: >> >> Hola, >> >> would anybody be so kind and explain to me the mechanism behind >> "assume(sth)"? >> > > The mechanism seems to be broken. Actually, the me

[sage-support] Re: Adding constants to the legend

2012-05-04 Thread kcrisman
On Friday, May 4, 2012 3:06:34 PM UTC-4, Jason Grout wrote: > > On 5/4/12 1:50 PM, Michael Orlitzky wrote: > > Is there a smarter way to add (un-plotted) constants to the legend? > > Right now I'm just plotting them with linestyle="None". > > I think that's probably the best way right now. I'

[sage-support] Re: Call for Papers: Symbolic computation with Sage in mathematical education and research

2012-04-19 Thread kcrisman
Given that it claims to be about both research and education usage, I'm forwarding this to the other relevant Google groups. Nice find! On Thursday, April 19, 2012 2:11:19 PM UTC-4, LFS wrote: > > Hopefully doing this correctly since not exactly a "question". Just wanted > to make sure this gro

[sage-support] Re: implicit_plot3d question-problem

2012-04-16 Thread kcrisman
On Monday, April 16, 2012 12:15:20 PM UTC-4, LFS wrote: > > Hiya. Probably I have either done something wrong or this is a precision > issue I should know about if I programmed. Please excuse. > http://sagenb.org/home/pub/4706 > > I wanted to plot the level curves of a f(x,y,z)=sqrt(x^2-z) for C

[sage-support] Re: to_poly_solve inconsistency for periodic functions

2012-04-16 Thread kcrisman
On Sunday, April 15, 2012 5:09:59 PM UTC-4, Duc Trung Ha wrote: > > OK, I WILL try & strive to do my best... > > BTW By "Maxima list" is meant Maxima Google support group or something > else? > They have their own sourceforge list. http://www.math.utexas.edu/mailman/listinfo/maxima -- To po

[sage-support] Re: to_poly_solve inconsistency for periodic functions

2012-04-10 Thread kcrisman
On Saturday, April 7, 2012 1:49:22 PM UTC-4, Duc Trung Ha wrote: > > Hola, > > I was wondering about following eerie behavior of "solve" function: > > On the one hand, "force" value of "to_poly_solve" option seems to be more > powerful as for periodicity

[sage-support] Re: sagetex question

2012-04-03 Thread kcrisman
On Tuesday, April 3, 2012 10:14:01 PM UTC-4, Jason Grout wrote: > > On 4/3/12 8:35 PM, kcrisman wrote: > > > > > > On Friday, March 30, 2012 9:45:21 PM UTC-4, Dan Drake wrote: > > > > On Fri, 30 Mar 2012 at 11:24AM -0700, Tom Judson wrote: > >

[sage-support] Re: contour_plot region option

2012-04-03 Thread kcrisman
oad the patch (attach the patch to the > trac) > > Please CC me on the ticket (username is jason). > and me (username kcrisman). > -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googl

[sage-support] Re: Bug in list_plot3d?

2012-04-03 Thread kcrisman
On Sunday, April 1, 2012 3:56:41 AM UTC-4, P Purkayastha wrote: > > If I plot 2 points using list_plot3d, then they are correctly joined by a > line. If I increase the number of points to 3, then I don't get a plane and > instead get a bizarre shape with a "floor" suddenly appearing out of > n

Re: [sage-support] sagetex question

2012-04-03 Thread kcrisman
On Friday, March 30, 2012 9:45:21 PM UTC-4, Dan Drake wrote: > > On Fri, 30 Mar 2012 at 11:24AM -0700, Tom Judson wrote: > > I have a question about sagetex. Is it possible to run sagetex if you > are > > using a remote server as opposed to a local copy of sage. I run sagetex > > locally on

[sage-support] Re: Integration bug?

2012-03-29 Thread kcrisman
On Tuesday, March 27, 2012 4:25:48 PM UTC-4, david.guichard wrote: > > I've tried this on my 4.6 sage and on 5.0 beta; the main sagenb.org is > not returning calculations for me. Both 4.6 and 5.0 have the same error. > This double integral calculation is correct: > > var("r t") > f=integral(sq

[sage-support] Re: Weird behaviour in integrate code

2012-03-27 Thread kcrisman
> > > This seems to be promising, except that minus needs to be replaced by > -Infinity, and then I get an error message relating to the limit function. > > > ValueError: call the limit function like this, e.g. limit(expr, x=2). > > I've also confirmed that the _limit_latex() error *IS* related t

[sage-support] Re: Weird behaviour in integrate code

2012-03-22 Thread kcrisman
On Thursday, March 22, 2012 5:46:58 AM UTC-4, ancienthart wrote: > > On Wednesday, 21 March 2012 22:42:16 UTC+10, kcrisman wrote: >> >> >>> fracintegral(x,1/2) >>>> >>> >>>> >>> 4/15*x^(5/2)/sqrt(pi) >>>>> >

[sage-support] Re: Weird behaviour in integrate code

2012-03-21 Thread kcrisman
> > > fracintegral(x,1/2) >> > >> > 4/15*x^(5/2)/sqrt(pi) >>> >>> > Though you should get a deprecation error. > But when I try it on exponentials or trigonometric functions, I get the > following weird error. > > > fracintegral(sin(x),1/2) >> > >> > I can't reproduce this. > But if I t

[sage-support] Re: sage server in OS 10.6

2012-03-16 Thread kcrisman
On Mar 16, 7:11 pm, Mike OS wrote: > Jason and Dan, > > Thank you for the info and suggestions.  It took a while, but we got > it running. > > One thing that I'm experiencing seems odd. > I created an account,  logged in, made a worksheet. > > When I save and quit the worksheet, I go back to my

[sage-support] Re: Excluding range from plot

2012-03-16 Thread kcrisman
On Mar 16, 9:20 am, Anthony Wickstead wrote: > But in your example the first range is empty. I changed the exclude value to > [1..2,3..4] and again the first interval is fine and the second wrong. Good point, I changed everything else to avoid the pi but not that! Hmm, maybe that's a clue...

[sage-support] Re: Excluding range from plot

2012-03-16 Thread kcrisman
/sage_trac/ticket/12676. Hopefully it's just something easy to fix with the exclude code. - kcrisman -- 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

[sage-support] Re: Legend label problem

2012-03-09 Thread kcrisman
On Mar 9, 5:17 pm, "D. S. McNeil" wrote: > This seems to work on test.sagenb.org (5.0.beta1) and the 5.0.beta4 I > have around, so something (whether Sage-side or matplotlib-side) must Confirmed that it doesn't work on sagenb.org (4.8) but does on test.sagenb.org, so it's presumably related to

<    2   3   4   5   6   7   8   9   10   11   >