Ask Your Question

rijndaelxyz's profile - activity

2023-07-03 10:39:06 +0100 received badge  Popular Question (source)
2023-02-01 04:45:12 +0100 received badge  Notable Question (source)
2023-02-01 04:45:12 +0100 received badge  Popular Question (source)
2022-02-06 18:21:33 +0100 received badge  Famous Question (source)
2022-02-02 10:23:27 +0100 received badge  Famous Question (source)
2022-02-02 10:23:27 +0100 received badge  Notable Question (source)
2020-02-17 01:01:14 +0100 received badge  Popular Question (source)
2019-05-28 11:56:22 +0100 received badge  Notable Question (source)
2019-05-09 16:09:58 +0100 received badge  Famous Question (source)
2019-05-09 16:09:58 +0100 received badge  Notable Question (source)
2019-05-09 16:09:58 +0100 received badge  Popular Question (source)
2019-05-01 01:26:00 +0100 received badge  Nice Question (source)
2019-03-03 06:04:25 +0100 asked a question Defining a relationship between symbolic variables

How can I define a+b+c=1 in Sage after doing var('a','b','c')? How would I make sage remember this equation so that it substitutes that value when calculating (a+b+c)².expand() for example?

2019-03-01 07:43:34 +0100 commented answer Generate a random non-singular matrix?

What about constructing a matrix of determinant K?

2019-03-01 06:44:45 +0100 asked a question Generate a random non-singular matrix?

I do this in a loop now:

while:  
    A = random_matrix(...)  
    if(not A.is_singular()):  
        ....

But this is innefficient. How do I generate random matrices with more concrete properties in sage?

2019-01-12 08:59:02 +0100 received badge  Enlightened (source)
2019-01-10 19:26:01 +0100 received badge  Good Answer (source)
2019-01-10 19:26:00 +0100 received badge  Nice Question (source)
2019-01-10 16:34:25 +0100 received badge  Nice Answer (source)
2019-01-10 11:47:18 +0100 received badge  Self-Learner (source)
2019-01-10 11:47:18 +0100 received badge  Teacher (source)
2019-01-10 09:03:16 +0100 answered a question A way to infer multiplication?

This can be set with implicit_multiplication() function

2019-01-10 03:21:01 +0100 asked a question A way to infer multiplication?

This might be asking for too much, but is there a way to interpret 5x as 5*x when 5x is not defined as an object? It gets really cumbersome writing *'s all the time. Is there a way to do this currently or is in the plans?

2019-01-02 20:02:26 +0100 received badge  Supporter (source)
2019-01-02 20:02:20 +0100 received badge  Scholar (source)
2019-01-02 19:02:42 +0100 commented answer Kernel not found?

While A.right_kernel() returns [ 1 26 -16], it's only one possible solution from the solution set. Instead, I expect it to return c * [ 1 26 -16 ]. Any idea how to not miss out all the solutions?

2019-01-02 11:24:44 +0100 received badge  Editor (source)
2019-01-02 11:24:02 +0100 asked a question Kernel not found?

Hi. Why is no kernel found for the 2x3 matrix A=[2,3,5];[-4,2,3] ?

sage: A = matrix([[2,3,5],[-4,2,3]])  
sage: A   
[ 2  3  5]  
[-4  2  3]  
sage: A.kernel()  
Free module of degree 2 and rank 0 over Integer Ring  
Echelon basis matrix:  
[]

However we know that the kernel should be given by: x=-z/16 and y=-13z/8

2019-01-01 10:29:15 +0100 asked a question Sage Python Executable On Linux

Hi. I installed Sage from https://www.archlinux.org/packages/co... I want to use the same Python sage uses to get code completion in my editor. Where can I locate this Python?

2018-11-24 02:23:38 +0100 commented answer Installing Sagemath 8.4 on WSL Ubuntu 18.04

Also, in terms of performance would you recommend running sage in docker or in wsl or on windows with Erik's setup?

2018-11-24 02:10:13 +0100 commented answer Installing Sagemath 8.4 on WSL Ubuntu 18.04

Downloading sage-8.4-Ubuntu_18.04-x86_64.tar.bz2 and running sage directly through wsl gives a warning on every startup: /mnt/c/SageMath/local/lib/python2.7/site-packages/psutil/_pslinux.py:469: RuntimeWarning: 'sin' and 'sout' swap memory stats couldn't be determined and were set to 0 ([Errno 2] No such file or directory: '/proc/vmstat') warnings.warn(msg, RuntimeWarning) I remember on my previous machine I somehow used sage with wsl without seeing this error.

2018-11-23 23:54:27 +0100 commented question Installing Sagemath 8.4 on WSL Ubuntu 18.04

I think that might indeed be the root cause for this, but 18.04 is LTS and upgrading to 18.10 seems to be very unnecessary to install Sage8.4. Who maintains the linux packages?

2018-11-23 22:16:15 +0100 received badge  Popular Question (source)
2018-11-23 22:16:07 +0100 asked a question Installing Sagemath 8.4 on WSL Ubuntu 18.04

I've been having troubles doing this. I tried to download sources install the necessary deps and compile it from source, but make errored and I'd prefer installing sagemath otherwise too. sudo apt-get install sagemath seems like a good way to install it, however the latest version I get by doing sudo apt-get install sagemath on WSL 18.04 is sagemath 8.1-7ubuntu1. I also tried to do sudo apt-get install sagemath=8.4, but I received the following error:

E: Version '8.4' for 'sagemath' was not found.

How do I install the latest sagemath on Ubuntu 18.04 with apt-get install command?

2018-10-27 00:36:28 +0100 received badge  Good Question (source)
2018-10-08 18:07:41 +0100 received badge  Nice Question (source)
2018-10-08 00:21:27 +0100 received badge  Student (source)
2018-10-07 02:44:59 +0100 asked a question Python3 MigrationStatus

Hello. I looked at Trac , but I couldn't make out just how far we are into migrating to python3. Looks to me that most issues are closed by now. I'd appreciate quick summary from a sage developer.