NumericalCalculus`
NumericalCalculus`
Radius
Details and Options
- To use Radius, you first need to load the Numerical Calculus Package using Needs["NumericalCalculus`"].
- Valid settings are positive numbers. The default setting is 1.
Examples
Basic Examples (2)
Needs["NumericalCalculus`"]Use Radius to pick the annulus within which the Laurent series produced by NSeries will converge:
NSeries[(1/(1 + x)(3 + x)), {x, 0, 10}, Radius -> 2]//ChopNSeries[(1/(1 + x)(3 + x)), {x, 0, 10}, Radius -> 5]//ChopNeeds["NumericalCalculus`"]Changing Radius can improve the accuracy in the result returned by NSeries:
NSeries[(1/1 - x), {x, 0, 10}, Radius -> (7/8)]//ChopNSeries[(1/1 - x), {x, 0, 10}, Radius -> (1/5)]//Chop