You (hongy) might be interested in
Matrix Groups (Universitext) 2nd Edition
by M. L. Curtis (Author)
Which is a pretty good introduction; although the price is a
little high.
--
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/143f4daf-9e77-4b1b-92f4-ab8cde91a1bbn%40googlegroups.com.
Is this the sort of thing you're looking for?def matrix_rep(z):
"""
INPUT: complex number z = a + bi
OUTPUT: the matrix
[a -b]
[b a]
"""
a = z.real_part()
b = z.imag_part()
return matrix(RR, [[a, -b], [b, a]])
You (hongy) might be interested in
Matrix Groups (Universitext) 2nd Edition
by M. L. Curtis (Author)
Which is a pretty good introduction; although the price is a little high.