Extended mean value theorem: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 22: Line 22:
     return df(t) / dg(t) - (p[3].Y() - p[0].Y()) / (p[3].X() - p[0].X());
     return df(t) / dg(t) - (p[3].Y() - p[0].Y()) / (p[3].X() - p[0].X());
};
};
 
/*
var r = board.create('glider', [
var r = board.create('glider', [
                     function() { return fg[0](JXG.Math.Numerics.root(quot, (p[3] - p[2]) * 0.5)); },
                     function() { return fg[0](JXG.Math.Numerics.root(quot, (p[3] - p[2]) * 0.5)); },
Line 29: Line 29:


board.create('tangent', [r], {strokeColor:'#ff0000'});
board.create('tangent', [r], {strokeColor:'#ff0000'});
 
*/
board.unsuspendUpdate();
board.unsuspendUpdate();
</jsxgraph>
</jsxgraph>

Revision as of 15:05, 29 January 2019

The underlying JavaScript code