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
rem - 多項式の余り
quo - 多項式の商
使い方
rem(a, b, x)
rem(a, b, x, 'q')
quo(a, b, x)
quo(a, b, x, 'r')
パラメータ
a, b - x の多項式
x - 名前
'q', 'r' - (オプション) 未評価の名前
説明
rem 関数は b で割ったときの a の余りを返します。quo 関数は b で割られた a の商を返します。剰余 r と商 q は以下を満足します: a = b*q + r ただし degree(r,x) < degree(b,x).
4番目の引数が rem や quo の呼び出し手順に含まれる場合、それぞれ剰余 q と商 r が割り当てられます。
例
rem(x^3+x+1, x^2+x+1, x, 'q');
q;
quo(x^3+x+1, x^2+x+1, x);
参照
irem, iquo, prem, sprem, divide, Rem, Quo
Download Help Document