home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / education / cubic / !Cubic / !Help next >
Text File  |  1994-04-16  |  2KB  |  40 lines

  1.  +=========================================================================+
  2.  |                                                                         |
  3.  |                                Cubic                                    |
  4.  |                                                                         |
  5.  +=========================================================================+
  6.  |                                                                         |
  7.  |                           by Mike Williams                              |
  8.  |                                                                         |
  9.  |                    111 Evering Road, London N16 7SL                     |
  10.  |                                                                         |
  11.  +=========================================================================+
  12.  |                                                                         |
  13.  |       This program is in the public domain and may be copied            |
  14.  |         freely as long as no profit is made in the process              |
  15.  |                                                                         |
  16.  +=========================================================================+
  17.                   
  18.  
  19. This program solves cubic equations.
  20.  
  21. A cubic equation takes the general form
  22.  
  23.           Ax³ + Bx² + Cx + D = 0
  24.  
  25. Enter the values for A, B, C, D into the writable icons in the
  26. "parameter" section of the window, then press return. The equation will then
  27. be solved and the roots displayed in the "solution" section of the window.
  28.  
  29.  ACCURACY
  30.  ========
  31.  
  32. The results are displayed to 4 places of decimals, but the fourth decimal
  33. place is not always reliable.
  34.  
  35. In some cases an equation which really has three real roots will be reported
  36. as having one real and two complex roots, with the imaginary parts being
  37. 0.0000 and -0.0000. This is due to slight inaccuracies in BASIC real
  38. arithmetic.
  39.  
  40.