Computing a Determinant
Wronskian Example
This worksheet demonstrates computing the Wronskian for the functions , and .
> | with(LinearAlgebra): M1 := Matrix(3,[[exp(2*x),exp(-3*x),exp(4*x)],[2*exp(2*x),-3*exp(-3*x),4*exp(4*x)],[4*exp(2*x),9*exp(-3*x),16*exp(4*x)]]); |
> | Determinant(M1); |
You could use the fact that the determinant to be computed will equal times the determinant of the matrix M2 given below.
> | M2 := Matrix(3,[[1,1,1],[2,-3,4],[4,9,16]]); |
> | Determinant(M2); |
I shouldn't show you this but Maple does have a Wronskian command.
> | with(linalg): |
Warning, the previous binding of the name GramSchmidt has been removed and it now has an assigned value
Warning, the protected names norm and trace have been redefined and unprotected
> | A := vector([exp(2*x),exp(-3*x),exp(4*x)]); |
> | W:=wronskian(A,x); |
> | det(W); |
> |