Wronskian - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


VectorCalculus

  

Wronskian

  

computes the Wronskian of a function f : R -> R^n

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Wronskian(f, t, det)

Parameters

f

-

list(algebraic); a list of expressions defining a function from ℝ to ℝn

t

-

name; the variable of differentiation

det

-

(optional) equation of the form determinant = true or false; specify whether to return the determinant (default: determinant = false)

Description

• 

The Wronskian(f, t) command computes the Wronskian Matrix of the function f with respect to the variable t.  This is an n×n Matrix A such that Aij=ⅆj−1ⅆtj−1fit where n=nops⁡f.

• 

The det option specifies whether the determinant of the Wronskian matrix is also returned.  If given as determinant = true, or just determinant, then an expression sequence containing the Wronskian matrix and its determinant is returned.

Examples

> 

with⁡VectorCalculus:

> 

Wronskian⁡exp⁡t,sin⁡t,cos⁡t,t

ⅇtsin⁡tcos⁡tⅇtcos⁡t−sin⁡tⅇt−sin⁡t−cos⁡t

(1)
> 

Wronskian⁡t3,t4,t

t3t43⁢t24⁢t3

(2)
> 

Wronskian⁡t3,t4,t,determinant

t3t43⁢t24⁢t3,t6

(3)

Compatibility

• 

The determinant option was introduced in Maple 15.

• 

For more information on Maple 15 changes, see Updates in Maple 15.

See Also

simplify[wronskian]

VectorCalculus

VectorCalculus[Hessian]

VectorCalculus[Jacobian]