Hello,
1. I have implemented TSE running on a remote Microsoft Windows server so that you can run TSE programs there
via the browser over the Internet
2. You can run the getstrfu.s program to find the roots of the 5th degree quintic polynomial via TSE g32.exe via the Internet.
It asks for 6 parameters a, b, c, d, e, f
a . x^5 + b . x^4 + c . x^3 + d . x^2 + e . x + f = 0
3. And calculates the 5 roots (they can be reals and or complex numbers) from the values of a, b, c, d, e, f which you
pass as 6 parameters to the URL.
4. The roots are presented in a comma separated list.
5. If you paste this URL in your browser
6. and then while in your browser put 6 parameters after it
E.g.
7. or otherwise put %20 (which is ASCII 32 or space) between it so that it is 1 string which you can copy/paste in the browser:
8. Then it should return the 5 roots in a comma separated list
e.g.
Array ( [0] => 0.551685463458982 - 1.25334886027721 * i, 0.551685463458982 + 1.25334886027721 * i, -0.805786469389031 + 1.22290471337441 * i, -0.805786469389031 - 1.22290471337441 * i, -1.4917979881399 )
with friendly greetings
Knud van Eeden