Hi,
My name is Tung. I'm 19 and I'm from Vietnam. I have a question concerning Diophantine equation. In the very last line of your Ideas list, you say there is more work to do. So can you tell me more information about this topic and what exactly need to be done ?
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/c0a13160-ef9b-4206-8c4d-6a7f570f1492%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/f4d8ceae-8d54-4a35-a147-5a9284c4068b%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/ff0dad0d-0ed8-4f2e-9382-0b1e4603685e%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/08da6d10-e5b0-4257-b5a4-3eae2a1180fc%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/8f31a303-6ef3-430e-968e-620e13437226%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/39ad5ad3-1bba-4896-a787-4edff3ea729e%40googlegroups.com.
Hi,
I've worked on the first issue you gave me:
diophantine(x**3-4*x*y**2+y**3-1)
I've found a bug in your classify_diop() that yields an error. In line 322, you put a '==' which should be '='. Bu
t even I fix that, the code gave me set([]) (which I assume no solution).
Then, I tried to solve the equation by hand and I came up with (1, 0) (0, 1) (-2, 1) (2, 1) (in the order of (x, y)). Now I have two que
stions:
- Is my solution complete?
- Why did you add x**2*y : 0 to the 'coeff' dictionary after after conclude diop_type = 'cubib thue' ?
On Thursday, March 13, 2014 3:41:41 PM UTC+2, Nguyen Tung wrote:Hi,
My name is Tung. I'm 19 and I'm from Vietnam. I have a question concerning Diophantine equation. In the very last line of your Ideas list, you say there is more work to do. So can you tell me more information about this topic and what exactly need to be done ?
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/aa4e359a-08a2-4c15-8fdd-d35faf65762a%40googlegroups.com.
And another question, I've read the paper you gave me containing the algorithm that we want to implement. However, I think I don't really get the idea (notations, methods ...). Is there any chance I can still implement the module?
On Sunday, March 16, 2014 9:39:20 PM UTC+2, Nguyen Tung wrote:Hi,
I've worked on the first issue you gave me:
diophantine(x**3-4*x*y**2+y**3-1)
I've found a bug in your classify_diop() that yields an error. In line 322, you put a '==' which should be '='. But even I fix that, the code gave me set([]) (which I assume no solution). Then, I tried to solve the equation by hand and I came up with (1, 0) (0, 1) (-2, 1) (2, 1) (in the order of (x, y)). Now I have two questions:
- Is my solution complete?
- Why did you add x**2*y : 0 to the 'coeff' dictionary after after conclude diop_type = 'cubib thue' ?
On Thursday, March 13, 2014 3:41:41 PM UTC+2, Nguyen Tung wrote:Hi,
My name is Tung. I'm 19 and I'm from Vietnam. I have a question concerning Diophantine equation. In the very last line of your Ideas list, you say there is more work to do. So can you tell me more information about this topic and what exactly need to be done ?
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/e4d9bd84-cc75-461d-9787-c96f87c57d3d%40googlegroups.com.
Hi,
Do we really need a complete re-implementation? If some areas (like Thue equations) haven't been implemented, we'll work on those only.
On Thursday, March 13, 2014 3:41:41 PM UTC+2, Nguyen Tung wrote:Hi,
My name is Tung. I'm 19 and I'm from Vietnam. I have a question concerning Diophantine equation. In the very last line of your Ideas list, you say there is more work to do. So can you tell me more information about this topic and what exactly need to be done ?
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/ecc4a003-f25a-4b2e-bad9-399989b3749d%40googlegroups.com.
Lets set x = x and assume y = ax + bm + c and z = dx + em + f where a, b, c, d, e, f are constants to be found. m is the introduced parameter. Plug in these in original equation.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/3c29f2cf-a405-4fab-9a2c-a513ada9f38e%40googlegroups.com.