Symbolic Math


In[7]:= D[x^n, x]
           -1 + n
Out[7]= n x

In[8]:= D[x^n, n]
         n
Out[8]= x  Log[x]

In[9]:= Dt[x^n]  
            -1 + n          n
Out[9]= n x       Dt[x] + x  Dt[n] Log[x]

In[10]:= Integrate[x^n, x]
          1 + n
         x
Out[10]= ------
         1 + n

In[11]:= Integrate[Sin[x] Cos[x], {x, a, b}]
              2         2
        Cos[a]    Cos[b]
Out[11]= ------- - -------
           2         2

In[12]:= NIntegrate[Sin[Cos[x]]/x, {x, 1, 2}]
Out[12]= 0.0827321

In[13]:= Integrate[x^2 + y^2, {x, 0, 1}, {y, 0, x}]
         1
Out[13]= -
         3

http://math.arizona.edu/~swig/documentation/mathematica/symb_math.php
Last modified: Fri, 14 Dec 2007 15:50:52 -0700
E-mail: swig@math.arizona.edu
Valid XHTML 1.0! Valid CSS!