Ask Your Question

AKGSage's profile - activity

2025-04-26 21:29:50 +0200 received badge  Famous Question (source)
2025-03-04 00:34:43 +0200 received badge  Popular Question (source)
2025-02-04 13:29:25 +0200 received badge  Popular Question (source)
2024-12-12 07:26:56 +0200 commented question Error occuring in multiprocessing.Pool()

I'm using sage version 10.2 on Ubuntu 22.04 WSL on Windows 11. I will try to restart the kernel and re-run all the code

2024-12-11 18:46:45 +0200 edited question Error occuring in multiprocessing.Pool()

Error occuring in multiprocessing.Pool() I'm trying to learn multiprocessing in SageMath and I picked this wonderful exa

2024-12-11 17:25:05 +0200 asked a question Error occuring in multiprocessing.Pool()

Error occuring in multiprocessing.Pool() I'm trying to learn multiprocessing in SageMath and I picked this wonderful exa

2024-12-11 17:09:02 +0200 commented answer Can we symbolically derive geodesic equation for a given metric using its Christoffel symbols?

Yes Prof.Eric !! That works, thanks a lot for explaining the technicalities that are very challenging for a beginner to

2024-12-11 16:56:30 +0200 marked best answer Can we symbolically derive geodesic equation for a given metric using its Christoffel symbols?

As the title says, I have defined a manifold and its metric and the coordinates. I have also gotten the Christoffel symbols using christoffel_symbols(). But I cannot seem to find a way to derive the geodesic equations for this system. I'm not sure how to define the affine parameter and I cannot make the derivative operator work on symbolic functions of the coordinates and the Christoffel symbol components.

Is there a way to do this for any given well defined metric? Any help would be great. Cheers!

2024-12-06 11:51:00 +0200 received badge  Notable Question (source)
2024-12-06 11:23:11 +0200 asked a question Can we symbolically derive geodesic equation for a given metric using its Christoffel symbols?

Can we symbolically derive geodesic equation for a given metric using its Christoffel symbols? As the title says, I have

2024-10-14 16:12:55 +0200 commented question How to calculate rotation and spin coefficients of tetrads in SageMath?

I'm sorry for the delay in replying. Your package looks very promising, thanks for integrating NP formalism to Sage, it

2024-09-26 19:50:37 +0200 received badge  Notable Question (source)
2024-09-25 15:20:14 +0200 commented question I can not open sage.

You have not provided any info that would be helpful for us to guide you.

2024-07-18 14:28:08 +0200 received badge  Popular Question (source)
2024-07-07 00:35:18 +0200 received badge  Notable Question (source)
2024-07-02 15:02:44 +0200 commented answer How to calculate rotation and spin coefficients of tetrads in SageMath?

This is exactly what I was looking for. Thanks a lot Prof. Eric, I'll try it out.

2024-07-02 14:59:36 +0200 marked best answer How to calculate rotation and spin coefficients of tetrads in SageMath?

I'm trying to reproduce the results of this paper where the author calculates the Ricci rotation and spin coefficients with Mathematica, when provided a metric and a choice of tetrads. I looked through the literature and references of SageMath and I couldn't find any mention of tetrad methods.

I came across this post in this forum from 3 years ago where the answer mentions that general tetrads are implemented but spin coefficient methods are not. It links to the documentation page with a lot of info and since I'm an amateur in SageMath, I'm finding it very difficult to understand what needs to be done. Can anyone help me with how to do this or maybe refer me to a notebook example where this is done? Please let me know. Thanks.

2024-07-01 16:19:15 +0200 edited question How to calculate rotation and spin coefficients of tetrads in SageMath?

How to calculate rotation and spin coefficients of tetrads in SageMath? I'm trying to reproduce the results of this pape

2024-07-01 16:16:21 +0200 asked a question How to calculate rotation and spin coefficients of tetrads in SageMath?

How to calculate rotation and spin coefficients of tetrads in SageMath? I'm trying to reproduce the results of this pape

2024-05-03 12:39:06 +0200 received badge  Popular Question (source)
2024-05-03 12:32:38 +0200 received badge  Organizer (source)
2024-05-03 12:31:42 +0200 asked a question Defining NP formalism and checking consistency

Defining NP formalism and checking consistency I tried to define a Newman-Penrose tetrad and check the dot products and

2024-03-01 13:30:19 +0200 marked best answer Confused about covariant derivatives and tensors in SageMath

I'm trying to calculate covariant derivatives of tensor fields in SageMath, I established the metric connection using g.connection(). But I cannot find any specific method to calculate the covariant derivatives unlike Lie derivative which is an inbuilt method. I looked up documentations and I found that I have to apply the connection (which is just the christoffel symbol) to the tensor field to calculate its covariant derivative. Is that the correct way or is there an inbuilt method that I'm missing? I tried diff() to calculate partial derivative of a tensor defined on a chart on a manifold but it is not working.

So ultimately I want to know the correct method to calculate partial and covariant derivatives of vector fields and tensors on a manifold.

On a related note, I want to know how to save a tensor quantity which I transformed from one coord to another using Tensor.display_comp(chart=differentOne). This method seems to take the original and just display the terms in a different coord system, how do I save the transformed one as a different tensor defined on the differentOnechart?

Please let me know. Thanks in advance for responding!

2024-03-01 13:30:19 +0200 received badge  Scholar (source)
2024-02-29 09:41:15 +0200 commented answer Confused about covariant derivatives and tensors in SageMath

Thanks a lot! This is very helpful. It would be great if you can also explain how to save a coord transformed tensor as

2024-02-27 17:43:07 +0200 edited question Confused about covariant derivatives and tensors in SageMath

Confused about covariant derivatives and tensors in SageMath I'm trying to calculate covariant derivatives of tensor fie

2024-02-27 17:39:30 +0200 received badge  Editor (source)
2024-02-27 17:39:30 +0200 edited question Confused about covariant derivatives and tensors in SageMath

Confused about covariant derivatives and tensors in SageMath I'm trying to calculate covariant derivatives of tensor fie

2024-02-27 17:37:56 +0200 asked a question Confused about covariant derivatives and tensors in SageMath

Confused about covariant derivatives and tensors in SageMath I'm trying to calculate covariant derivatives of tensor fie

2024-02-20 07:20:17 +0200 commented question Comparison between SageMath ODE solvers and Scipy ODE solvers

Okay so I will implement Scipy solvers as I need numerical solutions for my work. Thanks for pointing out the symbolic s

2024-02-19 16:46:11 +0200 asked a question Comparison between SageMath ODE solvers and Scipy ODE solvers

Comparison between SageMath ODE solvers and Scipy ODE solvers I'm pretty new to SageMath and I'm currently trying to wor

2024-02-17 06:35:05 +0200 received badge  Popular Question (source)
2024-02-15 15:22:47 +0200 received badge  Supporter (source)
2024-02-13 19:42:30 +0200 received badge  Nice Question (source)
2024-02-13 09:38:25 +0200 received badge  Student (source)
2024-02-13 09:36:52 +0200 asked a question How to make ubuntu launch jupyter(sage) in windows browser?

How to make ubuntu launch jupyter(sage) in windows browser? I installed sagemath in WSL from source. I followed the ste