Easter Sunday Trigs ( rpn38-CX)
|
03-30-2016, 05:17 AM
(This post was last modified: 03-30-2016 05:37 AM by Gerson W. Barbosa.)
Post: #17
|
|||
|
|||
RE: Easter Sunday Trigs (rpn38-CX) - Updated version
.
Trigonometric Functions (RPN-38 CX) Code:
------------------------------------------ Constants: R.0: 5.817764173314432e-03 R.1: 0.199999779 R.2: 0.142841665 R.3: 1.107161127e-01 R.4: 0.086263068 R.5: 0.05051923 R.6: 3.2818376136867e-08 R.7: 5.553916059e-14 R.8: 4.4756602e-20 R.9: 2.0935e-26 ------------------------------------------ Trigononometric Functions: Enter angles in degrees, -90 =< x <= 90 R/S --> sin(x) R/S x<>y --> cos(x) R/S x<>y / --> tan(x) Inverse Trigonometric Functions: GTO 32 R/S => arcsin(x) (0 =< x <= 1) GTO 43 R/S => arccos(x) (0 =< x <= 1) GTO 51 R/S => arctan(x) (1e-50 < x < 1e42) ------------------------------------------ 0.0001 R/S --> 1.745329252E-06 ; sin(0.0001) x<>y --> 1.000000000 ; cos(0.0001) / --> 1.745329252E-06 ; tan(0.0001) 0.9999 GTO 32 R/S --> 89.18960856 ; asin(0.9999) 0.9999 GTO 43 R/S --> 0.8102914371 ; acos(0.9999) 0.9999 GTO 51 R/S --> 44.99713507 ; atan(0.9999) RCL .0 540 × --> 3.141592654 ; pi Other examples: sin(0.01) = 1.745329243E-04 cos(0.01) = 0.9999999848 tan(0.01) = 1.745329270E-04 sin(30) = 0.5000000000 cos(30) = 0.8660254038 tan(30) = 0.5773502692 sin(60) = 0.8660254038 cos(60) = 0.5000000000 tan(60) = 1.732050808 sin(75) = 0.9659258263 cos(75) = 0.2588190451 tan(75) = 3.732050808 sin(89) = 0.9998476952 cos(89) = 1.745240644E-2 tan(89) = 57.28996163 sin(89.99) = 0.9999999848 cos(89.99) = 1.74532924(0)E-4 tan(89.99) = 5729.577(902) sin(89.9999) = 1.000000000 cos(89.9999) = 1.7453(45219)E-6 tan(89.9999) = 57295(2.5534) asin(0) = 0.000000000 acos(0) = 90.00000000 atan(0) = 0.000000000 asin(1) = 90.00000000 acos(1) = 0.000000000 atan(1) = 45.00000000 asin(1e10) = 90.00000000 atan(0.4142135624) = 22.50000000 acos(0.8660254038) = 30.00000000 atan(50) = 88.85423716 ------------------------------------------ Forensic result: 9 R/S R/S x<>y R/S x<>y / GTO 51 R/S GTO 43 R/S GTO 32 R/S --> 9.000000282 ------------------------------------------ This is essentially the previous version with different usage. Now sin(x) is displayed first. The slightly different forensic result is due to the extra two digits in the constant in R.0 (pi/540). If you prefer the older usage just delete the line and subtract 1 from the address of the inverse functions (GTO 31 R/S; GTO 42 R/S; GTO 50 R/S). |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 4 Guest(s)