Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2007-06-23 03:07:15
Size: 173
Editor: DavidJoyner
Comment:
Revision 4 as of 2007-06-24 22:39:34
Size: 675
Editor: DavidJoyner
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Piecewise fcns, polynomials, exponential, logs, trig and hyperboic trig functions.
Line 9: Line 11:
SAGE can compute $\lim_{x\rightarrow 0}\frac{\sin(x)}{x}$:

{{{
sage: limit(sin(x)/x,x=0)
1
}}}
Line 10: Line 19:

SAGE can differentiate $x^2\log(x+a)$ and $\tan^{-1}(x)=\arctan(x)$:

{{{
sage: diff(x^2 * log(x+a), x)
2*x*log(x + a) + x^2/(x + a)
sage: derivative(atan(x), x)
1/(x^2 + 1)
}}}

== Applications ==

...

== Sequences and series ==

(Some schools teach this topic as part of integral calculus.)

Differential Calculus

Besides the examples on this page, please see the discussion in ["BasicCalculus"].

Functions

Piecewise fcns, polynomials, exponential, logs, trig and hyperboic trig functions.

Limits

SAGE can compute \lim_{x\rightarrow 0}\frac{\sin(x)}{x}:

sage: limit(sin(x)/x,x=0)
1

Differentiation

SAGE can differentiate x^2\log(x+a) and \tan^{-1}(x)=\arctan(x):

sage: diff(x^2 * log(x+a), x)
2*x*log(x + a) + x^2/(x + a)
sage: derivative(atan(x), x)
1/(x^2 + 1)

Applications

...

Sequences and series

(Some schools teach this topic as part of integral calculus.)

Differential_Calculus (last edited 2010-02-28 00:58:33 by slabbe)