Extended mean value theorem: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 21: Line 21:
var quot = function(t) {
var quot = function(t) {
     //console.log("t=", t, df(t), dg(t), df(t)/dg(t));
     //console.log("t=", t, df(t), dg(t), df(t)/dg(t));
     return df(t) / dg(t) - (p[3].X() - p[0].X()) / (p[3].Y() - p[0].Y());
     return dg(t) / df(t) - (p[3].Y() - p[0].Y()) / (p[3].X() - p[0].X());
};
};



Revision as of 15:48, 29 January 2019

The underlying JavaScript code