Difference between revisions of "CoCoA:HowTo:Use Modular Numbers"
From ApCoCoAWiki
(I'm going to save every step now: I don't want to lose my edit again!) |
m |
||
Line 1: | Line 1: | ||
+ | == Modular Numbers == | ||
+ | === Question === | ||
+ | Use R::=Z/(5)[x]; | ||
+ | 5x+2y; | ||
+ | 2y | ||
+ | --- | ||
+ | 5=0; | ||
+ | FALSE :-(( | ||
+ | --- | ||
+ | |||
+ | Use R::=Z/(5); | ||
+ | === Answer === | ||
Type(5); | Type(5); | ||
INT | INT |
Revision as of 14:40, 29 November 2005
Modular Numbers
Question
Use R::=Z/(5)[x]; 5x+2y; 2y --- 5=0; FALSE :-(( ---
Use R::=Z/(5);
Answer
Type(5);
INT
5 e' un intero, e gli interi non dipendono dall'anello corrente (puoi immaginarti cosa succederebbe a un ciclo For?)
per vedere 5 come modulare devi fare:
5 % 5;
0 % 5
(analogo al C) oppure immergerlo nell'anello di polinomi
Use R::=Z/(5)[x]; Poly(5);
0