GuessExpBin(F, S, EXPRR, retract, coerce)ΒΆ
mantepse.spad line 494 [edit on github]
F: Join(Field, PolynomialFactorizationExplicit)
S: GcdDomain
EXPRR: Join(FunctionSpace Integer, IntegralDomain, RetractableTo Symbol, RetractableTo Integer, CombinatorialOpsCategory, PartialDifferentialRing Symbol) with
*: (%, %) -> %
/: (%, %) -> %
^: (%, %) -> %
denominator: % -> %
ground?: % -> Boolean
numerator: % -> %
retract: EXPRR -> F
coerce: F -> EXPRR
This package implements guessing GuessExpRat and GuessBinRat functions of guessing package.
- guessBinRat: (List F, List GuessOption) -> List EXPRR
guessBinRat(l, options)
tries to find a function of the formn+
->binomial(a+bn
,n
)r
(n
), wherer
(n
) is a rational function, that fitsl
.
- guessBinRat: Symbol -> (List F, List GuessOption) -> List EXPRR if F has RetractableTo Symbol and S has RetractableTo Symbol
guessBinRat q
returns a guesser that tries to find a function of the formn+
->qbinomial(a+bn
,n
)r
(n
), wherer
(q^n
) is aq
-rational function, that fitsl
.
- guessExpRat: (List F, List GuessOption) -> List EXPRR
guessExpRat(l, options)
tries to find a function of the formn+
->(a+bn
)^n
r
(n
), wherer
(n
) is a rational function, that fitsl
.
- guessExpRat: Symbol -> (List F, List GuessOption) -> List EXPRR if F has RetractableTo Symbol and S has RetractableTo Symbol
guessExpRat q
returns a guesser that tries to find a function of the formn+
->(a+bq^n
)^n
r
(q^n
), wherer
(q^n
) is aq
-rational function, that fitsl
.