2024-04-06 23:08:41 +0100 | received badge | ● Famous Question (source) |
2022-08-06 00:47:05 +0100 | received badge | ● Popular Question (source) |
2022-04-02 02:47:43 +0100 | received badge | ● Notable Question (source) |
2019-01-29 22:34:36 +0100 | received badge | ● Nice Answer (source) |
2019-01-28 07:51:50 +0100 | commented answer | Bug in series expansion? After playing with it a bit more, I realized that sage has this too: So I consider the case closed (except for that fact that series should have done the same?) |
2019-01-27 20:52:08 +0100 | commented answer | Bug in series expansion? That's not what had in mind (an infinite sum), but using your approach this does work: sage: f.maxima_methods().taylor(q,oo,2) 4/q + 12/q^2 + 1 |
2019-01-27 16:43:47 +0100 | answered a question | Convert real matrix into Integer matrix It seems that the most efficient method is Note this will not work if you have non-integers in the matrix, then you can use |
2019-01-27 13:40:58 +0100 | answered a question | implicit_plot plot of a list It seems that which should work for the purpose of displaying or saving the plot. |
2019-01-27 13:00:00 +0100 | asked a question | Bug in series expansion? I'm trying to expand $(q + 1)/(q - 3)$ at $q=\infty$. This doesn't work: This also doesn't: (the value is wrong, it should be 1 as $q$ goes to infinity, not $-1/2$). This works: But is not very friendly. Any ideas? |
2016-12-08 17:24:25 +0100 | received badge | ● Popular Question (source) |
2016-02-22 18:41:54 +0100 | received badge | ● Notable Question (source) |
2015-02-18 18:02:55 +0100 | received badge | ● Popular Question (source) |
2014-06-29 17:31:41 +0100 | received badge | ● Famous Question (source) |
2014-06-29 17:31:41 +0100 | received badge | ● Notable Question (source) |
2014-06-29 03:14:50 +0100 | marked best answer | gap calls seem to consume a lot of time I am trying to migrate some code from GAP to sage, and the overhead for calls to GAP procedures is enormous. Here is an example: Is there anything I am doing wrong? I tried some profiling, which indicated that most of the time is consumed by "select.select". Any help will be most welcome. |
2014-05-03 11:11:02 +0100 | received badge | ● Famous Question (source) |
2014-05-02 21:42:40 +0100 | received badge | ● Popular Question (source) |
2013-12-29 23:09:29 +0100 | received badge | ● Nice Answer (source) |
2012-11-14 17:53:20 +0100 | received badge | ● Good Answer (source) |
2012-10-24 01:09:15 +0100 | received badge | ● Notable Question (source) |
2012-08-06 10:36:28 +0100 | received badge | ● Guru (source) |
2012-08-06 10:36:28 +0100 | received badge | ● Great Answer (source) |
2012-05-09 03:51:59 +0100 | asked a question | All decompositions of a prime as a sum of four squares Jacobi showed that a prime $p$ has $8(p+1)$ decompositions as a sum of four squares. |
2012-03-28 17:41:41 +0100 | answered a question | Display variable value Some options: |
2012-02-21 09:15:39 +0100 | received badge | ● Nice Answer (source) |
2012-02-21 05:27:05 +0100 | answered a question | Strange result of a relational expression See here: http://ask.sagemath.org/question/1144... and here: http://ask.sagemath.org/question/605/... Quoting from DSM's answer:
|
2012-02-12 08:55:43 +0100 | received badge | ● Nice Answer (source) |
2012-02-11 06:10:13 +0100 | answered a question | Linear transformation from polynomials How is this? |
2012-01-17 10:52:51 +0100 | received badge | ● Taxonomist |
2012-01-16 04:31:10 +0100 | received badge | ● Popular Question (source) |
2012-01-04 12:57:00 +0100 | answered a question | Segmentation fault when evaluating 3^3^3^3 Note the order of actions is not the one you would have expected (I think): |
2011-12-21 23:41:52 +0100 | received badge | ● Nice Answer (source) |
2011-12-21 17:02:04 +0100 | answered a question | sqaure root type In general if Note also that %1 and .frac() are different: I guess you want the latter. Actually %1 is a bit weird: |
2011-12-21 16:09:29 +0100 | commented answer | sqaure root type Did you really use y=x.real_part ? You need y=x.real_part() |
2011-12-09 17:20:55 +0100 | answered a question | Is there a way to save to to animations in the same avi file This is based on http://www.imagemagick.org/Usage/anim... . Naturally, you need imagemagick installed. Say you created Download and make executable the scripts here and here.
Execute the following, changing NUM_FRAMES to the number of frames (21 here, look at the files generated by You should have |