Extended mean value theorem: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs)  Created page with "<jsxgraph width="600" height="400" box="box"> var board = JXG.JSXGraph.initBoard('box', {boundingbox: [-5, 10, 7, -6], axis:true}); var p = [];  board.suspendUpdate(); p[0] =..."  | 
				A WASSERMANN (talk | contribs) No edit summary  | 
				||
| Line 5: | Line 5: | ||
board.suspendUpdate();  | board.suspendUpdate();  | ||
p[0] = board.create('point', [-1,-2], {size:2});  | p[0] = board.create('point', [-1,-2], {size:2});  | ||
p[1] = board.create('point', [  | p[1] = board.create('point', [-3, 5], {size:2});  | ||
p[2] = board.create('point', [-0.5,1], {size:2});  | p[2] = board.create('point', [-0.5,1], {size:2});  | ||
p[3] = board.create('point', [3,  | p[3] = board.create('point', [3,-2], {size:2});  | ||
var x = JXG.Math.Numerics.lagrangePolynomial(p);  | var x = JXG.Math.Numerics.lagrangePolynomial(p);  | ||
/*  | /*  | ||