07-401/Andrei Litvin Poly Solution: Difference between revisions

From Drorbn
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 40: Line 40:




This is how far I got so far. The program itself will do others just file (I fiddled with it a lot, so it may still have some bugs, however it works). The problem is working with such large numbers. The reducing part will multiply with 289 each time a <math>x^{240}</math> is reduced, so we could potentially get coefficients of the order <math>289^{964 - 240}</math>, which is very large indeed. On my computer, I get about 30% done, when it starts running out of memory and I had to stop. This is why the program just generates the matrices for the last part (and by the way, Maxima crashed when trying to load the matrix to invert, so I will have to find another program that will handle such large sets of data)
This is how far I got so far. The program itself will do any polynomials just fine (I tweaked it a lot to get the final poly, so it may still have some bugs, however it works). The problem is working with such large numbers. The reducing part will multiply with 289 each time a <math>x^{240}</math> is reduced, so we could potentially get coefficients of the order <math>289^{964 - 240}</math>, which is very large indeed. On my computer, I get about 30% done, when it starts running out of memory and I had to stop. This is why the program just generates the matrices for the last part (and by the way, Maxima crashed when trying to load the matrix to invert, so I will have to find another program that will handle such large sets of data)

Revision as of 20:25, 25 March 2007

Here is what I have so far in terms of polynomials:

Polynomial with root :

(duh)

Polynomial with root :

(duh as well)

Polynomial with root :

(more interesting!)

Polynomial with root :

(similar to the above)

Polynomial with root :

(just invert the above .. quite the same as the above 2)

Polynomial with root :

(ok .. this is ugly)

Polynomial with root :

(very ugly .. especially considering you are not done yet and the next matrix to compute will be quite large)


This is how far I got so far. The program itself will do any polynomials just fine (I tweaked it a lot to get the final poly, so it may still have some bugs, however it works). The problem is working with such large numbers. The reducing part will multiply with 289 each time a is reduced, so we could potentially get coefficients of the order , which is very large indeed. On my computer, I get about 30% done, when it starts running out of memory and I had to stop. This is why the program just generates the matrices for the last part (and by the way, Maxima crashed when trying to load the matrix to invert, so I will have to find another program that will handle such large sets of data)