Cauchy's mean value theorem: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
var p = []; | var p = []; | ||
p[0] = board.create('point', [-1,-2], {style:4}); | p[0] = board.create('point', [-1,-2], {style:4}); | ||
p[1] = board.create('point', [ | p[1] = board.create('point', [1,4], {style:4}); | ||
p[2] = board.create('point', [-0.5,1], {style:4}); | p[2] = board.create('point', [-0.5,1], {style:4}); | ||
p[3] = board.create('point', [3,3], {style:4}); | p[3] = board.create('point', [3,3], {style:4}); | ||
Line 20: | Line 20: | ||
graph], {name:' ',style:6,fixed:true}); | graph], {name:' ',style:6,fixed:true}); | ||
board.create('tangent', [r], {strokeColor:'#ff0000'}); | board.create('tangent', [r], {strokeColor:'#ff0000'}); | ||
*/ | |||
line = board.create('line',[p[0],p[1]],{strokeColor:'#ff0000',dash:1}); | line = board.create('line',[p[0],p[1]],{strokeColor:'#ff0000',dash:1}); | ||
board.unsuspendUpdate(); | board.unsuspendUpdate(); | ||
</jsxgraph> | </jsxgraph> |
Revision as of 10:33, 27 January 2010
Cauchy's mean value theorem is also known as extended mean value theorem. In Germany it is called Zweiter Mittelwertsatz.