home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / SYMBMATH.H07 < prev    next >
Text File  |  1993-11-07  |  824b  |  24 lines

  1.         3.1.6  Equations
  2.     An equation is an equality of two sides linked by an equation
  3. sign =, e.g. x^2+p = 0, where the symbol = stands for an
  4. equation. Note that the symbols "=", "==" and ":=" are different:
  5. ":=" is the assignment, "==" is the equal sign, and "=" is the 
  6. equation sign.
  7.          Example:
  8. IN:  2 = 2
  9. OUT: 2 = 2             # unevaluated
  10. IN:  2 == 2
  11. OUT: 1                 # evaluated to 1 (true)
  12.  
  13.     Systems of equations are a list of equations, e.g. 
  14. [a1*x+a2*y=a3, b1*x+b2*y=b3].
  15.  
  16.                 3.1.7  Inequalities
  17.         e.g.
  18.                a < b              less than
  19.                a <= b             less than or equal to
  20.                a > b              greater than
  21.                a >= b             greater than or equal to
  22.                a == b             equal to
  23.                a <> b             not equals
  24.