Alternative Maple video here: • Linear Algebra Intro with Maple (Mapl...
Alternative Mathematica video here: • Linear Algebra Intro with Wolfram Mat...
Alternative MATLAB video here: • Linear Algebra Intro with MATLAB
How to find the following:
Inverse
Determinant
Char_poly
Eigenvalues and vectors
Trace
rref
Transpose
Code:
using LinearAlgebraX, LinearAlgebra, Polynomials, Roots
M = [1 0 0;-1 2 2; 4 3 5]
inv(M)
invx(M)
det(M)
detx(M)
z= char_poly(M)
roots(z)
eigvals(M)
eigvecs(M)
tr(M)
rrefx(M)
transpose(M)
#Julia #mathematics #linearalgebra