2021-01-21 13:13:50 +0100 | received badge | ● Popular Question (source) |
2021-01-17 18:51:48 +0100 | received badge | ● Famous Question (source) |
2020-01-18 16:32:36 +0100 | received badge | ● Notable Question (source) |
2019-10-21 12:33:16 +0100 | received badge | ● Popular Question (source) |
2018-11-04 19:53:47 +0100 | received badge | ● Student (source) |
2018-09-26 09:47:13 +0100 | commented answer | Roots of Polynomials over finite Fields I want to do the addition of 2 points of this equations (a point of this equation is a P=[x,y] such that f(P)=0) The addition for example would be -> [x1+x2, y1,y2], do you know how? |
2018-09-25 18:28:07 +0100 | commented answer | Roots of Polynomials over finite Fields I want to do the addition of 2 points of this equations (a point of this equation is a P=[x,y] such that f(P)=0) The addition for example would be -> [x1+x2, y1,y2] |
2018-09-25 18:24:04 +0100 | commented answer | Roots of Polynomials over finite Fields I think that I understood your answer but, in your case, Why do you define R If you don't use it afterwards? Thank you so much |
2018-09-24 19:26:43 +0100 | asked a question | Inverse of a number modulo 2**255 -19 I don't understand this code to solve the inverse of a number: Finally, If I want to put: $\frac{2}{3}$ I can to do this: What does the variable Could you explain me this code, please? Thank you so much. |
2018-09-23 20:17:59 +0100 | asked a question | Roots of Polynomials over finite Fields Hi guys, How can I define all polynomial as this form -> Thank you so much. |
2018-09-23 20:01:56 +0100 | asked a question | Roots of a Polynomial in a PolynomialRing If I do:
Why it doesn't work? And next code work:
I don't understand why. And one more things, If I want to define all polinomials as this form -> ax^2 - by^2 where $a$ and $b$ are constants. Have I do this?
How can I do that? Thank you so much. |
2018-09-22 11:01:31 +0100 | received badge | ● Scholar (source) |
2018-09-22 10:55:06 +0100 | commented answer | PolynomialRing in Sage OHHHHHH!!! Really soo soooo thanks!!! but... one more things, I put here -> https://ask.sagemath.org/question/43721/poylinomialring-in-sage-2/ (https://ask.sagemath.org/question/437...) a question, and I know you would know answer me. Really thank you so much!! |
2018-09-22 10:53:37 +0100 | received badge | ● Editor (source) |
2018-09-22 10:53:11 +0100 | asked a question | Ideal of a PolynomialRing -> ask.sagemath.org/question/43714/polynomialring-in-sage/ Continuous of other question: One thing more, If I have a equation as this form: ax^2+1d*y^2 And depends of variable $a$ and $d$ it's a different polynomial. And If I want to solve the points where this ecuation is zero. whatever $a$ and $d$. And the Affine point are (x,y) and projective point (X,Y,Z) where x=X/Z; y=Y/Z and Z!=0, so a point (x1,y1) is (X1,Y1,Z1) in projective Coordinates. I readed that I have to do this: def mynumerator(x): def reduce(self): R.<ua,ud,ux2,uy2,ux1,uy1,ux1,uy1,uz1,ux2,uy2,uz2> = PolynomialRing(QQ,12,order='invlex') I = R.ideal([ J = I + R.ideal([0 ua = fastfrac(ua) //formula to solve a point of the equation so I guess (ux3,uy3) is a point of the equation. But I don't understand why I have to create a Ideal $I$ and then $J$ And the most important, If I want to solve every points of equations for example $ua*ux1^2=1+ud*uy1^2$ where $ua=2$ and $ud=1$ How can I make that? Thank you so much. |
2018-09-21 14:56:24 +0100 | asked a question | PolynomialRing in Sage What does this "fastfrac" function do? Because I don't understand for example, what does "numerator()" function? What is the sintaxis R(numerator(top)) I don't understand. R.<ua,ud,ux2,uy2,ux1,uy1,ux1,uy1,uz1,ux2,uy2,uz2> = PolynomialRing(QQ,12,order='invlex') class fastfrac: def __init__(self,top,bot=1): Thank you so much. |