User's Guide
Table Of Contents
- Table of Contents
- Before Using the Calculator
- Calculation Modes and Calculator Setup
- Inputting Expressions and Values
- Basic Calculations
- Function Calculations
- Pi (π), Natural Logarithm Base e
- Trigonometric Functions
- Hyperbolic Functions
- Angle Unit Conversion
- Exponential Functions
- Logarithmic Functions
- Power Functions and Power Root Functions
- Integration Calculations
- Differential Calculations
- Σ Calculations
- Rectangular-Polar Coordinate Conversion
- Factorial Function (!)
- Absolute Value Function (Abs)
- Random Number (Ran#)
- Random Integer (RanInt#)
- Permutation (nPr) and Combination (nCr)
- Rounding Function (Rnd)
- Greatest Common Divisor (GCD) and Least Common Multiple (LCM)
- Using CALC
- Using SOLVE
- Scientific Constants
- Metric Conversion
- Using Calculation Modes
- Complex Number Calculations (CMPLX)
- Statistical Calculations (STAT)
- Base-n Calculations (BASE-N)
- Equation Calculations (EQN)
- Matrix Calculations (MATRIX)
- Creating a Numerical Table from Two Functions (TABLE)
- Vector Calculations (VECTOR)
- Distribution Calculations (DIST)
- Inequality Calculations (INEQ)
- Ratio Calculations
- Technical Information
- Frequently Asked Questions

Positive:
Negative:
Positive:
Negative:
Positive:
Negative:
Base-n Mode
Input/Output Ranges
Binary
0000000000000000 ≦ x ≦ 0111111111111111
1000000000000000 ≦ x ≦ 1111111111111111
Octal
00000000000 ≦ x ≦ 17777777777
20000000000 ≦ x ≦ 37777777777
Decimal
-2147483648 ≦ x ≦ 2147483647
Hexadecimal
00000000 ≦ x ≦ 7FFFFFFF
80000000 ≦ x ≦ FFFFFFFF
Specifying the Number Mode of a Particular Input
Value
You can input a special command immediately following a value to specify
the number mode of that value. The special commands are: d (decimal), h
(hexadecimal), b (binary), and o (octal).
Example: To calculate 10
10
+ 10
16
+ 10
2
+ 10
8
and display the result as a
decimal value
(DEC) (BASE) (d) 10
(BASE) (h) 10
(BASE) (b) 10
(BASE) (o) 10 36
Converting a Calculation Result to another Type of
Value
You can use any one of the following key operations to convert the
currently displayed calculation result to another type of value:
(DEC)
(decimal), (HEX) (hexadecimal), (BIN) (binary), (OCT) (octal).
Example: To calculate 15
10
× 37
10
in the decimal mode, and then convert
the result to hexadecimal, binary, and octal
(DEC) 15 37 555
(HEX) 0000022B
(BIN) 0000001000101011
(OCT) 00000001053
60