home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / SERIES.SM < prev    next >
Text File  |  1993-10-16  |  179b  |  7 lines

  1. #    this is demo of series()
  2.  
  3. f'(x_) := cos(x)        # knowing f'(x)
  4. f(0) := 0            # knowing f(0)
  5. f(x_) := eval(series(f(x),x))    # define f(x) by its series
  6. f(i)                # calculate f(i)
  7.