Users' Library Solutions — 22. High-Level Math |
Manual |
HM01 - Eigenvalues for 3rd Order System |
Program calculates the eigenvalues of a 3rd order system described by Ax = λx. |
|
HM02 - Eigenvalues/Vectors of 3rd Order System |
For a given 3rd order matrix with distinct eigenvalues, the program calculates the eigenvalues and eigenvectors. The first (largest) eigenvalue and eigenvector are calculated by power method, while the 2nd and 3rd are calculated by deflation method. |
|
HM03 - Matrix Algebra |
For two matrices X and Y, each with dimensions less than or equal to three, the program will calculate X*Y, X+Y, X-Y, aX, and bY where a and b are scalars. Non-square matrices X and Y are allowed. |
|
HM04 - Characteristic Equation of a 3x3 Matrix |
This program automatically loads data by telling user when to input, and calculates the characteristic equation of a 4 by 4 matrix. |
|
HM05 - 5x5 Matrix Determinant and Inverse
Aug 17, 2016
|
Program calculates the determinant and inverse of a general real 5 by 5 matrix, on one card and with data entered only once. Expansion by minors is used to attain this advantage, although some accuracy is lost by not using pivots. The matrix data is left intact. |
|
HM06 - Simultaneous Equations In Six Unknowns |
Finds the solution for six simultaneous linear equations in six unknowns, using Crout's method. This two-card program will also compute the inverse and determinant of the coefficient matrix. |
|
HM07 - Roots of Polynomials |
Finds real and/or complex roots of polynomials up to degree 14 with real coefficients. When a real (complex) root is found, the polynomial is depressed by the corresponding linear (quadratic) factor, until all roots are found. Newtons method is used, with a modification to prevent diverging iterations. |
|
HM08 - Miscellaneous Special Functions A |
Computes Gamma function, Gaussian hypergeometric function, Jacobian polynomial, Legendre polynomial, Gegenbauer polynomial, and first and second Chebychev polynomials. Works for positive or zero subscripts and superscripts, but for large subscripts can be slow.
Gamma function for 0 < x < 70.95. |
|
HM09 - Miscellaneous Special Functions B |
Using a recursion relation to compute the Gegenbauer, Laguerre, Hermite, Legendre, and Chebychev (both first and second kind) polynomials. A special key enables one, by inputting alternate starting values, to compute polynomials with non-integer subscripts. Starting values can be computed for non-integer subscripts by using Miscellaneous Special Functions A. |
|
HM10 - Incomplete Gamma Function Γ(a,x) |
The upper-tail of the incomplete Gamma function is computed by continued
fractions. Practical considerations restrict x to lie between 1 and 200. |
|
HM11 - Incomplete Beta Function |
The complete Beta function is computed by continued fractions. Valid for arguments A and B greater than 0 and x between zero and one. Accuracy table included. |
|
HM12 - Incomplete Elliptic Integrals |
This program will compute incomplete elliptic integrals of the first or second kind as well as any linear combination of them. |
|