Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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