home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / sm22a.zip / UPDATE.TXT < prev   
Text File  |  1993-04-22  |  5KB  |  109 lines

  1.     Some commands in SymbMath have been changed in different 
  2. versions.
  3.  
  4. **************** Changes from Version 1.3 to 1.4 ******************
  5. 1. inte(f(x), (x from a to b)) -> inte(f(x), x from a to b).
  6. 2. Lists, arrays, vectors and matrices: (a,b,c) -> [a,b,c].
  7. 3. Zoom the HELP Mode window: <ctrl><F10> -> <F5>.
  8. 4. <Ctrl>P for printing -> <Alt>P for the Print Mode.
  9.  
  10. ************* New functions in Version 1.4 ***********************
  11. 1. Standard functions: n!, abs(x).
  12. 2. Transformation functions: sum(), prod(), list(), table(), coef().
  13. 3. Calculus functions: d(f(x)/d(x), order), d(f(x), x=c, order).
  14. 4. Users-defined functions name can be any name.
  15. 5. Integrals of x^n*exp(x), x^n*sin(x), etc. where n>0.
  16. 6. The function solve() can solve systems of equations, and linear 
  17.    differential equations in one step, 
  18.  
  19. solve([a1*x+b1*y==c1, a2*x+b2*y==c2], [x,y])
  20. solve(d(y)/d(x)+g(x)*y==h(x), y)
  21.  
  22. 7. SymbMath can learn differentiation.
  23. 8. The nth element of list x is x[n], ...
  24. 9. More library (e.g. for infinite sum, etc.).
  25.     The erros have been fixed if possible.
  26.  
  27. ****************** Changes in Version 2.0 *******************
  28. 1. The user-interface changed to the pull-down menus, pop-up menus.
  29. 2. The assignment statement is evaluated.
  30. 3. Define a user funcrion by define(f(x)=x^2), instead of f(x)=x^2.
  31. 4. Clear a variable or function by clear(x) or clear(f(x)), instead of
  32.    x=x or f(x)=f(x).
  33. 5. Bugs (e.g. some integration by parts) have been fixed.
  34. 6. The simplification subroutine is re-written, so the expression is 
  35.    simplier than before.
  36.  
  37. *************** New function in Version 2.0 ******************
  38. 1. The twin screen text editor.
  39. 2. The functions: assume(), deno(), nume(), etc.
  40. 3. Learning integrals from derviatives and others.
  41. 4. All standard functions can be differentiated and integrated 
  42.    symbolically.
  43. 5. The dictionary help.
  44.  
  45. ************************** Changes in Version 2.1 *******************
  46. 1. The default switch is changed from Output=TwoDim to Output=BASIC.
  47. 2. the clear_all command is removed. The "Clear memory" command in the
  48.    "File" menu clears memory and automatically load the initial file
  49.    "Switch.Ini". So users need not to load and run the switch library
  50.    "Switch.Li".
  51. 3. The equation sign "==" is changed to "===". e.g. an equation is
  52.    x^2+x+1 === 0.
  53. 4. The "Directory" command in the "File" menu is removed. Use the DOS
  54.    command cd in the "OS shell" to change a directory.
  55. 5. Solving the differential equations by solve() is changed to by 
  56.    dsolve().
  57. 6. The reported bugs have been fixed.
  58.  
  59. ********************** New functions in Version 2.1 ******************
  60. 1. Boolean expressions with logic operators have a value of 1 or 0.
  61. 2. User can define the step function. e.g. define
  62.           / -x    if x<0
  63.     f(x) =     0    if x=0
  64.           \    x^6    if x>0
  65.     Enter: define(f(x)=-x*(x<0) + x^6*(x>0))
  66. 3. The "Load" command in the "File" menu opens a Directory window.
  67. 4. More choices in the "Help" menu.
  68. 5. New functions: float(x), ratio(x), round(x), trunc(x), atan2(x,y),
  69.    dsolve(d(y)/d(x)===f(x,y), y).
  70. 6. Integrals of x/(a*x^2+b*x+c), 1/(a*x^2+b*x+c), ln(x)^n and more,
  71.    where a, b, and c are real numbers.
  72. 7. New swtich: Expand=On, Expand=Off.
  73. 8. The "Clear memory" command is added in the "File" menu.
  74. 9. It can detect the improper point in some improper integrals. e.g.
  75.    inte(1/x^2, x from -1 to 2) gives inf.
  76.  
  77. ******************** Change from Version 2.1.1 to 2.2 ****************
  78. 1. All keywords are in lower-case letter, until the switch lowercase=on to
  79.    convert upper-case letter to lower-case one.
  80. 2. First argument in calculus functions is to be evaluated, e.g. 
  81.    lim(y, x=x0), subs(y, x=x0).
  82. 3. d(y/d(x)) and inte(y*d(x) are changed to d(y, x) and inte(y, x).
  83. 4. Numerical integration by the switch is changed to that by 
  84.    ninte(y,x,x1,x2) in the numeric.sm package.
  85. 5. User defines the new function by f(x_) := x^2, instead of 
  86.    define(f(x)=x^2).
  87. 6. The name of the library file is changed to xxx.sm.
  88. 7. Loading and running the library file is by the include() statement.
  89. 8. A disk file is written by the openfile() and closefile() statements,
  90.    instead of the "To disk" and "Off disk" in the Output menu.
  91.  
  92. ****************** New functions in version 2.2 ********************
  93. 1. The pattern is used in user-defined functions and rules.
  94. 2. The conditional statement if(test,a), if(test,a,b). The loop statement 
  95.    do(), repeat(). The graphics function plot(). The test functions 
  96.    isinteger(x), isrational(x), isreal(x), isodd(x), iseven(x), 
  97.    isnumber(x), islist(x), isfree(y,x).
  98. 3. User defines a procedure as a function.
  99. 4. The include(), openfile() and closefile() statements.
  100. 5. The initial package init.sm.
  101. 6. It can integrate x^n*f(x) (e.g. x^n*exp(x), x^n*exp(-x), x^n*ln(x), 
  102.    x^n*sin(x)), where n is any integer and real number.
  103. 7. SymbMath can learn integral of the unknown function from derivative
  104.    of that unknown function.
  105. 8. The delay evaluated assignment :=.
  106.  
  107.     Please read the document file SymbMath.DOC and SymbMath.DO2 
  108. for detail.
  109.