HP Forums
(12C Platinum) Y^X function - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Software Libraries (/forum-10.html)
+--- Forum: General Software Library (/forum-13.html)
+--- Thread: (12C Platinum) Y^X function (/thread-12389.html)



(12C Platinum) Y^X function - Gamo - 02-09-2019 12:14 PM

Here is another way to compute Y to the power of X [Y^X]

Procedure:

ALG mode

Y [=] X [R/S] display Answer

RPN mode

Y [ENTER] X [R/S] display Answer
------------------------------------------
Example: FIX 2

5^6 = ?

ALG mode: 5 [=] 6 [R/S] display 15,625.00
RPN mode: 5 [ENTER] 6 [R/S] display 15,625.00
-----------------------------------------
Program:
Code:

ALG mode
[X<>Y] [LN] [x] [X<>Y] [=] [e^x]
----------------------------
RPN mode
X<>Y
LN
x
e^x

Gamo