mathematical independence - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Programming : Data Types : mathematical independence

type/freeof

check for mathematical independence

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

type(f, freeof(x))

Parameters

f

-

expression or list or set of expressions

x

-

name or list or set of names

Description

• 

Returns true if all of the expressions in f are mathematically independent of all the names contained in x.

• 

The definition of mathematical dependence is that used by depends. For more information, see depends.

Examples

typex,freeofx,y

false

(1)

typea,b,freeofc,d

true

(2)

typexy,identicalxfreeofx

true

(3)

typeintfx,x=a..b,freeofx

true

(4)

typeintfx,x=a..b,freeofa

false

(5)

See Also

depends

type

type/dependent