Difference between revisions of "User:Temperal/The Problem Solver's Resource6"
(page) |
(→<span style="font-size:20px; color: blue;">Modulos</span>: Creation) |
||
Line 10: | Line 10: | ||
[[User:Temperal/The Problem Solver's Resource5|Back to page 5]] | [[User:Temperal/The Problem Solver's Resource7|Continue to page 7]] | [[User:Temperal/The Problem Solver's Resource5|Back to page 5]] | [[User:Temperal/The Problem Solver's Resource7|Continue to page 7]] | ||
|}<br /><br /> | |}<br /><br /> | ||
+ | ==Definition== | ||
+ | *<math>n\equiv a\pmod{b}</math> if <math>n</math> is the remainder when <math>a</math> is divided by <math>b</math> to give an integral amount. | ||
+ | ==Special Notation== | ||
+ | ==Properties== | ||
+ | For any number there will be only one congruent number modulo <math>m</math> between <math>0</math> and <math>m-1</math>. | ||
+ | |||
+ | If <math>a\equiv b \pmod{m}</math> and <math>c \equiv d \pmod{m}</math>, then <math>(a+c) \equiv (b+d) \pmod {m}</math>. | ||
+ | |||
+ | |||
+ | <math>a \pmod{m} + b \pmod{m} \equiv (a + b) \pmod{m}</math> | ||
+ | <math>a \pmod{m} - b \pmod{m} \equiv (a - b) \pmod{m} </math> | ||
+ | <math>a \pmod{m} \cdot b \pmod{m} \equiv (a \cdot b) \pmod{m} </math> | ||
+ | |||
+ | <!-- to be continued --> |
Revision as of 18:53, 3 October 2007
Modulos |
Definition
- if is the remainder when is divided by to give an integral amount.
Special Notation
Properties
For any number there will be only one congruent number modulo between and .
If and , then .