Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 4 years ago

Juanjo gravatar image

Let f1,,fn be functions defined on a given interval I and n1 times differentiable. Let W(f1,,fn) be the Wronskian of these functions. It is well known that:

if f1,,fn are linearly dependent on I, then W(f1,,fn) vanishes on I.

In general, the converse is not true: the vanishing of the Wronskian on I does not implies that the functions are linearly dependent. However, if f1,,fn are analytic, then these functions are linearly dependent on I if and only if W(f1,,fn)0 on I.

Since f(x)=17, g(x)=cos2(x) and h(x)=cos(2x) are analytic on R, we can check if they are linearly dependent by testing their Wronskian:

sage: f(x) = 17 
sage: g(x) = cos(x)^2 
sage: h(x) = cos(2*x) 
sage: funs = [f(x),g(x),h(x)] 
sage: bool(wronskian(*funs,x)==0)                                               
True

Thus, f, g and h are linearly dependent.

click to hide/show revision 2
No.2 Revision

Let f1,,fn be functions defined on a given interval I and n1 times differentiable. Let W(f1,,fn) be the Wronskian of these functions. It is well known that:

if f1,,fn are linearly dependent on I, then W(f1,,fn) vanishes on I.

In general, the converse is not true: the vanishing of the Wronskian on I does not implies imply that the functions are linearly dependent. However, if f1,,fn are analytic, then these functions are linearly dependent on I if and only if W(f1,,fn)0 on I.

Since f(x)=17, g(x)=cos2(x) and h(x)=cos(2x) are analytic on R, we can check if they are linearly dependent by testing their Wronskian:

sage: f(x) = 17 
sage: g(x) = cos(x)^2 
sage: h(x) = cos(2*x) 
sage: funs = [f(x),g(x),h(x)] 
sage: bool(wronskian(*funs,x)==0)                                               
True

Thus, f, g and h are linearly dependent.