TranscendentalHermiteIntegration(F, UP)ΒΆ
intrf.spad line 213 [edit on github]
F: Field
Hermite integration, transcendental case.
- HermiteIntegrate: (Fraction UP, UP -> UP) -> Record(answer: Fraction UP, logpart: Fraction UP, specpart: Fraction UP, polypart: UP)
HermiteIntegrate(f, D)
returns[g, h, s, p]
such thatf = Dg + h + s + p
,h
has a squarefree denominator normalw
.r
.t
.D
, and all the squarefree factors of the denominator ofs
are specialw
.r
.t
.D
. Furthermore,h
ands
have no polynomial parts.D
is the derivation to use on UP.
- HermiteIntegrate: (Fraction UP, UP -> UP, UP) -> Record(answer: Fraction UP, logpart: Fraction UP, specpart: Fraction UP, polypart: UP)
HermiteIntegrate(f, D, d0)
returns[g, h, s, p]
such thatf = Dg + g*d0 + h + s + p
,h
has a squarefree denominator normalw
.r
.t
.D
, and all the squarefree factors of the denominator ofs
are specialw
.r
.t
.D
. Furthermore,h
ands
have no polynomial parts.D
is the derivation to use on UP.