[sage-support] Re: Cannot build Sage 9.8 on Ubuntu 22.04.1 LTS

2023-02-01 Thread Hyun Jong Kim
Thank you, Matthias, I disabled Anaconda, re-ran the commands to install the build prerequisites (it seems that Anaconda got in the way of installing several of these), ran `./configure`, and ran `make distclean && make build`. My computer has now successfully built Sage 9.8 Beta 7. On Monday,

[sage-support] Cannot build Sage 9.8 on Ubuntu 22.04.1 LTS

2023-01-29 Thread Hyun Jong Kim
Hello, I've been trying to build Sage 9.8 from source for development; I had previously done so months ago, but I had not been able to do rebuild Sage since pulling from the GitHub repository around late December/early January. I've deleted the previous source/build directory that I had to try

Re: [sage-support] Install error message

2019-10-30 Thread BD Kim
Thank you very much. I let the system administrator know. Best, BD On Tuesday, October 29, 2019 at 3:58:27 PM UTC+9, Dima Pasechnik wrote: > > On Tue, Oct 29, 2019 at 6:55 AM BD Kim > > wrote: > > > > I (or rather the system administrator) have installed Sage on a

[sage-support] Install error message

2019-10-28 Thread BD Kim
I (or rather the system administrator) have installed Sage on a Mac, and while trying to open Sage for the first time, I got this error message: bdkim% '/Applications/SageMath-8.9.app/Contents/Resources/sage/sage' --notebook=sagenb Rewriting paths for your new installation directory

[sage-support] Re: var() definition in finite fields

2014-10-01 Thread Kim Schoener
+ 1) is simplified to 0 if x is a variable in GF(2). Is there a way to do this or does sage lack that funcitonality? Thank you, Kim -- 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

[sage-support] var() definition in finite fields

2014-09-30 Thread Kim Schoener
get this to work the way I want it to? Thank you so much, Regards, Kim -- 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

[sage-support] Re: var() definition in finite fields

2014-09-30 Thread Kim Schoener
to convert x (=x1) to an integer. How do I define a variable in the SR that I can work with? I can't seem to figure it out from the example you gave me. Thank you, Kim Am Dienstag, 30. September 2014 17:04:10 UTC+2 schrieb Volker Braun: Anything symbolic is in the symbolic ring SR, finite field

[sage-support] Nested if statements inside sum

2010-09-03 Thread Kim
Hi, I want to make a function for a sum that has two different options for each term, depending on a condition. E.g. F(m) = sum(n=1, 10, if( m*n0, m*n+2, m*n+8)) How do I put the else if m*n0 then m*n+8 into the Sage statement: sum( m*n +2 for n in range(1,10) if m*n0 ) ? Thank you Kim

[sage-support] Summation

2009-10-08 Thread Kim, In-Jae
Hello, I was wondering how I can write the polynomial, 1+x+x^2 + ...+x^10, using summation. I tried sage: var('i,x') sage: sum(x^i, (i,0,10)), but I got the following error message: Traceback (most recent call last): File stdin, line 1, in module File

[sage-support] Re: Summation

2009-10-08 Thread Kim, In-Jae
)) --- TypeError Traceback (most recent call last) /Users/...__sage_init_sage_0.py in module() TypeError: 'sage.symbolic.expression.Expression' object is not iterable - kcrisman On Oct 8, 9:33 am, Kim, In-Jae in-jae@mnsu.edu wrote: Hello, I

[sage-support] A question regarding sage notebook

2009-10-05 Thread Kim, In-Jae
Hello, In Sage notebook, under the tilte, there are File, Action, Data, sage. If I scroll down sage, I can see gap, gp, jsmath etc. I never used this option, but I would like to know what this sage is for. Thank you. In-Jae --~--~-~--~~~---~--~~ To post to this

[sage-support] Re: A question regarding sage notebook

2009-10-05 Thread Kim, In-Jae
sage notebook Hello In-Jae, On Tue, Oct 6, 2009 at 2:16 AM, Kim, In-Jae in-jae@mnsu.edu wrote: Hello, In Sage notebook, under the tilte, there are File, Action, Data, sage. If I scroll down sage, I can see gap, gp, jsmath etc. I never used this option, but I would like to know what

[sage-support] Re: Eigenvalues and vectors in radical format

2009-09-21 Thread Kim, In-Jae
It seems that this trick does not work for eigenvectors. I would like to know an answer to Shing's question on eigenvectors. In-Jae From: sage-support@googlegroups.com [sage-supp...@googlegroups.com] On Behalf Of Marshall Hampton [hampto...@gmail.com]

[sage-support] Re: matrix with many repeated entries

2009-06-06 Thread Kim, In-Jae
and then create your matrix using this function: m = Matrix([[ f(i,j) for j in [1..20]] for i in [1..20]]) For this to work, the sets in the definition of f have to be well defined. Hope this helps Cheers Javier On Jun 4, 9:19 pm, Kim, In-Jae in-jae@mnsu.edu wrote: Thank you for your help, Jason

