home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / DERIVE.ZIP / DERIVE.HLP < prev    next >
Encoding:
Text File  |  1989-07-28  |  16.1 KB  |  501 lines

  1. Line Editing Commands
  2.  
  3.   While authoring an expression, the text can be edited using the following line edit commands:
  4.  
  5.   Cursor movement commands:
  6. Ctrl-S              move left a character
  7. Ctrl-D              move right a character
  8. Ctrl-A              move left a word
  9. Ctrl-F              move right a word
  10. Ctrl-Q S          move to left end of line
  11. Ctrl-Q D          move to right end of line
  12.  
  13.   Text deletion commands:
  14. Ctrl-H      Backspace   delete char left of cursor
  15. Ctrl-G      Del          delete char at the cursor
  16. Ctrl-T              delete word beginning at cursor
  17. Ctrl-Y              delete whole line
  18. Ctrl-Q Y          delete right end of line
  19. Ctrl-Q H          delete left end of line
  20.  
  21.   Miscellaneous commands:
  22. Ctrl-M      Enter       enter line of text
  23. Ctrl-J      Ctrl-Enter  enter and simplify line of text
  24. Esc              abort edit and return to menu
  25. Ctrl-V      Ins          toggle insert/overwrite modes
  26. Ctrl-U              insert previous line of text
  27. F3              insert highlighted expression
  28. F4              insert highlighted expression enclosed in parentheses
  29.  
  30.   On PC compatible computers, the following Greek letters can be entered by holding down the Alt key while pressing the corresponding Latin (English) letter:
  31. Alt-A  alpha        Alt-M  mu
  32. Alt-B  beta        Alt-P  pi
  33. Alt-G  Gamma        Alt-S  sigma
  34. Alt-D  delta        Alt-T  tau
  35. Alt-N  epsilon        Alt-F  Phi
  36. Alt-H  Theta        Alt-O  Omega
  37.  
  38.   On PC compatible computers, the following mathematical constants and functions can be entered by holding down the Alt key while pressing the corresponding letter:
  39. Alt-E  #e    base of the natural logs
  40. Alt-I  #i    square root of -1
  41. Alt-Q  SQRT  square root function
  42.  
  43.  
  44. Functions, Constants, and Operators
  45.  
  46.   Derive knows how to approximate and/or simplify the following mathematical functions, constants, and operators.  In approximate mode and given numeric arguments, they are approximated numerically to the current precision level.
  47.  
  48.   Otherwise they are simplified algebraically using powerful transformations.  Many transformations are applied automatically; some are applied only when you request them by issuing a Manage command.
  49.  
  50. Constants:
  51.   #e          base of the natural logarithms
  52.   #i          square root of -1
  53.   pi          circle's circumference to diameter ratio
  54.   deg          radians per degree
  55.   inf          positive infinity
  56.  
  57. Operators (page 17):
  58.   - z          minus z
  59.   z + w       z plus w
  60.   z - w       z minus w
  61.   z * w       z times w
  62.   z w          z times w
  63.   z / w       z divided by w
  64.   z ^ w       z raised to the power w
  65.   z %          z percent = z/100
  66.   z !          z factorial
  67.  
  68. Exponential functions (page 71):
  69.   #e          base of the natural logarithms
  70.   EXP (z)     #e raised to the power z
  71.   SQRT (z)    square root of z
  72.  
  73. Logarithmic functions (page 72):
  74.   LN (z)      natural log of z
  75.   LOG (z)     natural log of z
  76.   LOG (z, w)  log of z to the base w
  77.  
  78. Trigonometric functions (page 73):
  79.   pi          circle's circumference to diameter ratio
  80.   deg          radians per degree
  81.   SIN (z deg) sine of z degrees
  82.   SIN (z)     sine of z radians
  83.   COS (z)     cosine of z radians
  84.   TAN (z)     tangent of z radians
  85.   COT (z)     cotangent of z radians
  86.   SEC (z)     secant of z radians
  87.   CSC (z)     cosecant of z radians
  88.  
  89. Inverse trigonometric functions (radians) (page 75):
  90.   ASIN (z)    angle whose sine is z
  91.   ACOS (z)    angle whose cosine is z
  92.   ATAN (z)    angle whose tangent is z
  93.   ACOT (z)    angle whose cotangent is z
  94.   ATAN (y, x) angle of the point (x,y)
  95.   ACOT (x, y) angle of the point (x,y)
  96.   ASEC (z)    angle whose secant is z
  97.   ACSC (z)    angle whose cosecant is z
  98.  
  99. Hyperbolic functions (page 76):
  100.   SINH (z)    hyperbolic sine of z
  101.   COSH (z)    hyperbolic cosine of z
  102.   TANH (z)    hyperbolic tangent of z
  103.   COTH (z)    hyperbolic cotangent of z
  104.   SECH (z)    hyperbolic secant of z
  105.   CSCH (z)    hyperbolic cosecant of z
  106.  
  107. Inverse hyperbolic functions (page 76):
  108.   ASINH (z)   inverse hyperbolic sine of z
  109.   ACOSH (z)   inverse hyperbolic cosine of z
  110.   ATANH (z)   inverse hyperbolic tangent of z
  111.   ACOTH (z)   inverse hyperbolic cotangent of z
  112.   ASECH (z)   inverse hyperbolic secant of z
  113.   ACSCH (z)   inverse hyperbolic cosecant of z
  114.  
  115. Piecewise continuous functions (page 76):
  116.   ABS (x)      absolute value of z
  117.   SIGN (x)      sign of z
  118.   MAX (x, y, ...) maximum of arguments
  119.   MIN (x, y, ...) minimum of arguments
  120.   STEP (x)      1 if x>0;  0 if x<0
  121.   CHI (a, x, b)   1 if a<x<b;  0 if x<a or x>b
  122.  
  123. Complex variable functions (page 77):
  124.   #i          square root of -1
  125.   ABS (z)      absolute value of z
  126.   SIGN (z)      sign of z
  127.   RE (z)      real part of z
  128.   IM (z)      imaginary part of z
  129.   CONJ (z)      complex conjugate of z
  130.   PHASE (z)      phase angle of z
  131.  
  132. Probability functions (page 78):
  133.   z!          z factorial
  134.   GAMMA (z)   gamma of z
  135.   PERM (z, w) permutations of z things taken w at a time
  136.   COMB (z, w) combinations of z things taken w at a time
  137.  
  138. Statistical functions (page 79):
  139.   AVERAGE (z1, ..., zn)  arithmetic mean (average)
  140.   RMS (z1, ..., zn)     root mean square
  141.   VAR (z1, ..., zn)     variance
  142.   STDEV (z1, ..., zn)     standard deviation
  143.   FIT (m)         least-squares fit to data matrix m
  144.  
  145. Error functions (page 81):
  146.   ERF (z)         error function
  147.   ERF (z, w)         generalized error function
  148.   ERFC (z)         complementary error function
  149.   NORMAL (z, m, s)     normal distribution function with
  150.                mean m and standard deviation s
  151.  
  152. Financial functions (page 81):
  153.   PVAL (i, nper, pmt, fval, time)  present value of contract
  154.   FVAL (i, nper, pmt, pval, time)  future value of contract
  155.   PMT (i, nper, pval, fval, time)  periodic payment of contract
  156.   NPER (i, pmt, pval, fval, time)  number of payment periods of contract
  157.  
  158. Calculus functions (page 83):
  159.   LIM (u, x, a)        limit of u as x approaches a from above
  160.   LIM (u, x, a, 0)     limit of u as x approaches a from below
  161.   DIF (u, x)           derivative of u wrt x
  162.   DIF (u, x, n)        nth order derivative of u wrt x
  163.   TAYLOR (u, x, a, n)  nth order Taylor approximation of u about a
  164.   INT (u, x)           antiderivative of u wrt x
  165.   INT (u, x, a, b)     definite integral of u wrt x from a to b
  166.   SUM (u, n)           antidifference of u wrt n
  167.   SUM (u, n, k, m)     definite sum of u as n goes from k to m
  168.   PRODUCT (u, n)       antiquotient of u wrt n
  169.   PRODUCT (u, n, k, m) definite product of u as n goes from k to m
  170.  
  171. Vector functions (page 94):
  172.   VECTOR (u, k, m, n, s)   a vector of u as k goes from m to n in steps s
  173.   ELEMENT (v, n)       element n of a vector
  174.   v . w            dot product of vectors
  175.   CROSS (v, w)           cross product of two vectors
  176.   DIMENSION (v)        number of elements of a vector
  177.   OUTER (v, w)           outer product of two vectors
  178.  
  179. Matrix functions (page 98):
  180.   IDENTITY_MATRIX (n)       n by n identity matrix
  181.   ELEMENT (A, j, k)       element in row j and column k of a matrix
  182.   A . B            dot product of matrices
  183.   A`               transpose of a matrix (On PC-9801, use Yen char)
  184.   DET (A)           determinant of a square matrix
  185.   TRACE (A)           trace (sum of diagonal) of a square matrix
  186.   A ^ -1           inverse of a square matrix
  187.   ROW_REDUCE (A, B)       row echelon form of A augmented by B
  188.   CHARPOLY (A, x)       characteristic polynomial of a square matrix
  189.   EIGENVALUES (A, x)       eigenvalues of a square matrix
  190.  
  191. Differential vector calculus (page 104):
  192.   GRAD (expn)           gradient of expn depending on x, y, and z
  193.   GRAD (expn, v)       gradient of expn depending on variables in v
  194.   GRAD (expn, A)       gradient of expn in coordinate system A
  195.   DIV (v, A)           divergence of a vector
  196.   LAPLACIAN (expn, A)       divergence of the gradient of expn
  197.   CURL (v, A)           curl of a vector
  198.  
  199. Integral vector calculus (page 107):
  200.   POTENTIAL (v)        scalar potential of a vector
  201.   POTENTIAL (v, w)       potential of a vector with starting coordinates w
  202.   VECTOR_POTENTIAL (v)       vector potential of a vector
  203.   JACOBIAN (v, w)       Jacobian matrix of partial derivatives
  204.   COVARIANT_METRIC_TENSOR (J)  Covariant metric tensor of Jacobian matrix
  205.   SQRT_DIAGONAL (G)       square roots of the diagonal of a metric tensor
  206.  
  207. Equation operators and functions (page 47):
  208.   u = v           u equals v
  209.   u /= v          u not equal v
  210.   u < v           u less than v
  211.   u <= v          u less than or equal to v
  212.   u > v           u greater than v
  213.   u >= v          u greater than or equal to v
  214.   SOLVE (u, x)          solve  u = 0    for x
  215.   SOLVE (u = v, x)      solve  u = v    for x
  216.   SOLVE (u = v, x, a, b)  solve  u = v    for x in [a, b]
  217.  
  218.  
  219. Algebra Window Command Menu
  220.  
  221.   To issue a menu option command, press the Space bar until the desired command is highlighted, then press the Enter key.  Alternatively, type the letter that is capitalized in the desired command.
  222.  
  223.   The following gives the page in the Derive Manual that describes each of the Algebra window's command menu options.
  224.  
  225. 17  Author      enter a new expression
  226. 22  Build      combine expressions
  227.  
  228.     Calculus
  229. 85    Differentiate differentiate an expression
  230. 87    Integrate     integrate an expression
  231. 83    Limit        limit of an expression
  232. 91    Product        find a closed form product
  233. 90    Sum        find a closed form sum
  234. 86    Taylor        find a Taylor approximation
  235.  
  236.     Declare
  237. 45    Constant      declare a constant's value
  238. 46    Function      declare a function's definition
  239. 43    Variable      declare a variable's domain
  240. 93    Matrix      declare a matrix
  241. 93    vectoR      declare a vector
  242.  
  243. 34  Expand      expand an expression
  244. 37  Factor      factor an expression
  245.  
  246. 11  Help      help on
  247. 10    Editing        line editing commands
  248. 71    Functions     functions and constants
  249. 8     Algebra        algebra window commands
  250. 55    2D-plot        2D-plot window commands
  251. 66    3D-plot        3D-plot window commands
  252. 15    State        current state of system
  253. 11    Return        return to Derive
  254.  
  255. 19  Jump      highlight an expression
  256. 49  soLve      solve an equation
  257.  
  258.     Manage
  259. 37    Branch        principal vs real roots
  260. 71    Exponential   exponential transforms
  261. 72    Logarithm     logarithmic transforms
  262. 34    Ordering        variable ordering
  263. 41    Substitute    substitute in an expression
  264. 73    Trigonometry  trigonometric transforms
  265.  
  266.     Options
  267.       Color
  268. 55    Menu      set menu, message, and status line colors
  269. 55    Work      set expression area colors
  270. 53    Display      set display mode
  271. 12    Execute      execute DOS command
  272. 29    Input      set variable name input mode
  273. 10    Mute      mute audible error beeps
  274. 26    Notation      set numeric notation style
  275. 24    Precision   set arithmetic precision mode
  276. 27    Radix      set input and output radix bases
  277.  
  278. 55  Plot      plot an expression
  279. 12  Quit      quit Derive
  280. 23  Remove      remove expressions
  281. 19  Simplify      simplify an expression
  282.  
  283.     Transfer
  284. 13    Merge      merge expressions from file
  285. 14    Clear      clear expressions from window
  286. 14    Demo      simplify expressions from file
  287. 13    Load      read expressions from file
  288. 13    Save      write expressions to file
  289.       Print
  290. 14    Printer   print expressions to printer
  291. 14    File      print expressions to file
  292. 14    Layout      set page size and margins
  293. 15    Options   set height, range, and character set
  294.       sTate
  295. 16    Load      load state from file
  296. 16    Save      save state in file
  297.  
  298. 22  moVe      move expressions
  299.  
  300.     Window
  301. 64    Close      close a window
  302. 64    Designate   designate window's type
  303. 65    Flip      flip overlaid windows (= F2 key)
  304. 64    Goto      go to a given window
  305. 64    Next      go to next window (= F1 key)
  306. 65    Open      open a window
  307. 64    Previous      go to previous window
  308.       Split      split window
  309. 63    Horizontal  horizontally
  310. 63    Vertical    vertically
  311.  
  312. 27  approX      approximate an expression
  313.  
  314.  
  315. 2D-plot Window Command Menu
  316.  
  317.   To issue a menu option command, press the Space bar until the desired command is highlighted, then press the Enter key.  Alternatively, type the letter that is capitalized in the desired command.
  318.  
  319.   The following gives the page in the Derive Manual that describes each of the 2D-plot window's command menu options.
  320.  
  321. 58  Algebra     switch to an Algebra window
  322. 58  Center     center window over cross
  323.  
  324.     Delete     delete from the plot list
  325. 59    All     all expressions
  326. 59    Butlast     all but the last expression
  327. 59    First     the first expression
  328. 59    Last     the last expression
  329.  
  330. 11  Help      help on
  331. 10    Editing        line editing commands
  332. 71    Functions     functions and constants
  333. 8     Algebra        algebra window commands
  334. 55    2D-plot        2D-plot window commands
  335. 66    3D-plot        3D-plot window commands
  336. 15    State        current state of system
  337. 11    Return        return to Derive
  338.  
  339. 56  Move     move the cross to coordinates
  340.  
  341.     Options
  342. 59    Accuracy     set plot accuracy
  343.       Color
  344. 60    Plot     set plot and axes colors
  345. 55    Menu     set menu, message, and status line colors
  346. 55    Work     set plot area background color
  347. 53    Display     set display mode
  348. 12    Execute     execute DOS command
  349. 10    Mute     mute audible error beeps
  350. 26    Notation     set numeric notation style
  351. 24    Precision  set arithmetic precision mode
  352. 27    Radix     set input and output radix bases
  353. 62    Type     select rectangular or polar plot type
  354.  
  355. 56  Plot     plot highlighted expression
  356. 12  Quit     quit Derive
  357. 58  Scale     set plot scale
  358. 57  Ticks     set aspect ratio
  359.  
  360.     Window
  361. 64    Close      close a window
  362. 64    Designate   designate window's type
  363. 65    Flip      flip overlaid windows (= F2 key)
  364. 64    Goto      go to a given window
  365. 64    Next      go to next window (= F1 key)
  366. 65    Open      open a window
  367. 64    Previous      go to previous window
  368.       Split      split window
  369. 63    Horizontal  horizontally
  370. 63    Vertical    vertically
  371.  
  372. 57  Zoom      zoom plot scale in or out
  373.  
  374.   Pressing the F9 function key zooms both axes in.  F10 zooms both axes out.
  375.  
  376.   On PC compatible computers, pressing the F5 function key switches to the previous display mode as set by an Options Display command.    F5 is a fast way to switch between text and graphics display modes.
  377.  
  378.  
  379. 3D-plot Window Command Menu
  380.  
  381.   To issue a menu option command, press the Space bar until the desired command is highlighted, then press the Enter key.  Alternatively, type the letter that is capitalized in the desired command.
  382.  
  383.   The following gives the page in the Derive Manual that describes each of the 3D-plot window's command menu options.
  384.  
  385. 58  Algebra     switch to an Algebra window
  386. 69  Center     set coordinates of box center
  387. 69  Eye      set coordinates of viewer's eye
  388. 69  Focal     set coordinates of focal point
  389. 68  Grids     set the number of grid panels
  390. 68  Hide     control display of hidden lines
  391. 69  Length     set length of sides of box
  392.  
  393.     Options
  394. 67    Axes     control display of axes
  395.       Color
  396. 69    Plot     set top, bottom, and axes color
  397. 55    Menu     set menu, message, and status line colors
  398. 55    Work     set plot area background color
  399. 53    Display     set display mode
  400. 12    Execute     execute DOS command
  401. 10    Mute     mute audible error beeps
  402. 26    Notation     set numeric notation style
  403. 24    Precision  set arithmetic precision mode
  404. 27    Radix     set input and output radix bases
  405.  
  406. 66  Plot     plot highlighted expression
  407. 12  Quit     quit Derive
  408.  
  409.     Window
  410. 64    Close      close a window
  411. 64    Designate   designate window's type
  412. 65    Flip      flip overlaid windows (= F2 key)
  413. 64    Goto      go to a given window
  414. 64    Next      go to next window (= F1 key)
  415. 65    Open      open a window
  416. 64    Previous      go to previous window
  417.       Split      split window
  418. 63    Horizontal  horizontally
  419. 63    Vertical    vertically
  420.  
  421. 69  Zoom     zoom box side lengths in or out
  422.  
  423.  
  424. Current State of System
  425.  
  426. Precision mode
  427. *PRECISION*
  428. Precision digits
  429. *PRECISION-DIGITS*
  430. Notation style
  431. *NOTATION*
  432. Notation digits
  433. *NOTATION-DIGITS*
  434. Input radix base
  435. *INPUT-BASE*
  436. Output radix base
  437. *OUTPUT-BASE*
  438. Input mode
  439. *INPUT-MODE*
  440.  
  441. Branch selection
  442. *BRANCH*
  443. Logarithms
  444. *LOG-EXPD*
  445. Exponentials
  446. *EXP-EXPD*
  447. Trig functions
  448. *TRIG-EXPD*
  449. Trig powers toward
  450. *TRIG-SQR*
  451.  
  452. Rows per tick mark
  453. *ROWS/TICK*
  454. Columns per tick mark
  455. *COLS/TICK*
  456. 2D plotting accuracy
  457. *PLOT-ACCURACY*
  458. 2D plot mode
  459. *COORDINATE-TYPE*
  460. Axes color
  461. *AXES-COLOR*
  462. Cross color
  463. *CROSS-COLOR*
  464. 3D top color
  465. *TOP-COLOR*
  466. 3D bottom color
  467. *BOTTOM-COLOR*
  468.  
  469. Frame color
  470. *FRAME-COLOR*
  471. Option color
  472. *OPTION-COLOR*
  473. Prompt color
  474. *PROMPT-COLOR*
  475. Status color
  476. *STATUS-COLOR*
  477. Menu background color
  478. *MENU-BACKGROUND*
  479. Border color
  480. *BORDER-COLOR*
  481.  
  482. Work color
  483. *WORK-COLOR*
  484. Work background color
  485. *WORK-BACKGROUND*
  486. Video mode
  487. *VIDEO-MODE*
  488.  
  489. Page length
  490. *PAGE-LINES*
  491. Page width
  492. *PAGE-COLUMNS*
  493. Top margin
  494. *TOP-MARGIN*
  495. Bottom margin
  496. *BOTTOM-MARGIN*
  497. Left margin
  498. *LEFT-MARGIN*
  499. Right margin
  500. *RIGHT-MARGIN*
  501.