[sage-support] Dvorak Keyboard

2008-09-19 Thread Q
I am running VMware Sage on my Windows box, is there a way to change the keyboard layout that Sage uses from Qwerty to Dvorak? Or would it be located somewhere in the VMware Player software? Or should I just convert to Linux? Thanks, David --~--~-~--~~~---~--~~ To

[sage-support] Re: Dvorak Keyboard

2008-09-19 Thread Q
sudo dpkg-reconfigure console-setup worked great, problem sloved thanks for the help. David On Sep 19, 7:36 pm, Q <[EMAIL PROTECTED]> wrote: > I am running VMware Sage on my Windows box, is there a way to change > the keyboard layout that Sage uses from Qwerty to Dvorak? Or w

[sage-support] AttributeError: object has no attribute 'eigenvalues'

2009-11-04 Thread q
I was trying to find the eigenvalues of a matrix. I tried the example from the tutorial (http://www.sagemath.org/doc/ tutorial/tour_linalg.html): sage: A = matrix([[0, 4], [-1, 0]]) sage: A.eigenvalues () And I got this error: "AttributeError: 'sage.matrix.matrix_integer_dense.Matrix_integer_de

[sage-support] Re: AttributeError: object has no attribute 'eigenvalues'

2009-11-05 Thread q
Thanks for the replies everyone. I tried it, and as someone mentioned, the space between eigenvalues and () doesn't make a difference. So I tried updating. I installed the binary distribution, but got the "Illegal instruction" error at startup. So I tried the rm spkg/installed/mpir* spkg/instal

Re: [sage-support] Re: Does SageMath work on Mac OS 10.14.6

2020-02-25 Thread Fernando Q. Gouvea
77b-83fa-40f3-9687-15bd18c0cf32%40googlegroups.com?utm_medium=email&utm_source=footer>. -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea What precisely is p

Re: [sage-support] Re: naive question

2020-03-09 Thread Fernando Q. Gouvea
regards, Simon -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea Don't you feel more like you do now than you did when you came

[sage-support] integrating sin(t)/t

2020-09-28 Thread Fernando Q. Gouvea
0,10) gives the same answer. Fernando -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea The object of opening the mind, as of opening the mouth, is to shut

[sage-support] Windows install problems

2021-03-12 Thread Fernando Q. Gouvea
ing on? Thanks, Fernando -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea It has just been discovere

Re: [sage-support] Windows install problems

2021-03-15 Thread Fernando Q. Gouvea
mentioned SageMath 9.2) - if you had a previous working SageMath on the same machine Best Vincent Le 12/03/2021 à 21:01, Fernando Q. Gouvea a écrit : I have installed Sage on lots of windows machines using the prepared binary, but this time I'm having trouble. The installation seems to run

[sage-support] Sage 9.3 for Windows crashing

2021-09-22 Thread Fernando Q. Gouvea
Fernando -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea Humility engenders learning because it beats back the arrogance that puts blinders on. It leaves you open for

[sage-support] another "how to simplify" question

2021-12-08 Thread Fernando Q. Gouvea
- 2*(-1)^(1/4))*e^(-I) == -1/2*cos(1) + 1/2 Thanks, Fernando -- ====== Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fq

Re: [sage-support] another "how to simplify" question

2021-12-08 Thread Fernando Q. Gouvea
True sage: wrong.imag() 0 On Wed, Dec 8, 2021 at 10:07 AM Fernando Q. Gouvea wrote: I was showing my students a famous calculus example of an integral that can be computed in one order of the variables but not in the other. Knowing that SageMath can compute anything, th

Re: [sage-support] another "how to simplify" question

2021-12-08 Thread Fernando Q. Gouvea
I see. So the difference between this and, say, 1+1==2 (which returns True) is that 1+1 and 2 are numbers, not symbolic things. Fernando On 12/8/2021 3:37 PM, William Stein wrote: On Wed, Dec 8, 2021 at 12:22 PM Fernando Q. Gouvea wrote: Thank you, that works. What is strange is

[sage-support] plotting tangent vectors to a curve

2022-04-08 Thread Fernando Q. Gouvea
nando -- == Fernando Q. Gouvea Carter Professor of Mathematics Colby College Mayflower Hill 5836 Waterville, ME 04901 fqgou...@colby.edu http://www.colby.edu/~fqgouvea No matter where you stand, no matter how far or fast you flee, when it hits the fan, as much as possible will be propelled in

[sage-support] limitations of "solve"?

2023-11-28 Thread Fernando Q. Gouvea
e constraint equation 5x^2 + 6y=120 is easily solved for y... Questions: 1) Shouldn't SageCell output an empty list here? 2) Is this a known limitation of "solve"? Fernando PS: It seems that if I add "algorithm='sympy'" then solutions are found. -- =

[sage-support] Re: limitations of "solve"?

2023-11-28 Thread Fernando Q. Gouvea
3 10:36 AM, Fernando Q. Gouvea wrote: Yesterday I was demonstrating to my calculus class Sage's ability to implement the method of Lagrange multipliers. I used a standard example, putting the following code into SageMath Cell: var('x,y,l') f(x,y)=10*x^(1/3)*y^(2/3) g(x,y)=5*x-6*y