displayObjs.curves.y[4] = TouchMath.curve({
func: function (x) { return 1 / x; },
color: TouchMath.GREEN
});
displayObjs.curves.dy[4] = TouchMath.curve({
func: function (x) { return -1 / (x * x); },
color: TouchMath.GREEN_MED
});
displayObjs.curves.d2y[4] = TouchMath.curve({
func: function (x) { return 2 / (x * x * x); },
color: TouchMath.GREEN_LIGHT
});defining all these functions that are plotted.