Ask Your Question

Revision history [back]

I have this 10x10 matrix, want to find the inverse matrix next. The elements are [q11,q12,q13,q14,q15,q21,q22,q23,q24,q25]. Each element can take the value 0 or 1. The error: TypeError: 'sage.symbolic.expression.Expression' object is not iterable.

the code:

var('q11,q12,q13,q14,q15,q21,q22,q23,q24,q25')

(q11,q12,q13,q14,q15,q21,q22,q23,q24,q25)

q11 == {0,1}, q12 == {0,1}, q13 == {0,1}, q14 == {0,1}, q15 == {0,1}, q21 == {0,1}, q22 == {0,1}, q23 == {0,1}, q24 == {0,1}, q25 == {0,1}

m=matrix(SR,10,10,[q11,q12,q13,q14,q15,q21,q22,q23,q24,q25]);

m

click to hide/show revision 2
retagged

I have this 10x10 matrix, want to find the inverse matrix next. The elements are [q11,q12,q13,q14,q15,q21,q22,q23,q24,q25]. Each element can take the value 0 or 1. The error: TypeError: 'sage.symbolic.expression.Expression' object is not iterable.

the code:

var('q11,q12,q13,q14,q15,q21,q22,q23,q24,q25')

(q11,q12,q13,q14,q15,q21,q22,q23,q24,q25)

q11 == {0,1}, q12 == {0,1}, q13 == {0,1}, q14 == {0,1}, q15 == {0,1}, q21 == {0,1}, q22 == {0,1}, q23 == {0,1}, q24 == {0,1}, q25 == {0,1}

m=matrix(SR,10,10,[q11,q12,q13,q14,q15,q21,q22,q23,q24,q25]);

m