Advertisement
MatsGranvik

Victor Protsak formula root of n-th degree simple polynomial

Feb 5th, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (*start*)
  2. Clear[x, k];
  3. n = 6;
  4. a = 1/3;
  5. N[Sum[Binomial[n*k, k]*a^((n - 1)*k + 1)/((n - 1)*k + 1), {k, 0,
  6. 2000}], 20]
  7. x = N[Sum[
  8. Binomial[n*k, k]*a^((n - 1)*k + 1)/((n - 1)*k + 1), {k, 0, 3000}],
  9. 20]
  10. Print["If this is zero then x is solution to the equation:"]
  11. x^n - x + a
  12. (*end*)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement