Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Slode[polynomial_series_sol] - formal power series solutions with polynomial coefficients for a linear ODE
Calling Sequence
polynomial_series_sol(ode, var,opts)
polynomial_series_sol(LODEstr,opts)
Parameters
ode
-
linear ODE with polynomial coefficients
var
dependent variable, for example y(x)
opts
optional arguments of the form keyword=value
LODEstr
LODEstruct data structure
Description
The polynomial_series_sol command returns one formal power series solution or a set of formal power series solutions of the given linear ordinary differential equation with polynomial coefficients. The ODE must be either homogeneous or inhomogeneous with a right-hand side that is a polynomial, a rational function, or a "nice" power series (see LODEstruct) in the independent variable .
If ode is an expression, then it is equated to zero.
The routine returns an error message if the differential equation ode does not satisfy the following conditions.
ode must be linear in var
ode must have polynomial coefficients in
ode must be homogeneous or have a right-hand side that is rational or a "nice" power series in
The coefficients of ode must be either rational numbers or depend rationally on one or more parameters.
A homogeneous linear ordinary differential equation with coefficients that are polynomials in has a linear space of formal power series solutions where is one of , , , or , is the expansion point, and the sequence satisfies a homogeneous linear recurrence. In the case of an inhomogeneous equation with a right-hand side that is a "nice" power series, satisfies an inhomogeneous linear recurrence.
The routine selects such formal power series solutions where is a polynomial for all sufficiently large .
Options
x=a or 'point'=a
Specifies the expansion point in the case of a homogeneous equation or an inhomogeneous equation with rational right-hand side. The default is . It can be an algebraic number, depending rationally on some parameters, or . In the case of a "nice" series right-hand side the expansion point is given by the right-hand side and cannot be changed.
If this option is given, then the command returns one formal power series solution at a with polynomial coefficients if it exists; otherwise, it returns NULL. If a is not given, it returns a set of formal power series solutions with polynomial coefficients for all possible points that are determined by Slode[candidate_points](ode,var,'type'='polynomial').
'free'=C
Specifies a base name C to use for free variables C[0], C[1], etc. The default is the global name _C. Note that the number of free variables may be less than the order of the given equation if the expansion point is singular.
'index'=n
Specifies a name for the summation index in the power series. The default value is the global name _n.
Examples
Inhomogeneous equations are handled:
See Also
LODEstruct, Slode, Slode[candidate_points], Slode[hypergeom_series_sol], Slode[rational_series_sol]
Download Help Document