2021-02-26 00:25:03 +0100 | received badge | ● Popular Question (source) |
2020-06-27 16:25:35 +0100 | received badge | ● Notable Question (source) |
2019-10-19 05:52:59 +0100 | received badge | ● Famous Question (source) |
2019-01-25 15:44:54 +0100 | received badge | ● Notable Question (source) |
2019-01-25 15:44:54 +0100 | received badge | ● Popular Question (source) |
2019-01-07 15:38:04 +0100 | received badge | ● Popular Question (source) |
2017-12-11 14:09:46 +0100 | received badge | ● Notable Question (source) |
2017-09-29 16:31:09 +0100 | received badge | ● Famous Question (source) |
2017-08-02 23:28:12 +0100 | received badge | ● Famous Question (source) |
2017-04-04 23:19:13 +0100 | received badge | ● Popular Question (source) |
2016-09-29 15:00:38 +0100 | received badge | ● Popular Question (source) |
2016-02-09 14:41:20 +0100 | received badge | ● Popular Question (source) |
2016-02-09 14:41:20 +0100 | received badge | ● Notable Question (source) |
2015-11-17 13:15:57 +0100 | received badge | ● Notable Question (source) |
2015-07-24 13:55:00 +0100 | received badge | ● Popular Question (source) |
2015-06-28 10:12:05 +0100 | received badge | ● Notable Question (source) |
2015-06-28 10:12:05 +0100 | received badge | ● Popular Question (source) |
2015-06-12 19:58:16 +0100 | commented answer | About finding roots of polynomials in specific domains And what would be a command to check if R turned out to be empty? I need some kind of an error catching for that. |
2015-06-12 19:58:16 +0100 | received badge | ● Commentator |
2015-06-12 19:57:23 +0100 | commented answer | About finding roots of polynomials in specific domains If you just wrote "p.roots()" would it give all the roots? (and not just the reals) |
2015-06-12 19:56:35 +0100 | commented answer | About finding roots of polynomials in specific domains Thanks! Let me try this. |
2015-06-11 23:31:40 +0100 | asked a question | About finding roots of polynomials in specific domains I have two polynomials $p(x)$ and $q(x)$ and I want to know if there are roots of the equation $\frac{p'}{p} = \frac{q'}{q}$ in the domain $(a,\infty)$ , where $a = max { roots(p), roots(q) } $ This is the same as asking for the roots of the polynomial, $p'q - pq' = 0$ in the same domain.
|
2015-06-04 22:12:06 +0100 | asked a question | How does one detect cyclic vectors in SAGE? Given a vector $v$ and a matrix $A$ of dimension $n$, one would say that $v$ is a cyclic vector of $A$ if the following set is linearly independent ${ v,Av,A^2v,..,A^{n-1}v }$. Is there a way to test this property on SAGE given a $v$ and a $A$? |
2015-05-13 00:46:27 +0100 | commented answer | How to make "zip" work faster? I need to analyze each mapping one by one. So does "k = zip(B,i)" be exactly replaced by "k = izip(B,i)" ? |
2015-05-13 00:43:20 +0100 | commented answer | How to make "zip" work faster? How is this S different from my S ? |
2015-05-10 23:42:04 +0100 | asked a question | How to make "zip" work faster? I have these two finite sets $A$ and $B$ where the size of $A$ is typically much larger than the size of $B$. (typically $|A| is 200-500$ and $|B| is 10-50$) I am trying to enumerate all possible maps from $B$ to $A$ using the following idea - but this turns out to be very slow.
|
2015-01-22 04:32:42 +0100 | received badge | ● Supporter (source) |
2015-01-21 19:03:54 +0100 | asked a question | A problem with changing rings Why is this piece of code not working? I would have thought that I can get the exact roots of |
2015-01-21 18:41:52 +0100 | commented answer | How to stop Sage from finding erroneous complex roots? @tmonteil The problem is that (even in your last segment) Sage seems to be finding complex roots! This is not possible! And is there a way to get this polynomial - the one I quoted in my question? (...the P that you have has constants as coeficients - what do you mean by "symbolic coefficients" ? ...) |
2015-01-21 13:54:06 +0100 | marked best answer | Why doesn't Sage evaluate to zero on its own found roots? This gave, But then What is going on!? |
2015-01-21 11:34:32 +0100 | received badge | ● Student (source) |
2015-01-21 09:20:04 +0100 | marked best answer | How to pick out the largest root of an equation? I tried the following but it didn't work, p = x^2 - 7ax + 5; a=5; m = max((p == 0).solve([x])) |
2015-01-21 06:06:19 +0100 | asked a question | How to stop Sage from finding erroneous complex roots? Consider the matrix, where w is the m^th of the k^th roots of unity, Then the characteristic polynomial of the above matrix is,
Now I try getting roots of the above by doing,
|
2015-01-21 04:55:36 +0100 | edited question | Why don't WolframAlpha's and Sage's answer match? Consider this input to WolframAlpha, The solutions it gives are, But the same equation on sage gives the roots, It seems that the first two roots given by WolframAlpha differ from the last two roots given by Sage. Why? |