IntegrationTools
Split
split the range of integration
Calling Sequence
Parameters
Description
Examples
Split(v, c)
v
-
definite or indefinite integral
c
splitting point(s)
The Split command splits the range of integration of v: ∫acfxⅆx+∫cbfxⅆx=∫abfxⅆx.
The second parameter c is a splitting point or a list of splitting points. Alternatively, a list of the form [f(i), i = m..n] can be specified. In this case [seq(f(i), i=m..n)] will be used as the splitting points if m and n are constants. If at least one of m or n is symbolic, the points f(m), f(m+1), ... , f(n-1), f(n) will be used and the result is correct as long as (m-n) is an integer.
withIntegrationTools:
V≔Intsinx,x=1..2πn−1
V≔∫12πn−1sinxⅆx
SplitV,2π
∫12πsinxⅆx+∫2π2πn−1sinxⅆx
SplitV,2π,4π,6π
∫12πsinxⅆx+∫2π4πsinxⅆx+∫4π6πsinxⅆx+∫6π2πn−1sinxⅆx
SplitV,2πi,i=1..n−1
∫12πsinxⅆx+∑_j=1n−2∫2π_j2π_j+1sinxⅆx+∫2πn−12πn−1sinxⅆx
See Also
Download Help Document