Power Series for sine: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) (New page: == Power Series for Sine == :<math>\sum_{k=0}^n (-1)^k\frac{1}{(2k+1)!}x^{2k+1}</math> <jsxgraph with="700" height="400"> var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-7,3,7,-...) |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
brd.suspendUpdate(); | brd.suspendUpdate(); | ||
brd.create('functiongraph', [function(t){ return Math.sin(t); },-10, 10],{strokeColor: "#cccccc"}); | brd.create('functiongraph', [function(t){ return Math.sin(t); },-10, 10],{strokeColor: "#cccccc"}); | ||
var s = | var s = brd.create('slider', [[0.75,-1.5],[5.75,-1.5],[0,0,10]], {name:'S',snapWidth:1}); | ||
var x0 = | var x0 = brd.create('glider', [0,0,ax], {name:'x_0'}); | ||
/* | /* | ||
brd.create('functiongraph', [ | brd.create('functiongraph', [ |
Revision as of 10:31, 28 May 2010
Power Series for Sine
- [math]\displaystyle{ \sum_{k=0}^n (-1)^k\frac{1}{(2k+1)!}x^{2k+1} }[/math]