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
DifferentialAlgebra[BelongsTo] - 微分イデアルにおける帰属関係の決定
使い方
BelongsTo(p, ideal, opts)
BelongsTo(L, ideal, opts)
パラメータ
p
-
微分多項式
L
微分多項式のリストまたは集合
ideal
微分イデアル
opts (optional)
オプションの並び
モデルの説明
関数の呼び出し BelongsTo(p,ideal) は、微分多項式 p が ideal で示される微分イデアルに帰属する場合 true を返します。それ以外の場合には false を返します。
ideal が regular differential chain のリストの場合、この関数は、p がリストのすべての要素に帰属する場合に限り true を返します。最初の引数 L が微分多項式のリストまたは集合の場合、呼び出し BelongsTo(L, ideal) は true / false のリストまたは集合を返します。
このコマンドは DifferentialAlgebra パッケージの一部です。with(DifferentialAlgebra) コマンドの実行後に BelongsTo(...) を使用して呼び出すことができます。また、DifferentialAlgebra[BelongsTo](...) を使用して直接呼び出すことも可能です。
アプリケーションと例題
with(DifferentialAlgebra):
R := DifferentialRing(derivations = [t], blocks = [u]);
各微分多項式はすべて単位の微分イデアルに帰属します。
BelongsTo(u[t], []);
ideal := RosenfeldGroebner([u[t]^2-4*u], R);
2 つの 1 番目の微分多項式は ideal には帰属しませんが、その積は帰属します。
BelongsTo([u[t], u[t,t]-2, u[t]*(u[t,t] - 2)], ideal);
関連項目
DifferentialAlgebra, NormalForm, ReducedForm, DifferentialPrem
Download Help Document