Post Reply 
How do you set to Double Precision mode for 34S?
01-17-2017, 08:36 PM (This post was last modified: 01-17-2017 08:55 PM by Dieter.)
Post: #8
RE: How do you set to Double Precision mode for 34S?
(01-16-2017 09:37 PM)Paul Dale Wrote:  To get the second 12 digits:

set round to zero mode,

"Round to zero" is round mode 4, i.e. truncation (instead of the standard mode 0 that rounds to even).
The round mode is set by the RM command which is part of the MODE menu.

(01-16-2017 09:37 PM)Paul Dale Wrote:  round to 12 digits,

Round to 12 significant digits. This is accomplished by the RSD command that can be found in the X.FCN menu.

(01-16-2017 09:37 PM)Paul Dale Wrote:  subtract from the original number.

Yes. ;-)

So all in all it's a procedure like this:

Code:
RM 4                                  // set round mode to truncation
[SCI] 11                              // always show 12 significant digits

17 [1/X]         5,88235294118 E-2    // 1/17 rounded 12-digit display precision
[ENTER] RSD 12   5,88235294117 E-2    // first 12 digits
[-]              6,47058823529 E-14
[ENTER] RSD 12   6,47058823529 E-14   // next 12 digits
[-]              4,11764705800 E-26   // last 10 digits

RM 0                                  // reset standard round mode

Dieter
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How do you set to Double Precision mode for 34S? - Dieter - 01-17-2017 08:36 PM



User(s) browsing this thread: 1 Guest(s)