A Example Calculation Using Base-nSpecification

Example: To perform the calculation 510 + 516, and display the result in binary

Al(BIN)X(LOGIC)d1(d) d5+h 5

5+X(LOGIC)d2(h)5E

1010

b

 

kPerforming Calculations Using Logical Operations and

Negative Binary Values

Your calculator can perform 10-digit (10-bit) binary logical operations and negative value calculations. All of the examples shown below are performed with BIN (binary) set as the default number base.

A Logical Product (and)

 

 

Returns the result of a bitwise product.

 

 

Example: 10102 and 11002 = 10002

 

 

1010X(LOGIC)1(and)

10 10an d1100

b

1100E

1000

 

 

 

A Logical Sum (or)

 

 

 

 

Returns the result of a bitwise sum.

Example: 10112 or 110102 = 110112

1011X(LOGIC)2(or)

11010E

A Exclusive Logical Sum (xor)

Returns the result of a bitwise exclusive logical sum.

Example: 10102 xor 11002 = 1102

1010X(LOGIC)e1(xor)

1100E

A Exclusive Logical Sum Negation (xnor)

10 11o r 11010

11011 b

10 10 x o r 1100

110 b

Returns the result of the negation of a bitwise exclusive logical sum.

Example: 11112 xnor 1012 = 11111101012 1111X(LOGIC)3(xnor) 11 1 1x no r 10 1

101E 1111110101 b

E-55