student(deprecated)/integrand - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : student(deprecated)/integrand

student

  

integrand

  

locate the integrand of an inert integral

  

summand

  

locate the summand of an inert sum

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

integrand(expr)

summand(expr)

Parameters

expr

-

any algebraic expression

Description

• 

Important: The student package has been deprecated. Use the superseding commands, Student[Calculus1][Integrand] and Student[Calculus1][Summand], instead.

• 

The integrand and summand commands are used to extract the integrand (summand) from an unevaluated integral (sum) respectively.

• 

If expr is not an unevaluated integral or sum, but contains one or more such integrals (sums), then the set of integrands (summands) is returned.

• 

If several or no integrands (summands) are found the result will be a set.

• 

The command with(student,integrand) allows the use of the abbreviated form of this command.

• 

The command with(student,summand) allows the use of the abbreviated form of this command.

Examples

Important: The student package has been deprecated. Use the superseding commands, Student[Calculus1][Integrand] and Student[Calculus1][Summand], instead.

> 

with⁡student:

> 

integrand⁡Int⁡f⁡x,x

f⁡x

(1)
> 

summand⁡Sum⁡f⁡i,i=1..n

f⁡i

(2)
> 

integrand⁡x+y

∅

(3)
> 

summand⁡Sum⁡f⁡i,i=1..m+Sum⁡f⁡i,i=m..n

f⁡i

(4)
> 

integrand⁡Doubleint⁡f⁡x,y,x,y

f⁡x,y

(5)
> 

integrand⁡Doubleint⁡f⁡x,y,x,y+Int⁡g⁡x,x

f⁡x,y,g⁡x

(6)
> 

summand⁡Sum⁡Sum⁡i⁢j,i=1..j,j=1..n

i⁢j

(7)

See Also

Int

IntegrationTools[GetIntegrand]

Student

student(deprecated)[Doubleint]

student(deprecated)[Sum]

student(deprecated)[Tripleint]

Student[Calculus1][Integrand]

Student[Calculus1][Summand]