remove RootOf - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DEtools

  

remove_RootOf

  

rewrite a given expression removing RootOf.

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

remove_RootOf(expr, R)

Parameters

expr

-

any Maple algebraic expression or equation

R

-

(optional) identifies which specific RootOf is to be removed

Description

• 

The remove_RootOf command receives an algebraic expression containing a RootOf and removes it by rewriting the expression. In general, this command is used to directly and naturally convey the mathematical meaning of algebraic expressions that contain RootOfs.

  

Note that remove_RootOf is different from allvalues; remove_RootOf attempts to remove the RootOf -- typically resulting in implicit algebraic expressions -- while allvalues attempts to return all the values implied by the RootOf.

  

remove_RootOf is of particular value for understanding or further manipulating ODE solutions, and especially when allvalues fails in evaluating the RootOf.

• 

When the given expression has no RootOf inside it, remove_RootOf returns it as given; when the expression has many RootOfs, only one RootOf (the one with greatest length) is removed. It is also possible to direct remove_RootOf to remove a specific RootOf, say R, by passing R to remove_RootOf as its second argument.

• 

When the removal of a RootOf itself requires the introduction of another RootOf, the removal is not performed and the expression received is returned as given. Also remove_RootOf only removes RootOfs of one argument (so RootOfs with indices or labels will remain in the output).

• 

This function is part of the DEtools package, and so it can be used in the form remove_RootOf(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[remove_RootOf](..).

Examples

withDEtools:

diffyx,x=12ax22Fyx+18ax4x

ⅆⅆxyx=ax22Fyx+ax48x2

(1)

dsolve

yx=ax48+RootOfx2+2` `_Z1F_aⅆ_a+2c__1

(2)

remove_RootOf

x2+2` `yx+ax481F_aⅆ_a+2c__1=0

(3)

Here is an example that shows the difference between remove_RootOf and allvalues.

expryx+RootOf_Z+exp_Z=C

expryx+RootOf_Z+ⅇ_Z=C

(4)

is rewritten by remove_RootOf as:

DEtoolsremove_RootOfexpr

yx+C+ⅇyx+C=0

(5)

allvaluesexpr

yxLambertW_Z2~,1=C

(6)

An example with nested RootOfs

odediffyx,x=xyx+1x2yx2+x2yx+2xyx+1+x+x2x5

odeⅆⅆxyx=xyx+1x2yx2+x2yx+2xyx+1+x+x2x5

(7)

dsolveode

yx=17RootOf162` `_Z1289_a3+54_a54ⅆ_ax+3c__1x+2x3x99x

(8)

If we now evaluate the integral, the resulting solution is

solvalue

solyx=17RootOf54_R=RootOf289_Z3+54_Z54ln_Z_R289_R2+18x+3c__1x+2x3x99x

(9)

One RootOf can be removed in the expression above (and the solution can be further evaluated using allvalues).

remove_RootOfsol

54_R=RootOf289_Z3+54_Z54ln33xyx+x+317x_R289_R2+18x+3c__1x+2=0

(10)

Here, the sum over the Roots of the third degree polynomial is equal to zero.

odetest,ode

0

(11)

A second order ODE example in which three solutions with RootOf are returned by dsolve

diffyx,`$`x,2hyxsqrtxx32=0

ⅆ2ⅆx2yxhyxxx32=0

(12)

dsolve

yx=RootOf_Zx32+4h_Zxx2,yx=RootOflnx+2` `_Z1c__1+8h_gⅆ_g+_g2ⅆ_g+2c__2x,yx=RootOflnx2` `_Z1c__1+8h_gⅆ_g+_g2ⅆ_g+2c__2x

(13)

mapremove_RootOf,

yxx32+4hyxxx2=0,lnx+2` `yxx1c__1+8h_gⅆ_g+_g2ⅆ_g+2c__2=0,lnx2` `yxx1c__1+8h_gⅆ_g+_g2ⅆ_g+2c__2=0

(14)

Although remove_RootOf is mainly useful for manipulating nonlinear ODE solutions, it can also be of help with solutions to linear ODEs, for instance when allvalues fails in evaluating the RootOfs.

See Also

allvalues

DEtools

dsolve

PDEtools

RootOf

sum