Curve of y = \dfrac{x}{(x+0.1)(x+0.2)}

						var board = JXG.JSXGraph.initBoard('box1', {
boundingbox: [-2.2, 2.2, 2.2, -2.2],showNavigation:false, showcopyright: false, axis: true,
});

var f1 = board.create('functiongraph',[function(x){ return x/((x+0.1)*(x+0.2))}, -10,100]);
var g1 = board.create('glider', [0.12, 1.5, f1],);					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top