Post Reply 
Most impressive/complex/amazing C-series program?
08-10-2018, 06:03 PM
Post: #32
RE: Most impressive/complex/amazing C-series program?
The HP-11C can solve a linear, symmetric 2×2 system using the built-in linear regression with a single operation:
Code:
L.R.

For this to work we have to fill the registers R0 - R5 with the corresponding values of the equation:

\(\begin{bmatrix}
R_2 & R_1 \\
R_1 & R_0
\end{bmatrix}\cdot\begin{bmatrix}
Y \\
X
\end{bmatrix}=\begin{bmatrix}
R_5 \\
R_3
\end{bmatrix}\)

Example:

\(\begin{bmatrix}
2 & -3 \\
-3 & 5
\end{bmatrix}\cdot\begin{bmatrix}
2 \\
-3
\end{bmatrix}=\begin{bmatrix}
13 \\
-21
\end{bmatrix}\)

CLEAR Σ
2 STO 2
-3 STO 1
5 STO 0
13 STO 5
-21 STO 3
L.R.

Y: 2
X: -3


This is used in Bairstow's Method.

Kind regards
Thomas

BTW: Not all models allow this trick as they check the values for consistency prior to calculating the result. E.g. the value of n in register R0 can't be negative.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Most impressive/complex/amazing C-series program? - Thomas Klemm - 08-10-2018 06:03 PM



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