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
FunctionAdvisor/specialize - specialize a given mathematical function into other mathematical functions
Calling Sequence
FunctionAdvisor(specialize, math_function_1)
FunctionAdvisor(specialize, math_function_1(a, b, ..., z))
FunctionAdvisor(specialize, math_function_1, math_function_2)
FunctionAdvisor(specialize, math_function_1(a, b, ..., z), math_function_2)
Parameters
specialize
-
literal name; 'specialize'
math_function_1
(Maple) name of mathematical function to be specialized
math_function_1(a, b, ..., z)
(Maple) mathematical function to be specialized, evaluated at (a, b, ..., z)
math_function_2
(optional) name of mathematical function used to express output
Description
The FunctionAdvisor(specialize, math_function_1) command attempts to specialize this function in terms of every other mathematical function. When the function is given with parameters, as in math_function_1(a, b, ..., z), only specializations valid for those values of the parameters or particular cases of them are returned.
The FunctionAdvisor(specialize, math_function_1, math_function_2) command attempts to specialize the first function, math_function_1 in terms of the other one using Maple algorithms. When the first function is given with parameters, as in math_function_1(a, b, ..., z), only specializations valid for those values of the parameters or particular cases of them are returned. For more information, see convert/to_special_function.
Note the specialization operation typically requires additional constraints for the function parameters involved. These constraints are returned as a boolean function. If no constraints are required, this is explicitly indicated.
Examples
The specialization can be requested for particular values of some or all of the function parameters.
Note the difference between using specialize and relate (see FunctionAdvisor/relate). The former computes the required restrictions on the function parameters while the latter only returns a result when it does not require additional constraints on the parameters involved.
The following is a specialization which cannot be obtained using the relate keyword.
Knowing the possible specialization of a function is useful when trying to express functions in terms of other functions. Typically, the conversion is not possible unless restrictions on the function parameters are imposed. To perform the transformation (conversion), use the output of the FunctionAdvisor command with convert and assuming. For example, to transform as in the previous example, all KummerU functions entering an expression try the following.
The following example specializes sin into the other mathematical functions.
While the previous specializations do not require restrictions on the function parameters, if you specialize more general functions into simpler ones, restrictions are necessary. For example, for the LegendreQ function you have the following.
See Also
assuming, convert/to_special_function, FunctionAdvisor, FunctionAdvisor/relate, FunctionAdvisor/topics, sin
Download Help Document