Convergence of sequence: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
nth-element of the sequence: <input type="text" id="input" value="1 / factorial(n)"> | nth-element of the sequence: <input type="text" id="input" value="1 / factorial(n)"> | ||
<input type="button" value="Start" onClick="start_approx()"> | <input type="button" value="Start" onClick="start_approx()"> | ||
<input type="button" value="clear all" onClick="clearAll()"> | |||
</html> | </html> | ||
<jsxgraph width="500" height="500" box="box"> | <jsxgraph width="500" height="500" box="box"> | ||
Line 34: | Line 35: | ||
} | } | ||
var clear_all = function() { | |||
seq.dataX = [0]; | |||
seq.dataY = [1]; | |||
} | |||
</jsxgraph> | </jsxgraph> |
Revision as of 08:29, 7 January 2019
Compute values of
- [math]\displaystyle{ (a_n)_{n\in{\mathbb N}} }[/math].
nth-element of the sequence: