0 Members and 1 Guest are viewing this topic.
that's eerie. i found 1316 matrices which are all prime and have the determinant -1316. working on the other part though. (between the primes 2-499 that is)
Has anyone made any progress on this?
Actually, every prime is under 100.
Quote from: graphmastur on January 20, 2011, 09:31:13 pmActually, every prime is under 100.that's good to know, now my program executes quickly... but to no avail, i cannot find the two matrices.
Quote from: nemo on January 20, 2011, 09:59:30 pmQuote from: graphmastur on January 20, 2011, 09:31:13 pmActually, every prime is under 100.that's good to know, now my program executes quickly... but to no avail, i cannot find the two matrices.See my post edit just above yours.
[2, 5] * [11, 29] = [87 , 143][7, 9] [13, 17] [194, 356]
Quote from: graphmastur on January 20, 2011, 10:03:59 pmQuote from: nemo on January 20, 2011, 09:59:30 pmQuote from: graphmastur on January 20, 2011, 09:31:13 pmActually, every prime is under 100.that's good to know, now my program executes quickly... but to no avail, i cannot find the two matrices.See my post edit just above yours.one step ahead of you, i anticipated that possibility and already ran my program for KM, MK, KK and MM. could you define 2x2 matrix multiplication for us? Code: [Select][2, 5] * [11, 29] = [87 , 143][7, 9] [13, 17] [194, 356]is this correct matrix multiplication?
K:[ 5 ][ 83 ][ 17 ][ 19 ]M:[ 13 ][ 11 ][ 19 ][ 17 ]Product M * K:[ 252 ][ 1288 ][ 384 ][ 1900 ]