Hi: Possibly this is a problem with coercion but I don't know. Does anyone know why the following takes so long?
sage: p = 5 sage: F = GF(p) sage: E.<a> = GF(p^2,"a") sage: G = GL(2,p) sage: M = MatrixSpace(E,2,2) sage: V = VectorSpace(E,2) sage: g = G.random_element() sage: v = V([1,a]); v; g; M(g)*v (1, a) [4 0] [2 1] (4, a + 2) sage: G.order() 480 sage: time orbit_v = [M(g)*v for g in G] It has not finished after several minutes. It seems like it should be instant. - David Joyner --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---