Give a description of the topic, and what you hope the reader will get from this. For example, this page will cover addition of the natural numbers. Talk about how this relates to something in cryptography, either through a protocol, or an attack. This can be a single sentence, or verbose.
Laws of Addition
For all integers, the addition operation is
Associative: a+(b+c)=(a+b)+c
Commutative: a+b=b+a
Distributive: a(b+c)=ab+ac
Contains an identity element: a+0=0+a=a
Has an inverse for every element: a+(−a)=(−a)+a=0
Closed: ∀a,b∈Z,a+b∈Z
Interesting Identity
(1+2+3+…+n)2=13+23+33+…+n3
Sage Example
sage:1+ (2+3) == (1+2) +3Truesage:1+2==2+1Truesage:5*(7+11) ==5*7+5*11Truesage:sum(i for i inrange(1000))^2==sum(i^3for i inrange(1000))True