Cauchy's mean value theorem: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 11: | Line 11: | ||
p[3] = board.create('point', [3,2], {style:4}); | p[3] = board.create('point', [3,2], {style:4}); | ||
p[4] = board.create('point', [4,1], {style:4}); | p[4] = board.create('point', [4,1], {style:4}); | ||
var fArray = | var fArray = JXG.Math.Numerics.Neville(p); | ||
var graph = board.create('curve', fArray, {strokeWidth:3,strokeOpacity:0.5}); | var graph = board.create('curve', fArray, {strokeWidth:3,strokeOpacity:0.5}); | ||
/* | /* | ||
var g = function(t) { | var g = function(t) { | ||
return | return JXG.Math.Numerics.D(fArray[0])(t)/JXG.Math.Numerics.D(fArray[1])(t)-(p[4].X()-p[0].X())/(p[4].Y()-p[0].Y()); | ||
}; | }; | ||
Latest revision as of 19:06, 18 January 2013
Cauchy's mean value theorem is also known as extended mean value theorem. In Germany it is called Zweiter Mittelwertsatz.
DRAFT