2024-10-13 09:51:20 +0100 | received badge | ● Famous Question (source) |
2024-10-09 17:14:25 +0100 | marked best answer | Changing basis on a vector space Dear community: I'd like to know if it is possible use a basis other than the canonical. For example
is the canonical basis of
How could I do that? Edit More specifically, I'd like to define two different basis on a vector space. Say, a set of coordinate basis and a non-coordinate basis defined over the same vector space... and finally I'd like to express results in either of them. I'm interested on a change of basis on Differential Forms, but I guess that if you can help me to understand the general problem I can manage the particular one! Chrees |
2024-05-03 12:33:52 +0100 | received badge | ● Notable Question (source) |
2024-02-23 17:40:11 +0100 | received badge | ● Notable Question (source) |
2023-11-04 19:36:04 +0100 | received badge | ● Famous Question (source) |
2023-07-29 12:19:30 +0100 | received badge | ● Notable Question (source) |
2023-07-02 12:40:18 +0100 | received badge | ● Popular Question (source) |
2023-07-02 12:40:12 +0100 | received badge | ● Popular Question (source) |
2023-05-26 00:09:41 +0100 | received badge | ● Nice Question (source) |
2022-10-17 17:21:19 +0100 | answered a question | How to add latex itemize environment in sagemath markdown cell. With a single dash as first character in the line. More info: https://www.markdownguide.org/basic-syntax/#unordered-list |
2022-10-10 10:44:37 +0100 | marked best answer | Integrating an integral Hi community. I'm interested in manipulating a formal expression $$\int \mathrm{d}t \; e^{- 2 \int \mathrm{d}t \; h(t)}.$$ My notebook contains the following code but the result is QUESTION(S):
|
2022-10-10 10:34:52 +0100 | answered a question | Integrating an integral Thanks to the comment by @fredericc I found the answer! The solution is to use the algorithm='maxima' flag, e.g. var('t |
2022-10-09 17:40:21 +0100 | received badge | ● Nice Question (source) |
2022-10-09 10:34:55 +0100 | asked a question | Integrating an integral Integrating an integral Hi community. I'm interested in manipulating a formal expression $$\int \mathrm{d}t \; e^{- |
2022-05-16 12:36:44 +0100 | received badge | ● Notable Question (source) |
2022-01-26 04:06:53 +0100 | received badge | ● Popular Question (source) |
2022-01-02 20:55:01 +0100 | received badge | ● Taxonomist |
2021-10-22 10:27:39 +0100 | received badge | ● Notable Question (source) |
2021-10-15 17:12:09 +0100 | received badge | ● Popular Question (source) |
2021-05-29 13:30:09 +0100 | received badge | ● Popular Question (source) |
2021-05-18 03:35:09 +0100 | received badge | ● Popular Question (source) |
2021-01-15 20:07:10 +0100 | received badge | ● Famous Question (source) |
2020-12-16 22:03:13 +0100 | received badge | ● Popular Question (source) |
2020-09-07 21:31:12 +0100 | received badge | ● Nice Question (source) |
2020-05-20 05:37:53 +0100 | received badge | ● Famous Question (source) |
2019-07-30 10:47:49 +0100 | marked best answer | Differential forms and tensors Dear all, A long time ago I was trying to implement a SAGE code for working with Differential Forms with values in a certain Lie algebra, but due to my lack of programming knowledge, I couldn't. This kind of objects are important for working with non-Abelin gauge theories. Question Is it possible to define and work with those objects? So far there is no reference of it in the manual. Thank you! |
2019-05-20 14:11:07 +0100 | marked best answer | Size of Labels on a Plot dear all: I'd like to know if there is any way to change the size of the font of labels (in a plot) without changing the size of the numbers on the ticks. Thank you |
2019-05-20 14:02:27 +0100 | received badge | ● Famous Question (source) |
2019-05-17 21:46:48 +0100 | commented answer | Restricting a variable to a (real) range Thank you @dsejas Yes, your comment was incredible useful! It drove me to a nice solution. Since I had a lot of assumptions, I was trying to find a way to drop the last assumption (still don't know it possible), and looking for that I found the |
2019-05-17 16:18:03 +0100 | asked a question | Restricting a variable to a (real) range Hi. I'm solving a differential equation which depends on two parameters $c1$ and $c2$. They are both positive but in order to solve the equation, assume(c2 - 3 > 0) the equation is solved; But imposing Question Is it possible to set a condition like |
2019-05-14 09:41:24 +0100 | asked a question | Solving an ODE and simplifying the result I'm interested in solving the differential equation $$3 h' + 3 h^2 = c_1,$$ where $c_1$ is a positive real number. The above code works, but it's not solved explicitly for $h$, so This gives something like $$h\left(t\right) = \frac{\sqrt{3} \sqrt{c_{1}} {\left(e^{\left(\frac{2}{3} \, \sqrt{3} C \sqrt{c_{1}} + \frac{2}{3} \, \sqrt{3} \sqrt{c_{1}} t\right)} + 1\right)}}{3 \, {\left(e^{\left(\frac{2}{3} \, \sqrt{3} C \sqrt{c_{1}} + \frac{2}{3} \, \sqrt{3} \sqrt{c_{1}} t\right)} - 1\right)}},$$ in sage notation (non-LaTeX) it starts like Question 1: Is there a way to allocate to the solution (i.e. I had to set by hand (it is ease, but it would be nice to automatize the allocation) Then, by simply looking at the solution it is clear that it can be simplified. I tried things like but none of them returns the expected result, which could be obtained from Mathematica's kernel $$ \sqrt{\frac{c_1}{3}} \tanh\left( \sqrt{\frac{c_1}{3}} (t - 3 c_2) \right) $$ Question 2: How could the expression |
2019-02-08 13:26:30 +0100 | received badge | ● Popular Question (source) |
2018-12-04 09:18:37 +0100 | asked a question | Sagemanifold - Connection components from a tensor (not a metric) Dear community. This might sound dump, but I'm trying to determine whether a tensor satisfy the properties of a metric (under certain conditions). Of course it is a (0,2)-symmetric tensor, call it $S$, but I cannot (to my understanding) calculate the (Levi-Civita-like) connection components that would be associated to $S$... unless I declare it as a metric. The way it is implemented makes sense... and it's solid! What I did...?I defined like a metric and calculate the associated connection (and curvatures) Why should I do something else?In the file Question:Is this possible? |
2018-12-04 08:34:54 +0100 | commented answer | How to get the collection of all functions from X to Y in SageMath Thanks for the theory! |
2018-12-03 22:15:00 +0100 | received badge | ● Nice Question (source) |
2018-12-03 19:20:48 +0100 | commented answer | Subtitute functions - in a differential equation - Sagemanifold hehehehe... Thank you again! I almost got it... but I tried |
2018-12-03 19:18:45 +0100 | marked best answer | Subtitute functions - in a differential equation - Sagemanifold Dear community, I have a differential equation that depends on a function $\xi(t)$, but is a component of a tensor (calculated with I'd like to define the restriction to $\xi = 0$, and assign it to a new tensor but I get an I know that it works for functions QuestionIs there a way to substitute functions that are not |
2018-12-03 19:18:05 +0100 | marked best answer | Sagemanifold - `only_nonredundant = True` by default Hi, I find the option |