DEtools
translate
translate a DE or operator list centered on 0 to one centered on a point
untranslate
translate a DE or operator list centered on a point to one centered on 0
Calling Sequence
Parameters
Description
Examples
translate(des, ivar, pt, dvar)
untranslate(des, ivar, pt, dvar)
des
-
differential equation, or differential operator list
ivar
independent variable
pt
point of translation
dvar
dependent variable, in the case of a DE
The routines translate and untranslate are used for the translation of DEs and operators. In the case of a linear differential operator, the input des is given by a list (here A), which defines the operator by
L | L⁡y=A1⁢y⁡x+A2⁢y⁢' ⁢x+...+An+1⁢ⅆnⅆxny⁡x
The routine translate takes a DE or linear operator in the independent variable ivar, assumed to be centered about 0, and translates it to a DE or operator centered about pt. Essentially, translate acts like DEtools[Dchangevar] for the restricted cases t=1x (pt = infinity) and t=x+pt (otherwise).
Likewise, the routine untranslate takes a DE, operator, or DE solution that is centered on the point pt and translates it to the equivalent centered on 0.
dvar must be provided in the instance that des is a differential equation or DE solution. It is not required if des is an operator list.
Results may be "normalized" by way of DEtools[DEnormal].
Linear differential operators may be derived from DEs by way of DEtools[convertAlg].
These functions are part of the DEtools package, and so they can be used in the form translate(..) and untranslate(..) only after executing the command with(DEtools). However, they can always be accessed through the long form of the command DEtools[translate](..) or DEtools[untranslate](..).
with⁡DEtools:
Linear differential operator
L_A≔1x⁢x5+2⁢x+2,x2+1,x5+2⁢x+2:
a1≔translate⁡L_A,x,∞
a1≔x62⁢x5+2⁢x4+1,4⁢x5+3⁢x4−x2+2x2,2⁢x5+2⁢x4+1x
a2≔untranslate⁡a1,x,∞
a2≔1x⁢x5+2⁢x+2,x2+1,x5+2⁢x+2
Differential equation
DE≔21⁢−2⁢x3+3⁢x2−5⁢x+2⁢y⁡x+42⁢x2−x+1⁢x⁢x−1⁢D⁡y⁡x+50⁢x3⁢x−13⁢D2⁡y⁡x=x⁢sin⁡x:
de1≔translate⁡DE,x,a,y⁡x
de1≔21⁢−2⁢x+a3+3⁢x+a2−5⁢x−5⁢a+2⁢y⁡x+42⁢x+a2−x−a+1⁢x+a⁢x+a−1⁢D⁡y⁡x+50⁢x+a3⁢x+a−13⁢D2⁡y⁡x=x+a⁢sin⁡x+a
de2≔untranslate⁡de1,x,a,y⁡x:
de2≔DEnormal⁡de2,x,y⁡x
de2≔50⁢x6−150⁢x5+150⁢x4−50⁢x3⁢ⅆ2ⅆx2y⁡x+42⁢x4−84⁢x3+84⁢x2−42⁢x⁢ⅆⅆxy⁡x−42⁢y⁡x⁢x3+63⁢y⁡x⁢x2−105⁢y⁡x⁢x+42⁢y⁡x=x⁢sin⁡x
See Also
DEtools[convertAlg]
DEtools[DEnormal]
Download Help Document