set terminal svg size 800 600 fname "Verdana" fsize 16
set output "exp.svg"
set xrange [0:1]
set yrange [0:1]
set samples 500
set ticscale 0.5
set xtics 0.1
set ytics 0.1
set x2tics 0.1
set y2tics 0.1
set format x2 ""
set format y2 ""
set xlabel "x"
set ylabel "xⁿ"
unset grid
unset key
set border 15 linewidth 1
set label 1 "⅛" at 0.2,0.8
set label 2 "¼" at 0.3,0.7
set label 3 "½" at 0.4,0.6
set label 4 "1" at 0.5,0.5
set label 5 "2" at 0.6,0.4
set label 6 "4" at 0.7,0.3
set label 7 "8" at 0.8,0.2
plot x**0.125 1
plot x**0.25 2
plot x**0.5 3
plot x**1 4
plot x**2 5
plot x**4 6
plot x**8 7
SVG recreation of Image:Root graphs.png: <blockquote> Graphs of the roots (in ascending order) *f(x)=<math>x^8</math> *f(x)=<math>x^4</math> *f(x)=<math>x^2</math> *f(x)=<math>x</math> *f(x)=<math>\sqrt[2]{x}</math> *f(x)=<math>\sqrt[4]{x}</math> *