Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DEtools[ratsols] - find rational function solutions of a linear ODE
Calling Sequence
ratsols(lode, v)
ratsols(coeff_list, g, x)
Parameters
lode
-
linear differential equation
v
dependent variable of the lode
coeff_list
list of coefficients of a linear ode
g
right-hand side of the equation
x
independent variable of the lode
Description
The ratsols command returns a basis of the rational function solutions of a linear differential equation having rational function coefficients.
The first calling sequence has a linear differential equation in diff or D form as the first argument, and the variable in the differential equation as the second argument. A system of differential equations can be given as a list of the equations as the first argument and a list of the variables as the second argument.
A second calling sequence accepts the following.
- For the first argument, the list of coefficients of a linear ode
- For the second, the right-hand side of such an equation
- For the third argument, the independent variable of the lode
A system of differential equations can be given as a list of lists of list of coefficients of a linear odes as the first argument, a list of the right-hand sides of such equations as the second argument and the independent variable as the third argument. Each equation is represented as the sum of lodes in one variable. Each is given as a list of coefficients, so one equation is given as a list of lists of coefficients and a system as a list of lists of lists. This input sequence is convenient for programming with the ratsols routine.
The list of coefficients is given in order from low differential order to high differential order and does not include the nonhomogeneous term.
In the case of a homogeneous equation, a basis is returned (as a list in the scalar case and as a list of lists in the system case). In the nonhomogeneous case, the return value is a two-element list, with the first element a basis for the homogeneous case and the second element a particular rational solution (if it exists).
In the system case, the function invokes LinearFunctionalSystems[RationalSolution] to find solutions.
Examples
Homogeneous case
Nonhomogeneous case
System case
See Also
dcoeffs, DEtools, dsolve, LinearFunctionalSystems[RationalSolution]
Download Help Document