As of May 4 2007 the scripts will autodetect your timezone settings. Nothing here has to be changed, but there are a few things

Please follow this blog

Search this blog

Sunday, May 25, 2008

Cayley table of the group ( C3 X C3 ) : C2



I constructed the Cayley table of the non-abelian group ( C3 X C3 ) : C2 which is the semi-direct product of the abelian groups C3 X C3 and C2.

Sunday, May 11, 2008

Theorem about normal subgroups

Normal subgroups are very important objects in Group Theory. One of the 'must-never-forget'-theorems is the following.

Let N be a normal subgroup of a group G and H be any subgroup of G. Then the intersection of H and N is a normal subgroup of H.

For the proof we use the following theorem.
A subgroup H is a normal subgroup in G if gH=Hg for all elements g in G.

\\<br />\text{If x } \in (N\cap H) \text{ and } h \in H \text{ then } \\<br />hxh^{-1} \in H \text{ since } x \in H \text{ and } H \leq G, \text{ and } \\ <br />hxh^{-1} \in N \text{ since } x \in N \text{ and } N \lhd G, \\<br />\text{this shows that }h(N\cap H)h^{-1} \in (N\cap H) \text{ for all }h \in H.\\

In easy to remember math: "The intersection of a normal subgroup with another subgroup is normal in that subgroup." ( H&N is N(ormal)in H )

If this seems difficult: this theorem becomes trivial real fast.

Sunday, May 4, 2008

Morphisms

Let G,H be groups and x,y elements of G.

A homomorphism is a mapping
f: G-> H
such that
f(1) = 1, and
f(xy) = f(x)f(y).




















-morphismwhen f is
Mono-injective
Epi-surjective
Iso-bijective
Endo-any and when H=G
Auto-bijective and when H=G

Saturday, May 3, 2008

Math Video

Blogger has been notified, according to the terms of the Digital
Millennium Copyright Act (DMCA), that content in your blog mathematics-diary.blogspot.com allegedly infringes upon the copyrights of others.


( This post contained a link to a torrent of the video Joy of Mathematics. )

Thursday, May 1, 2008

Math Speak

There are circles where this is common speak, really:

"How many consecutive digits of pi (3.1415 . . . ) can you display with a deck of cards?"

But it is the sort of question Charlie Eppes might have asked when he was eight years old or so.

Groups of Finite Order By Robert D. Carmichael

I have found a beautiful book on Group Theory which was first published in 1937. I am not at all surprised that it was reprinted in 2000.


Link to Google Books

It is over 440 pages and contains many interesting exercises. I am going to try to solve the following question entirely with the Mathematica Abstract Algebra add-on package.



( But more on this interesting question later. )

Wednesday, April 30, 2008

Displaying Cayley Tables in Mathematica



( The structure of the Ring Z[5]: addition and multiplication mod 5. )

0.x = 0 is not an axiom

The statement 0.x = 0 is not an axiom and can thus be proved.

The axioms for the integers are, for addition
(A1) a + (b + c) = (a + b) + c
(A2) a + 0 = a
(A3) a + (-a) = 0
(A4) a + b = b + a
for multiplication
(M1) a(bc) = (ab)c
(M2) 1a = a
(M3) ab = ba
and for addition and multiplication ('distributive laws')
(D1) a(b+c)=ab+ac
(D2) (a+b)c=ac+ab.

So how do mathematicians prove that 0.a=0?
They do something like this.
a = a
a = (1+0).a (by A2 and M2)
a = 1.a + 0.a (by D2)
a = a + 0.a (by M2)
0.a = 0 by (A2).

Tuesday, April 29, 2008

The field of fractions of an integral domain

V=\mathbb{Z} \times \mathbb{Z} \backslash \left\{0\right\} \\<br />R: (a,b)\equiv (c,d) \Leftrightarrow  ad=bc\\<br />\\<br />(a,b) + (c,d) = (ad + bc, bd)\\<br />(a,b) \cdot (c,d) = (ac, bd)

Create a set V of ordered pairs from {..., -2, -1, 0, 1, 2, ...} (integers) and {..., -2, -1, 1, 2, ...} (integers excluding 0). Elements of V are for example (3,1), (5,1) and (4,2).

Create an equivalence relation on elements of V. Two elements (a,b) and (c,d) are 'equivalent', 'belong to the same equivalence class' if ad=bc. For example (4,2) and (8,4) are equivalent while (4,1) and (8,4) are not.

Define addition '+' as (a,b) + (c,d) = (ad + bc, bd).

Define multiplication '.' as (a,b) . (c,d) = (ac, bd).

This is how the field of Rationals is formally constructed from the Integers.

Monday, April 28, 2008

Thursday, April 24, 2008

The differentiation matrix for arithmetic polynomials

Calculating a difference function is a straightforward process:

\\<br />f(n)=n^3-n^2+n+2\\<br />\\<br />\begin{matrix}<br />n & f(n) & \Delta f(n) \\ <br />0 & 2 & 1\\ <br />1 & 3 & 5\\ <br />2 & 8 & 15\\ <br />3 & 23 & 31\\ <br />4 & 54 & 33\\ <br />5 & 107 & \\ <br /> &  & <br />\end{matrix}<br />\\<br />\Delta f(n)=\frac{f(n+1)-f(n)}{1}=\\<br />\\<br />((n+1)^3-(n+1)^2+(n+1)+2)-(n^3-n^2+n+2)=\\<br />\\<br />3n^2+n+1\\



But it is simpler to use the differentiation matrix for arithmetic polynomials:

f(n)=2+n-n^2+n^3 \rightarrow \begin{pmatrix}<br />2 \\ <br />1 \\ <br />-1\\ <br />1\\ <br />0<br />\end{pmatrix}\\<br />\\<br />\\<br />\begin{pmatrix}<br />0 & 1 & 1 & 1 & 1\\ <br />0 & 0 & 2 & 3 & 4\\ <br />0 & 0 & 0 & 3 & 6\\ <br />0 & 0 & 0 & 0 & 4\\ <br />0 & 0 & 0 & 0 & 0<br />\end{pmatrix}<br />\begin{pmatrix}<br />2 \\ <br />1 \\ <br />-1\\ <br />1\\ <br />0<br />\end{pmatrix} =<br />\begin{pmatrix}<br />1 \\ <br />1 \\ <br />3\\ <br />0\\ <br />0<br />\end{pmatrix}\\<br />\\<br />\\<br />\begin{pmatrix}<br />1 \\ <br />1 \\ <br />3\\ <br />0\\ <br />0<br />\end{pmatrix}\rightarrow f(n)=1+n+3n^2

The 5x5 matrix above is suitable for polynomials up to degree 4. It is possible to create a (n+1)x(n+1) matrix capable of handling polynomials up to degree n.

Proof:
Exercise (hint: use falling powers).

Question: Is there a compact way ( recursive, perhaps ) of describing the matrix capable of handling polynomials up to degree n?

Popular Posts

Welcome to The Bridge

Mathematics: is it the fabric of MEST?
This is my voyage
My continuous mission
To uncover hidden structures
To create new theorems and proofs
To boldly go where no man has gone before




(Raumpatrouille – Die phantastischen Abenteuer des Raumschiffes Orion, colloquially aka Raumpatrouille Orion was the first German science fiction television series. Its seven episodes were broadcast by ARD beginning September 17, 1966. The series has since acquired cult status in Germany. Broadcast six years before Star Trek first aired in West Germany (in 1972), it became a huge success.)