HP-35S 3x3 matrix inversion via keyboard - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: General Forum (/forum-4.html) +--- Thread: HP-35S 3x3 matrix inversion via keyboard (/thread-2991.html) |
HP-35S 3x3 matrix inversion via keyboard - Rick314 - 02-02-2015 07:29 PM The "3*3 lin. solve" predefined equation in the HP-35S can be used to find and display the inverse of a 3x3 matrix. (I found HP-35S matrix programs online, but not this keyboard tip. Feel free to provide a link if it is already posted.) The function works by entering 12 real values to solve 3 equations in 3 unknowns for (x, y, z): A*x + B*y + C*z = D E*x + F*y + G*z = H I*x + J*y + K*z = L Using matrix notation: Code:
By doing the "3*3 lin. solve" operation 3 times with the following D H L values, the columns of the inverse matrix can be displayed. Code:
For example, to find Code:
do the following: Code:
RE: HP-35S 3x3 matrix inversion via keyboard - Thomas Klemm - 02-03-2015 02:14 AM (02-02-2015 07:29 PM)Rick314 Wrote: Using matrix notation: Just wanted to let you know that this forum supports LaTeX: \[ \begin{bmatrix} A & B & C \\ E & F & G \\ I & J & K \end{bmatrix} \cdot \begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} D \\ H \\ L \end{bmatrix} \] As I'm not fluent I often use this online LaTeX equation editor. Kind regards Thomas |