[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] Has Big-Endian support been deprecated yet?

2018-03-13 Thread Kim Walisch
ket (https://trac.sagemath.org/ticket/24966) to integrate my primecount library into sagemath and primecount currently only supports little-endian CPUs. I could support big-endian CPUs but I want to make sure this is required by sagemath. Thanks, Kim -- You received this message because you are subscribed to

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

2014-10-01 Thread Kim Schoener
* (x + 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

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

2014-09-30 Thread Kim Schoener
[m3, m4], ]) still results in the same error: "unable 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 schri

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

2014-09-30 Thread Kim Schoener
ch is what I'd expect. Why does it not work with variables when working in GF(2) and how can I 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 unsubsc

[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*n<0, m*n+2, m*n+8)) How do I put the "else if m*n>0 then m*n+8" into the Sage statement: sum( m*n +2 for n in range(1,10) if m*n<0

[sage-support] Re: Summation

2009-10-08 Thread Kim, In-Jae
^29 + x^28 + x^27 + x^26 + x^25 + x^24 + x^23 + x^22 + x^21 + x^20 + x^19 + x^18 + x^17 + x^16 + x^15 + x^14 + x^13 + x^12 + x^11 + x^10 + x^9 + x^8 + x^7 + x^6 + x^5 + x^4 + x^3 + x^2 + x + 1 On Thu, 2009-10-08 at 08:33 -0500, Kim, In-Jae wrote: > Hello, > > I was wondering how I can

[sage-support] Re: Summation

2009-10-08 Thread Kim, In-Jae
var('i,x') (i, x) sage: sum(x^i,(i,0,10)) --- TypeError Traceback (most recent call last) /Users/...__sage_init_sage_0.py in () TypeError: 'sage.symbolic.expression.Expression' object is not iterable - kcrisman On Oct 8, 9:33 am, "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 "", line 1, in File "/home/sage/sagenb/sage_notebook/worksheets/mat

[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 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

[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

[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] S

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

2009-06-06 Thread Kim, In-Jae
and (s*(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

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

2009-06-06 Thread Kim, In-Jae
3,..., 20]: return 3 return -1 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-J

[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: matrix with many repeated entries

2009-06-04 Thread Kim, In-Jae
ay, June 04, 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

[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-supp

[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, In

[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
...@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 wrote: > > Where should I download sage 3.4.2 and extract the file? You do no

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

2009-05-26 Thread Kim, In-Jae
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" wrote: > However, when I extract the sage files, there are some errors,

[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: How to compute half-weight coefficients?

2009-02-08 Thread Kim
Thank you for your help! On Feb 3, 4:25 pm, William Stein wrote: > On Tue, Feb 3, 2009 at 2:24 PM, Kim 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? It > > seems 4*

[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@googlegroup

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

2009-01-30 Thread Kim
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 to