Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Speeding up matrix multiplication?

I'm currently trying write code to compute with overconvergent modular symbols. In iterating a Hecke operator, the key (i.e. most time consuming) operation that is performed tons of times is simply taking the product of a large dense matrix with a vector, both with integral entries. The matrix is say 100 by 100 and the entries are on the order of 10100.

Is there any faster way to do this computation than use SAGE's intrinsic matrix times a vector command?

click to hide/show revision 2
No.2 Revision

Speeding up matrix multiplication?

I'm currently trying write code to compute with overconvergent modular symbols. In iterating a Hecke operator, the key (i.e. most time consuming) operation that is performed tons of times is simply taking the product of a large dense matrix with a vector, both with integral entries. The matrix is say 100 by 100 and the entries are on the order of 10100.

Is there any faster way to do this computation than use using SAGE's intrinsic matrix times a vector command?

click to hide/show revision 3
No.3 Revision

Speeding up matrix multiplication?

I'm currently trying write code to compute with overconvergent modular symbols. In iterating a Hecke operator, the key (i.e. most time consuming) operation that is performed tons of times is simply taking the product of a large dense matrix say M with a vector, vector v, both with integral entries. The

More precisely, let p be a (relatively small) prime (think p=11) and N some integer (think 100). I have an N by N matrix is say 100 and am interested in quickly computing the product Mv modulo pN.

I am simply using the intrinsic SAGE command of multiplying a matrix by 100 a vector, and the entries are on the order of 10100. I was surprised to see that working with matrices over Z/pnZ was much (i.e. 10 times) slower than working with matrices over Z.

Is My question: is there any a faster way to do this computation than using SAGE's intrinsic matrix times a vector command?command over Z?