Ask Your Question

aurelius_nero's profile - activity

2023-10-01 12:08:09 +0200 received badge  Notable Question (source)
2023-09-29 07:55:49 +0200 received badge  Popular Question (source)
2023-09-12 13:43:05 +0200 received badge  Famous Question (source)
2022-07-12 11:33:49 +0200 received badge  Notable Question (source)
2022-07-12 11:33:49 +0200 received badge  Popular Question (source)
2022-07-04 09:09:55 +0200 commented question How do I integrate sagemath with Intel one-api ?

@slelievre Like how do I make sagemath work using intel one api's version of python ?

2022-07-02 13:10:41 +0200 asked a question How do I integrate sagemath with Intel one-api ?

How do I intergrate sagemath with Intel one-api ? Bonjour, I am trying to integrate intel one api with sagemath. I get

2022-05-12 00:11:57 +0200 asked a question Problems updating sagemath with new Fedora 36

Problems updating sagemath with new Fedora 36 Hi there is a problem updating sagemath with the new Fedora 36 The FULL er

2022-04-06 23:22:30 +0200 commented question Problem with sage after installing intel OneAPI

@Emmanuel Charpentier They would not be able to reproduce my problem unless they install the Intel OneAPI Python compile

2022-04-06 22:35:24 +0200 received badge  Self-Learner (source)
2022-04-06 18:58:52 +0200 marked best answer Problem with sage after installing intel OneAPI

Hi all, I get this error after I installed intel's oneapi. How do I solve or fix this error ?

Thanks

image description

2022-04-06 18:58:48 +0200 answered a question Problem with sage after installing intel OneAPI

I solved my problem by uninstalling the Intel OneAPI Python compiler by following the instructions from here: uninstal

2022-04-06 18:01:26 +0200 received badge  Organizer (source)
2022-04-06 11:51:33 +0200 asked a question Problem with sage after installing intel OneAPI

Problem with sage after installing intel OneAPI Hi all, I get this error after I installed intel's oneapi. How do I solv

2022-01-24 01:23:58 +0200 marked best answer installation of sage on an apple m1 for a mac newbie

Hi guys, How do I go about installing sage on an Apple Macbook Pro with an M1 Pro chip (2021)

Thank you

2022-01-23 19:42:24 +0200 asked a question installation of sage on an apple m1 for a mac newbie

installation of sage on an apple m1 for a mac newbie Hi guys, How do I go about installing sage on an Apple Macbook Pro

2022-01-01 06:49:44 +0200 received badge  Self-Learner (source)
2022-01-01 06:49:44 +0200 received badge  Teacher (source)
2021-12-31 23:23:30 +0200 answered a question solving simultaneous equations trouble using solve()

For all those interested I have manged to do what I wanted using sympy. sage: var('x1,x2,x3,w1,w2,w3') sage: f=w1+w2+

2021-12-31 22:17:03 +0200 commented answer solving simultaneous equations trouble using solve()

How do I even use any of this ? 1) what is the R.gens() 2) what is the R.ideal ? 3) what is I.variety ? 4) isn't there

2021-12-31 20:09:06 +0200 commented question solving simultaneous equations trouble using solve()

@FrédéricC I am not sure how to do so. Could you elaborate a little more ?

2021-12-31 19:38:43 +0200 asked a question solving simultaneous equations trouble using solve()

solving simultaneous equations trouble using solve() Hi, I am having a lot of difficulty solving the following set of e

2021-11-28 13:28:19 +0200 received badge  Nice Question (source)
2021-11-27 23:42:02 +0200 received badge  Supporter (source)
2021-11-27 23:41:52 +0200 marked best answer Change the value of a single element in a matrix

Hi guys I wanna change the value of a singular element in a matrix in sagemath. How do I do this ? I get an error saying vector is immutable

A=matrix([[1,2,-3],[1,4,6],[2,-1,-2]])
B=matrix([[1],[2],[4]])
show(A)
show(B)
A[1][1]=6
2021-11-27 23:41:52 +0200 received badge  Scholar (source)
2021-11-27 20:57:17 +0200 asked a question Change the value of a single element in a matrix

Change the value of a single element in a matrix Hi guys I wanna change the value of a singular element in a matrix in s

2021-11-13 10:43:28 +0200 commented answer Has anyone found a way to handle units in sagemath ?

@Emmanuel Charpentier Does this work the same way if I want to change the unit of the same variable ? for example; L =10

2021-11-10 01:42:40 +0200 commented answer Has anyone found a way to handle units in sagemath ?

@Emmanuel Charpentier I have seen that documentation. Though, it functions like a symbolic variable. You can't change m

2021-11-09 16:03:00 +0200 received badge  Student (source)
2021-11-09 16:00:15 +0200 asked a question Has anyone found a way to handle units in sagemath ?

Has anyone found a way to handle units in sagemath ? Hi, I am looking for a way to handle units in Sagemath, both numer

2021-11-09 16:00:14 +0200 commented answer How to convert linear system to matrix form

what's the difference between SR.var and just using var ? @slelievre