Puoi aprire il codice e modificare la funzione: vedi l'Help
You can open the Code and modify the function: see the Help
HELP

When x < 0 and n is odd, Math.pow(x,1/n) is not defined, but x1/n is defined (and is calculated by calculator).
We must define Pot(x) = -Math.pow(-x,1/n).
We can increase the number of points (n) to better visualize the almost vertical strokes.

function Pot(x) { if(x>=0) {y = Math.pow(x,1/5)} else {y = -Math.pow(-x,1/5) }; return y }
function f(x) { y = Pot( x*x*(x+1)/((1+x*x)*(x+3)) ); return y }
...

// ----------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------
...
n=8*9*5*7*11*111