Interactive math software for polynomial geometry

69 Views Asked by At

I've found this Wolfram Demonstrations applet illustrating Sendov's Conjecture very interesting to play around with and have been working on writing my own version in the MATLAB language. I thought that would be faster than learning to create interactive applets in Mathematica. Moreover, I have a free option, Octave, which uses the MATLAB language.

The shortfall of this is that, as far as I know, Octave doesn't support dynamic interactivity. I'm wondering what other free software is out there that would be better-suited to creating a program like the applet I linked to.

EDIT: To be more specific, by "dynamic" I'm thinking of the sort of drag-and-drop capabilities that Mathematica demonstrates in the link above. In that example, Mathematica reevaluates the polynomial's critical points in real time as a root is dragged.

Thank you for reading!

1

There are 1 best solutions below

5
On BEST ANSWER

SageMath is supposed to be (I think) the main free alternative to Mathematica.

You can use its online cell server to give it a quick try. I think it should be able to do applets and interactive things through interact (see this question for example).

Good luck with that!