home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / finance / tap110.zip / DEMO1.TAP next >
Text File  |  1991-08-26  |  3KB  |  137 lines

  1. LWIDTH:24
  2. TWIDTH:30
  3. NUMBERS:0
  4. ROUND:O
  5. DECIMAL:2
  6. FORMAT:5
  7. P_H:66
  8. P_W:70
  9. P_TM:2
  10. P_BM:3
  11. P_LM:5
  12. P_NUM:1
  13. P_DATE:1
  14. P_RFORM:N
  15. P_TTL1:Examples
  16. XxXxXx
  17. "    ****************************************",    
  18. "      Examples of REAL Numbers operators,",    
  19. "      functions, and expressions.",    
  20. "      This tape is called DEMO1.  You can",    
  21. "      load it with the 'Files' menu.",    
  22. "    ****************************************",    
  23. ,    
  24. "              --- EXAMPLES ---",    
  25. "Add a column of numbers:",    + 1
  26. ,    + 2.22
  27. ,    + 3.33
  28. "Subtotal",    = 
  29. "Reverse sign   (line 13)",    - 
  30. "   <Clear>",    C 
  31. "Algebraic expression",    = (1+2+3)*5
  32. "Add that to the subtotal",    + 
  33. "Add 5% of that",    + 5%
  34. "Subtotal       (line 18)",    = 
  35. "Line 13 + Line 18",    = L13+L18
  36. ,    = 
  37. "   <Clear>",    C 
  38. ,    
  39. "Subtotals and Totals",    + 1.1
  40. ,    + 2.2
  41. ,    + 3.3
  42. "First subtotal",    S 
  43. ,    + 10
  44. ,    + 20
  45. ,    + 30
  46. "Second subtotal",    S 
  47. "Show total",    TS 
  48. ,    + 100
  49. ,    + 200
  50. "Show and clear total",    T 
  51. "Show total (zero now)",    TS 
  52. "   <Clear>",    C 
  53. ,    
  54. "Adding a percentage",    = 120+5%
  55. ,    = 
  56. "Multiply by percentage",    = 120*5%
  57. ,    = 
  58. ,    
  59. "              --- PRECEDENCE ---",    
  60. "Highest: Functions",    = 2^SQR(100)/2
  61. ,    = 
  62. ,    
  63. "Next highest: * / ^",    = 1+2*3
  64. ,    = 
  65. ,    
  66. "Lowest: + -",    = (1+2)*3
  67. "   parentheses override",    = 
  68. ,    
  69. "             --- MATH FUNCTIONS ----",    
  70. "Absolute value",    = ABS(-2.2)
  71. ,    = 
  72. "Inverse (1/x)",    = INV(5)
  73. ,    = 
  74. "Square Root",    = SQR(2)
  75. ,    = 
  76. "Modulus",    = MOD(33,17.5)
  77. ,    = 
  78. "Logarithm base 10",    = LOG(10^2)
  79. ,    = 
  80. "Logarithm base e",    = LN(e^e)/e
  81. ,    = 
  82. "Delta Percent Change",    = DL(100,150)
  83. "   50% increase",    = 
  84. "Round",    = RND(1/7,3)
  85. "   Rounded to 3 places",    = 
  86. ,    
  87. "              ---- FINANCIAL ----",    
  88. "Present Value of $1,000",    = PV(1000,7.2%,10)
  89. "   in 10 years @ 7.2%",    = $ 
  90. ,    
  91. "Future Value of $500",    = FV(500,7.2%,10)
  92. "   in 10 years @ 7.2%",    = $ 
  93. ,    
  94. "Present Value of Annuity",    = PVA(100,6%,10)
  95. "   $100 for 10 years, 6%",    = $ 
  96. ,    
  97. "Future Value of Annuity",    = FVA(100,6%,10)
  98. "   $100 for 10 years, 6%",    = $ 
  99. ,    
  100. "Loan Amount, 30 years,",    = LAMT(877.58,10%/12,30*12)
  101. "   10%, $877.58/month",    = $ 
  102. ,    
  103. "Loan Payment per month",    = LPMT(100000,10%/12,30*12)
  104. "   $100,000, 10%, 30 yrs",    = $ 
  105. ,    
  106. "Interest Rate, $100,000",    = LINT(100000,877.58,30*12)*12
  107. "   $877.58/month, 30 yrs",    + 
  108. ,    C 
  109. "Payment periods,$100,000",    = LPER(100000,877.58,10%/12)
  110. "   $877.58/month, 12%",    = 
  111. ,    
  112. "Gross Profit Margin",    + $ 1000
  113. "   20% profit margin",    + GPM(1000,20%)
  114. "   Retail price",    = $ 
  115. ,    C 
  116. "            ---- TRIGONOMETRIC ----",    
  117. "Sine",    = SIN(pi/2)
  118. ,    = 
  119. "Cosine",    = COS(pi)
  120. ,    = 
  121. "Tanget",    = TAN(0.7854)
  122. ,    = 
  123. "Arc Sine",    = ASIN(1)
  124. ,    = 
  125. "Arc Cosine",    = ACOS(-1)
  126. ,    = 
  127. "Arc Tangent",    = ATAN(1)
  128. ,    = 
  129. "Degrees to Radians",    = DTOR(90)
  130. ,    = 
  131. "Radians to Degrees",    = RTOD(pi/2)
  132. ,    = 
  133. "Sine of an angle given",    = SIN(DTOR(90))
  134. "   in degrees",    = 
  135. "Convert arcsine to",    = RTOD(ASIN(1))
  136. "   degree measure",    = 
  137.