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: ∫acf⁡xⅆx+∫cbf⁡xⅆx=∫abf⁡xⅆ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.
with⁡IntegrationTools:
V≔Int⁡sin⁡x,x=1..2⁢π⁢n−1
V≔∫12⁢π⁢n−1sin⁡xⅆx
Split⁡V,2⁢π
∫12⁢πsin⁡xⅆx+∫2⁢π2⁢π⁢n−1sin⁡xⅆx
Split⁡V,2⁢π,4⁢π,6⁢π
∫12⁢πsin⁡xⅆx+∫2⁢π4⁢πsin⁡xⅆx+∫4⁢π6⁢πsin⁡xⅆx+∫6⁢π2⁢π⁢n−1sin⁡xⅆx
Split⁡V,2⁢π⁢i,i=1..n−1
∫12⁢πsin⁡xⅆx+∑_j=1n−2⁡∫2⁢π⁢_j2⁢π⁢_j+1sin⁡xⅆx+∫2⁢π⁢n−12⁢π⁢n−1sin⁡xⅆx
See Also
Download Help Document