HP Forums
(12C) Simultaneous Equation in Two Unknowns - 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) Simultaneous Equation in Two Unknowns (/thread-22490.html)



(12C) Simultaneous Equation in Two Unknowns - Gamo - 10-12-2024 07:31 AM

This program is adapted from

HP-33E Mathematics Applications Handbook

On Page 16 "Algebra and Number Theory"

Original program use "Storage Register" R1 to R6

And with that it takes more time to input all the data.

With this version I will use the TVM buttons but

TVM buttons only have 5 registers to store it on

[n] [i] [PV] [PMT] and [FV] the 6th register will be on R1

-----------------------------------------------------------------

Example Usage:

5X - 3Y = 12
2X + Y = 9

Input Data from left to right start from top equation downward.

5 [n] 3 [CHS] [i] 12 [PV] 2 [PMT] 1 [FV] 9 [R/S] display X = 3.5455

[R/S] Y = 1.9091

Remark: to review answer of X and Y use [X<>Y] to review answer
-----------------------------------------------------------------------
Program:
Quote:[STO] 1

[RCL] [PV] [RCL] [FV] [x]

[RCL] [i] [RCL] 1 [x] [-]

[RCL] [n] [RCL] [FV] [x]

[RCL] [i] [RCL] [PMT] [x] [-]

[STO] 0 [÷] [R/S]

[RCL] [n] [RCL] 1 [x]

[RCL] [PV] [RCL] [PMT] [x] [-]

[RCL] 0 [÷]

Gamo 10/2024