[sage-support] Re: matrix with many repeated entries

2009-06-06 Thread Kim, In-Jae
*(k-1)+1 = j = s*k): return 2 else: return 3 Thank you. In-Jae From: sage-support@googlegroups.com [sage-supp...@googlegroups.com] On Behalf Of Kim, In-Jae [in-jae@mnsu.edu] Sent: Saturday, June 06, 2009 10:24 AM To: sage-support

[sage-support] matrix with many repeated entries

2009-06-04 Thread Kim, In-Jae
Hello, I would like to create a matrix with many repeated entries, for example, a matrix with all entries equal to 1. How can I do this efficiently when the size of the matrix is large? In-Jae --~--~-~--~~~---~--~~ To post to this group, send email to

[sage-support] Re: matrix with many repeated entries

2009-06-04 Thread Kim, In-Jae
, 2009 1:43 PM To: sage-support@googlegroups.com Subject: [sage-support] Re: matrix with many repeated entries Kim, In-Jae wrote: Hello, I would like to create a matrix with many repeated entries, for example, a matrix with all entries equal to 1. How can I do this efficiently when the size

[sage-support] Re: matrix with many repeated entries

2009-06-04 Thread Kim, In-Jae
Sorry, I meant 20 by 20 matrix in the previous e-mail. From: sage-support@googlegroups.com [sage-supp...@googlegroups.com] On Behalf Of Kim, In-Jae [in-jae@mnsu.edu] Sent: Thursday, June 04, 2009 3:19 PM To: sage-support@googlegroups.com Subject

[sage-support] Re: unable to get SAGE working on my debian lenny machine ...

2009-05-27 Thread Kim, In-Jae
...@gmail.com] Sent: Tuesday, May 26, 2009 4:23 PM To: sage-support@googlegroups.com Subject: [sage-support] Re: unable to get SAGE working on my debian lenny machine ... On Tue, May 26, 2009 at 1:58 PM, Kim, In-Jae in-jae@mnsu.edu wrote: Where should I download sage 3.4.2 and extract the file

[sage-support] Re: unable to get SAGE working on my debian lenny machine ...

2009-05-27 Thread Kim, In-Jae
Groenewald [...@aims.ac.za] Sent: Wednesday, May 27, 2009 8:29 AM To: sage-support@googlegroups.com Subject: [sage-support] Re: unable to get SAGE working on my debian lenny machine ... Hi Kim On Wed, May 27, 2009 at 08:17:59AM -0500, Kim, In-Jae wrote: Can I get some help on this memory issue

[sage-support] Re: unable to get SAGE working on my debian lenny machine ...

2009-05-27 Thread Kim, In-Jae
@googlegroups.com [sage-supp...@googlegroups.com] On Behalf Of Johan Oudinet [johan.oudi...@gmail.com] Sent: Wednesday, May 27, 2009 5:14 PM To: sage-support@googlegroups.com Subject: [sage-support] Re: unable to get SAGE working on my debian lenny machine ... On Wed, May 27, 2009 at 4:34 PM, Kim

[sage-support] Re: unable to get SAGE working on my debian lenny machine ...

2009-05-26 Thread Kim, In-Jae
Hello William, I also have a problem of downloading sage 3.4.2 into Ubuntu (32 bit). I have been trying to install sage into Ubuntu (which was installed by VirtualBox in my laptop with Window vista OS). However, when I extract the sage files, there are some errors, saying ...No space left in

[sage-support] Re: unable to get SAGE working on my debian lenny machine ...

2009-05-26 Thread Kim, In-Jae
Of Harald Schilly [harald.schi...@gmail.com] Sent: Tuesday, May 26, 2009 3:11 PM To: sage-support Subject: [sage-support] Re: unable to get SAGE working on my debian lenny machine ... On May 26, 10:04 pm, Kim, In-Jae in-jae@mnsu.edu wrote:  However, when I extract the sage files, there are some errors

[sage-support] Re: How to compute half-weight coefficients?

2009-02-08 Thread Kim
Thank you for your help! On Feb 3, 4:25 pm, William Stein wst...@gmail.com wrote: On Tue, Feb 3, 2009 at 2:24 PM, Kim khopk...@math.utexas.edu wrote: Thank you for telling me about this function.  What do I need to put for the chi parameter  to compute a weight 5/2, level 4*13 form

[sage-support] Re: How to compute half-weight coefficients?

2009-02-03 Thread Kim
Thank you for telling me about this function. What do I need to put for the chi parameter to compute a weight 5/2, level 4*13 form? It seems 4*13 needs to be divisible by 16 --~--~-~--~~~---~--~~ To post to this group, send email to

[sage-support] How to compute half-weight coefficients?

2009-01-30 Thread Kim
of the weight 4 form are: q - 5*q^2 - 7*q^3 + 17*q^4 - 7*q^5 +... (I can get the right coefficients up to sign using the Jacobi form of weight 3 and index 13 but can't get the right signs of the coefficients this way...) Thanks, Kim --~--~-~--~~~---~--~~ To post