LREtools
divconq
find solutions of "divide and conquer" recurrence equations
Calling Sequence
Parameters
Description
Examples
divconq(problem)
problem
-
problem statement or RESol
Solves divide and conquer recurrences, meaning those of the form A⁢f⁡Rn⁢k+B⁢f⁡Rm⁢k=0, where R is either numeric or a name, m and n are integers, and where A and B are independent of k.
See the help page for LREtools[REcreate] for the definition of the format of a problem.
with⁡LREtools:
prob≔REcreate⁡y⁡n⁢k=2⁢y⁡k,y⁡k,∅
prob≔RESol⁡y⁡n⁢k−2⁢y⁡k=0,y⁡k,∅,INFO
divconq⁡prob
y⁡1⁢kln⁡2ln⁡n~
divconq⁡f⁡r3⁢k=2⁢f⁡r2⁢k,f⁡k,∅
f⁡1⁢kln⁡2ln⁡r
See Also
LREtools[REcreate]
RESol
rsolve
Download Help Document