4 years ago | received badge | ● Popular Question (source) |
4 years ago | received badge | ● Notable Question (source) |
5 years ago | received badge | ● Famous Question (source) |
6 years ago | received badge | ● Notable Question (source) |
6 years ago | received badge | ● Popular Question (source) |
6 years ago | received badge | ● Popular Question (source) |
7 years ago | received badge | ● Notable Question (source) |
7 years ago | received badge | ● Famous Question (source) |
7 years ago | received badge | ● Famous Question (source) |
8 years ago | received badge | ● Popular Question (source) |
8 years ago | received badge | ● Popular Question (source) |
9 years ago | received badge | ● Popular Question (source) |
9 years ago | received badge | ● Notable Question (source) |
9 years ago | received badge | ● Notable Question (source) |
9 years ago | received badge | ● Popular Question (source) |
9 years ago | received badge | ● Notable Question (source) |
9 years ago | received badge | ● Popular Question (source) |
9 years ago | 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. |
9 years ago | received badge | ● Commentator |
9 years ago | 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) |
9 years ago | commented answer | About finding roots of polynomials in specific domains Thanks! Let me try this. |
9 years ago | 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 p′p=q′q in the domain (a,∞) , where a=maxroots(p),roots(q) This is the same as asking for the roots of the polynomial, p′q−pq′=0 in the same domain.
|
9 years ago | 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,A2v,..,An−1v. Is there a way to test this property on SAGE given a v and a A? |
9 years ago | 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)" ? |
9 years ago | commented answer | How to make "zip" work faster? How is this S different from my S ? |
9 years ago | 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|is200−500 and |B|is10−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.
|
10 years ago | received badge | ● Supporter (source) |
10 years ago | 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 |
10 years ago | 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" ? ...) |
10 years ago | marked best answer | Why doesn't Sage evaluate to zero on its own found roots? This gave, But then What is going on!? |
10 years ago | received badge | ● Student (source) |
10 years ago | 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])) |
10 years ago | 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,
|
10 years ago | 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? |